diff --git a/intermax/2208.06_type3/ant/bin/ant b/intermax/2208.06_type3/ant/bin/ant new file mode 100755 index 0000000..cf336db --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/ant @@ -0,0 +1,299 @@ +#! /bin/sh + +# Copyright 2001-2005 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Extract launch and ant arguments, (see details below). +ant_exec_args= +no_config=false +use_jikes_default=false +ant_exec_debug=false +show_help=false +for arg in "$@" ; do + if [ "$arg" = "--noconfig" ] ; then + no_config=true + elif [ "$arg" = "--usejikes" ] ; then + use_jikes_default=true + elif [ "$arg" = "--execdebug" ] ; then + ant_exec_debug=true + elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then + show_help=true + ant_exec_args="$ant_exec_args -h" + else + if [ my"$arg" = my"-h" -o my"$arg" = my"-help" ] ; then + show_help=true + fi + ant_exec_args="$ant_exec_args \"$arg\"" + fi +done + +# Source/default ant configuration +if $no_config ; then + rpm_mode=false + usejikes=$use_jikes_default +else + # load system-wide ant configuration + if [ -f "/etc/ant.conf" ] ; then + . /etc/ant.conf + fi + + # load user ant configuration + if [ -f "$HOME/.ant/ant.conf" ] ; then + . $HOME/.ant/ant.conf + fi + if [ -f "$HOME/.antrc" ] ; then + . "$HOME/.antrc" + fi + + # provide default configuration values + if [ -z "$rpm_mode" ] ; then + rpm_mode=false + fi + if [ -z "$usejikes" ] ; then + usejikes=$use_jikes_default + fi +fi + +# Setup Java environment in rpm mode +if $rpm_mode ; then + if [ -f /usr/share/java-utils/java-functions ] ; then + . /usr/share/java-utils/java-functions + set_jvm + set_javacmd + fi +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +case "`uname`" in + CYGWIN*) cygwin=true ;; + Darwin*) darwin=true + if [ -z "$JAVA_HOME" ] ; then + JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home + fi + ;; +esac + +if [ -z "$ANT_HOME" -o ! -d "$ANT_HOME" ] ; then + ## resolve links - $0 may be a link to ant's home + PRG="$0" + progname=`basename "$0"` + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi + done + + ANT_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + ANT_HOME=`cd "$ANT_HOME" && pwd` +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$ANT_HOME" ] && + ANT_HOME=`cygpath --unix "$ANT_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# set ANT_LIB location +ANT_LIB="${ANT_HOME}/lib" + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD=`which java 2> /dev/null ` + if [ -z "$JAVACMD" ] ; then + JAVACMD=java + fi + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." + echo " We cannot execute $JAVACMD" + exit 1 +fi + +# Build local classpath using just the launcher in non-rpm mode or +# use the Jpackage helper in rpm mode with basic and default jars +# specified in the ant.conf configuration. Because the launcher is +# used, libraries linked in ANT_HOME will also be include, but this +# is discouraged as it is not java-version safe. A user should +# request optional jars and their dependencies via the OPT_JAR_LIST +# variable +if $rpm_mode && [ -f /usr/bin/build-classpath ] ; then + LOCALCLASSPATH="$(/usr/bin/build-classpath ant ant-launcher jaxp_parser_impl xml-commons-apis)" + # If the user requested to try to add some other jars to the classpath + if [ -n "$OPT_JAR_LIST" ] ; then + _OPTCLASSPATH="$(/usr/bin/build-classpath $OPT_JAR_LIST 2> /dev/null)" + if [ -n "$_OPTCLASSPATH" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$_OPTCLASSPATH" + fi + fi + + # Explicitly add javac path to classpath, assume JAVA_HOME set + # properly in rpm mode + if [ -f "$JAVA_HOME/lib/tools.jar" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/tools.jar" + fi + if [ -f "$JAVA_HOME/lib/classes.zip" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/classes.zip" + fi + + # if CLASSPATH_OVERRIDE env var is set, LOCALCLASSPATH will be + # user CLASSPATH first and ant-found jars after. + # In that case, the user CLASSPATH will override ant-found jars + # + # if CLASSPATH_OVERRIDE is not set, we'll have the normal behaviour + # with ant-found jars first and user CLASSPATH after + if [ -n "$CLASSPATH" ] ; then + # merge local and specified classpath + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH="$CLASSPATH" + elif [ -n "$CLASSPATH_OVERRIDE" ] ; then + LOCALCLASSPATH="$CLASSPATH:$LOCALCLASSPATH" + else + LOCALCLASSPATH="$LOCALCLASSPATH:$CLASSPATH" + fi + + # remove class path from launcher -cp option + CLASSPATH="" + fi +else + # not using rpm_mode; use launcher to determine classpaths + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar + else + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar:$LOCALCLASSPATH + fi +fi + +if [ -n "$JAVA_HOME" ] ; then + # OSX hack to make Ant work with jikes + if $darwin ; then + OSXHACK="${JAVA_HOME}/../Classes" + if [ -d "${OSXHACK}" ] ; then + for i in "${OSXHACK}"/*.jar + do + JIKESPATH="$JIKESPATH:$i" + done + fi + fi +fi + +# Allow Jikes support (off by default) +if $usejikes; then + ANT_OPTS="$ANT_OPTS -Dbuild.compiler=jikes" +fi + +# For Cygwin, switch paths to appropriate format before running java +# For PATHs convert to unix format first, then to windows format to ensure +# both formats are supported. Probably this will fail on directories with ; +# in the name in the path. Let's assume that paths containing ; are more +# rare than windows style paths on cygwin. +if $cygwin; then + if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then + format=mixed + else + format=windows + fi + ANT_HOME=`cygpath --$format "$ANT_HOME"` + ANT_LIB=`cygpath --$format "$ANT_LIB"` + JAVA_HOME=`cygpath --$format "$JAVA_HOME"` + LCP_TEMP=`cygpath --path --unix "$LOCALCLASSPATH"` + LOCALCLASSPATH=`cygpath --path --$format "$LCP_TEMP"` + if [ -n "$CLASSPATH" ] ; then + CP_TEMP=`cygpath --path --unix "$CLASSPATH"` + CLASSPATH=`cygpath --path --$format "$CP_TEMP"` + fi + CYGHOME=`cygpath --$format "$HOME"` +fi + +# Show script help if requested +if $show_help ; then + echo $0 '[script options] [options] [target [target2 [target3] ..]]' + echo 'Script Options:' + echo ' --help, --h print this message and ant help' + echo ' --noconfig suppress sourcing of /etc/ant.conf,' + echo ' $HOME/.ant/ant.conf, and $HOME/.antrc' + echo ' configuration files' + echo ' --usejikes enable use of jikes by default, unless' + echo ' set explicitly in configuration files' + echo ' --execdebug print ant exec line generated by this' + echo ' launch script' + echo ' ' +fi +# add a second backslash to variables terminated by a backslash under cygwin +if $cygwin; then + case "$ANT_HOME" in + *\\ ) + ANT_HOME="$ANT_HOME\\" + ;; + esac + case "$CYGHOME" in + *\\ ) + CYGHOME="$CYGHOME\\" + ;; + esac + case "$JIKESPATH" in + *\\ ) + JIKESPATH="$JIKESPATH\\" + ;; + esac + case "$LOCALCLASSPATH" in + *\\ ) + LOCALCLASSPATH="$LOCALCLASSPATH\\" + ;; + esac + case "$CLASSPATH" in + *\\ ) + CLASSPATH="$CLASSPATH\\" + ;; + esac +fi +# Execute ant using eval/exec to preserve spaces in paths, +# java options, and ant args +ant_sys_opts= +if [ -n "$CYGHOME" ]; then + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\" -Dcygwin.user.home=\"$CYGHOME\"" + else + ant_sys_opts="-Dcygwin.user.home=\"$CYGHOME\"" + fi +else + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\"" + fi +fi +ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\" -Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS -cp \"$CLASSPATH\" $ant_exec_args" +if $ant_exec_debug ; then + echo $ant_exec_command +fi +eval $ant_exec_command diff --git a/intermax/2208.06_type3/ant/bin/ant.bat b/intermax/2208.06_type3/ant/bin/ant.bat new file mode 100755 index 0000000..55df281 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/ant.bat @@ -0,0 +1,126 @@ +@echo off + +REM Copyright 2001,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. + +if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +rem %~dp0 is expanded pathname of the current script under NT +set DEFAULT_ANT_HOME=%~dp0.. + +if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME% +set DEFAULT_ANT_HOME= + +set _USE_CLASSPATH=yes + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of arguments (up to the command line limit, anyway). +set ANT_CMD_LINE_ARGS=%1 +if ""%1""=="""" goto doneStart +shift +:setupArgs +if ""%1""=="""" goto doneStart +if ""%1""==""-noclasspath"" goto clearclasspath +set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1 +shift +goto setupArgs + +rem here is there is a -noclasspath in the options +:clearclasspath +set _USE_CLASSPATH=no +shift +goto setupArgs + +rem This label provides a place for the argument list loop to break out +rem and for NT handling to skip to. + +:doneStart +rem find ANT_HOME if it does not exist due to either an invalid value passed +rem by the user or the %0 problem on Windows 9x +if exist "%ANT_HOME%\lib\ant.jar" goto checkJava + +rem check for ant in Program Files +if not exist "%ProgramFiles%\ant" goto checkSystemDrive +set ANT_HOME=%ProgramFiles%\ant +goto checkJava + +:checkSystemDrive +rem check for ant in root directory of system drive +if not exist %SystemDrive%\ant\lib\ant.jar goto checkCDrive +set ANT_HOME=%SystemDrive%\ant +goto checkJava + +:checkCDrive +rem check for ant in C:\ant for Win9X users +if not exist C:\ant\lib\ant.jar goto noAntHome +set ANT_HOME=C:\ant +goto checkJava + +:noAntHome +echo ANT_HOME is set incorrectly or ant could not be located. Please set ANT_HOME. +goto end + +:checkJava +set _JAVACMD=%JAVACMD% + +if "%JAVA_HOME%" == "" goto noJavaHome +if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe +goto checkJikes + +:noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=java.exe + +:checkJikes +if not "%JIKESPATH%"=="" goto runAntWithJikes + +:runAnt +if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikes +if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath + +:runAntWithJikesNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikesAndClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:end +set _JAVACMD= +set ANT_CMD_LINE_ARGS= + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + +:mainEnd +if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" + diff --git a/intermax/2208.06_type3/ant/bin/ant.cmd b/intermax/2208.06_type3/ant/bin/ant.cmd new file mode 100755 index 0000000..94b5a45 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/ant.cmd @@ -0,0 +1,92 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run ant +*/ + +'@echo off' +parse arg mode envarg '::' antarg + +if mode\='.' & mode\='..' & mode\='/' then do + envarg = mode envarg + mode = '' +end + +if antarg = '' then do + antarg = envarg + envarg = '' +end + +x = setlocal() + +env="OS2ENVIRONMENT" +antenv = _getenv_('antenv') +if _testenv_() = 0 then interpret 'call "' || antenv || '"' '"' || envarg || '"' + +if mode = '' then mode = _getenv_('ANT_MODE' '..') +if mode \= '/' then do + runrc = _getenv_('runrc') + antrc = _getenv_('antrc' 'antrc.cmd') + if mode = '..' then mode = '-r' + else mode = '' + interpret 'call "' || runrc || '"' antrc '"' || mode || '"' +end + +if _testenv_() = 0 then do + say 'Ant environment is not set properly' + x = endlocal() + exit 16 +end + +settings = '-Dant.home=' || ANT_HOME '-Djava.home=' || JAVA_HOME + +java = _getenv_('javacmd' 'java') +opts = value('ANT_OPTS',,env) +args = value('ANT_ARGS',,env) +lcp = value('LOCALCLASSPATH',,env) +cp = value('CLASSPATH',,env) +if value('ANT_USE_CP',,env) \= '' then do + if lcp \= '' & right(lcp, 1) \= ';' then lcp = lcp || ';' + lcp = lcp || cp + 'SET CLASSPATH=' +end +if lcp\='' then lcp = '-classpath' lcp + +cmd = java opts lcp '-jar' ANT_HOME ||'\lib\ant-launcher.jar' settings args antarg +launcher = stream(ANT_HOME ||'\lib\ant-launcher.jar', 'C', 'query exists') +if launcher = '' then entry = 'org.apache.tools.ant.Main' +else entry = 'org.apache.tools.ant.launch.Launcher' +java opts lcp entry settings args antarg + +x = endlocal() + +return rc + +_testenv_: procedure expose env ANT_HOME JAVA_HOME +ANT_HOME = value('ANT_HOME',,env) +if ANT_HOME = '' then return 0 +JAVA_HOME = value('JAVA_HOME',,env) +if JAVA_HOME = '' then return 0 +cp = translate(value('CLASSPATH',,env)) +if pos(translate(ANT_HOME), cp) = 0 then return 0 +if pos(translate(JAVA_HOME), cp) = 0 then return 0 +return 1 + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/2208.06_type3/ant/bin/antRun b/intermax/2208.06_type3/ant/bin/antRun new file mode 100755 index 0000000..baddd71 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/antRun @@ -0,0 +1,26 @@ +#!/bin/sh + +# +# Copyright 2001-2002,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# + +# Args: DIR command +cd "$1" +CMD="$2" +shift +shift + +exec "$CMD" "$@" diff --git a/intermax/2208.06_type3/ant/bin/antRun.bat b/intermax/2208.06_type3/ant/bin/antRun.bat new file mode 100755 index 0000000..aae98cc --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/antRun.bat @@ -0,0 +1,47 @@ +@echo off + +REM +REM Copyright 2001-2002,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +if ""%1""=="""" goto runCommand + +rem Change drive and directory to %1 +if "%OS%"=="Windows_NT" cd /d ""%1"" +if not "%OS%"=="Windows_NT" cd ""%1"" +shift + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of agruments (up to the command line limit, anyway). +set ANT_RUN_CMD=%1 +if ""%1""=="""" goto runCommand +shift +:loop +if ""%1""=="""" goto runCommand +set ANT_RUN_CMD=%ANT_RUN_CMD% %1 +shift +goto loop + +:runCommand +rem echo %ANT_RUN_CMD% +%ANT_RUN_CMD% + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + diff --git a/intermax/2208.06_type3/ant/bin/antRun.pl b/intermax/2208.06_type3/ant/bin/antRun.pl new file mode 100755 index 0000000..7cdd868 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/antRun.pl @@ -0,0 +1,65 @@ +#!/usr/bin/perl +# +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# antRun.pl +# +# wrapper script for invoking commands on a platform with Perl installed +# this is akin to antRun.bat, and antRun the SH script +# +# created: 2001-10-18 +# author: Jeff Tulley jtulley@novell.com +####################################################################### +#be fussy about variables +use strict; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info (currently unused) +my $debug=1; + +####################################################################### +# change drive and directory to "%1" +my $ANT_RUN_CMD = @ARGV[0]; + +# assign current run command to "%2" +chdir (@ARGV[0]) || die "Can't cd to $ARGV[0]: $!\n"; +if ($^O eq "NetWare") { + # There is a bug in Perl 5 on NetWare, where chdir does not + # do anything. On NetWare, the following path-prefixed form should + # always work. (afaict) + $ANT_RUN_CMD .= "/".@ARGV[1]; +} +else { + $ANT_RUN_CMD = @ARGV[1]; +} + +# dispose of the first two arguments, leaving only the command's args. +shift; +shift; + +# run the command +my $returnValue = system $ANT_RUN_CMD, @ARGV; +if ($returnValue eq 0) { + exit 0; +} +else { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; +} diff --git a/intermax/2208.06_type3/ant/bin/antenv.cmd b/intermax/2208.06_type3/ant/bin/antenv.cmd new file mode 100755 index 0000000..05efa85 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/antenv.cmd @@ -0,0 +1,99 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Ant environment +*/ + +'@echo off' +call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs" +call SysLoadFuncs + +/* Prepare the parameters for later use */ +parse arg argv +mode = '' +args = '' +opts = '' +cp = '' +lcp = '' + +do i = 1 to words(argv) + param = word(argv, i) + select + when param='-lcp' then mode = 'l' + when param='-cp' | param='-classpath' then mode = 'c' + when abbrev('-opts', param, 4) then mode = 'o' + when abbrev('-args', param, 4) then mode = 'a' + otherwise + select + when mode = 'a' then args = space(args param, 1) + when mode = 'c' then cp = space(cp param, 1) + when mode = 'l' then lcp = space(lcp param, 1) + when mode = 'o' then opts = space(opts param, 1) + otherwise + say 'Option' param 'ignored' + end + end +end + +env="OS2ENVIRONMENT" +antconf = _getenv_('antconf' 'antconf.cmd') +runrc = _getenv_('runrc') +interpret 'call "' || runrc || '"' '"' || antconf || '"' 'ETC' +ANT_HOME = value('ANT_HOME',,env) +JAVA_HOME = value('JAVA_HOME',,env) +classpath = value('CLASSPATH',,env) +classes = stream(JAVA_HOME || "\lib\classes.zip", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) +classes = stream(JAVA_HOME || "\lib\tools.jar", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) + +classpath = prepend(classpath ANT_HOME || '\lib\ant-launcher.jar') +'SET CLASSPATH=' || classpath + +/* Setting classpathes, options and arguments */ +envset = _getenv_('envset') +if cp\='' then interpret 'call "' || envset || '"' '"; CLASSPATH"' '"' || cp || '"' +if lcp\='' then interpret 'call "' || envset || '"' '"; LOCALCLASSPATH"' '"' || lcp || '"' +if opts\='' then interpret 'call "' || envset || '"' '"-D ANT_OPTS"' '"' || opts || '"' +if args\='' then interpret 'call "' || envset || '"' '"ANT_ARGS"' '"' || args || '"' + +exit 0 + +addpath: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if substr(path, length(path)) = ';' then glue = '' +else glue = ';' +if pos(translate(elem), translate(path)) = 0 then path = path || glue || elem || ';' +return path + +prepend: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if pos(translate(elem), translate(path)) = 0 then path = elem || ';' || path +return path + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/2208.06_type3/ant/bin/complete-ant-cmd.pl b/intermax/2208.06_type3/ant/bin/complete-ant-cmd.pl new file mode 100755 index 0000000..20dd476 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/complete-ant-cmd.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl +# +# Copyright 2001,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# A script to allow Bash or Z-Shell to complete an Ant command-line. +# +# To install for Bash 2.0 or better, add the following to ~/.bashrc: +# +# $ complete -C complete-ant-cmd ant build.sh +# +# To install for Z-Shell 2.5 or better, add the following to ~/.zshrc: +# +# function ant_complete () { +# local args_line args +# read -l args_line +# set -A args $args_line +# set -A reply $(COMP_LINE=$args_line complete-ant-cmd ${args[1]} $1) +# } +# compctl -K ant_complete ant build.sh +# +# @author Mike Williams + +my $cmdLine = $ENV{'COMP_LINE'}; +my $antCmd = $ARGV[0]; +my $word = $ARGV[1]; + +my @completions; +if ($word =~ /^-/) { + list( restrict( $word, getArguments() )); +} elsif ($cmdLine =~ /-(f|buildfile)\s+\S*$/) { + list( getBuildFiles($word) ); +} else { + list( restrict( $word, getTargets() )); +} + +exit(0); + +sub list { + for (@_) { + print "$_\n"; + } +} + +sub restrict { + my ($word, @completions) = @_; + grep( /^\Q$word\E/, @completions ); +} + +sub getArguments { + qw(-buildfile -debug -emacs -f -find -help -listener -logfile + -logger -projecthelp -quiet -verbose -version); +} + + +sub getBuildFiles { + my ($word) = @_; + grep( /\.xml$/, glob( "$word*" )); +} + +sub getTargets { + + # Look for build-file + my $buildFile = 'build.xml'; + if ($cmdLine =~ /-(f|buildfile)\s+(\S+)/) { + $buildFile = $2; + } + return () unless (-f $buildFile); + + # Run "ant -projecthelp" to list targets. Keep a cache of results in a + # cache-file. + my $cacheFile = $buildFile; + $cacheFile =~ s|(.*/)?(.*)|${1}.ant-targets-${2}|; + if ((!-e $cacheFile) || (-M $buildFile) < (-M $cacheFile)) { + open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n"; + open( HELP, "$antCmd -projecthelp -f '$buildFile'|" ) || return(); + my %targets; + while( ) { + if (/^\s+(\S+)/) { + $targets{$1}++; + } + } + my @targets = sort keys %targets; + for (@targets) { print CACHE "$_\n"; } + return @targets; + } + + # Read the target-cache + open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n"; + my @targets; + while () { + chop; + s/\r$//; # for Cygwin + push( @targets, $_ ); + } + close( CACHE ); + @targets; + +} + + + diff --git a/intermax/2208.06_type3/ant/bin/envset.cmd b/intermax/2208.06_type3/ant/bin/envset.cmd new file mode 100755 index 0000000..8fbd4dd --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/envset.cmd @@ -0,0 +1,130 @@ +/* + + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +SET environment variables +First optional parameter: + ; parameters are considered parts of a path variable, semicolons are + appended to each element if not already present + -D parameters are properties for Java or Makefile etc., -D will be + prepended and the parameters will be separated by a space + =D the same as above but equal sign is not required + , parameters should be comma separated in the environment variable + - parameters should be separated by the next parameter + Other values mean that the first parameter is missing and the environment + variable will be set to the space separated parameters + +Second parameter: name of the environment variable + +Next parameters: values +; implies that the equal sign is considered a part of the parameter and is +not interpreted + +-D requires parameters in the form name=value. If the equal sign is not found, +the parameters are changed to name=expanded_name + +Other options have optional equal sign. If it is found, only the part after +the equal sign will be oprionally expanded. + +If the parameter is the minus sign, the next parameter will not be expanded. +If the parameter is a single dot, it will be replaced with the value of the +environment variable as it existed before envset was invoked. + +For other parameters the batch looks for the environment variable with the +same name (in uppercase). If it is found, it forms the expanded_name. If +the environment variable with such a name does not exist, the expanded_name +will hold the parameter name without case conversion. +*/ + +parse arg mode envar args + +equal = 0 +sep = ' ' + +/* Parse command line parameters */ +select + when mode='-' then do + sep = envar + parse var args envar args + end + when mode=';' then do + sep = '' + equal = -1 + end + when mode='-D' then equal = 1 + when mode='=D' then mode = '-D' + when mode=',' then sep = ',' +otherwise + args = envar args + envar = mode + mode = '' +end + +env = 'OS2ENVIRONMENT' +envar = translate(envar) +orig = value(envar,,env) +newval = '' +expand = 1 + +/* for each parameter... */ +do i = 1 to words(args) + if expand > 0 & word(args, i) = '-' then expand = 0 + else call addval word(args, i) +end + +/* Optionally enclose path variable by quotes */ +if mode = ';' & pos(' ', newval) > 0 then newval = '"' || newval || '"' + +/* Set the new value, 'SET' cannot be used since it does not allow '=' */ +x = value(envar, newval, env) +exit 0 + +addval: procedure expose sep equal orig expand newval mode env +parse arg var + +if var = '.' then expvar = orig +else do + if equal >= 0 then do + parse var var name '=' val + if val = '' then var = name + else var = val + end + if expand = 0 then expvar = var + else expvar = value(translate(var),,env) + if expvar = '' then expvar = var + if equal >= 0 then do + if val = '' then do + parse var expvar key '=' val + if val <> '' then name = key + else do + if equal > 0 then val = key + else name = key + end + end + else val = expvar + if pos(' ', val) > 0 | pos('=', val) > 0 then val = '"' || val || '"' + if val = '' then expvar = name + else expvar = name || '=' || val + end + if mode = '-D' then expvar = '-D' || expvar + if mode = ';' then do + if right(expvar, 1) <> ';' then expvar = expvar || ';' + end +end + +if newval = '' then newval = expvar +else newval = newval || sep || expvar +expand = 1 +return diff --git a/intermax/2208.06_type3/ant/bin/lcp.bat b/intermax/2208.06_type3/ant/bin/lcp.bat new file mode 100755 index 0000000..6a1f679 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/lcp.bat @@ -0,0 +1,30 @@ +REM +REM Copyright 2001-2004 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +set _CLASSPATHCOMPONENT=%1 +if ""%1""=="""" goto gotAllArgs +shift + +:argCheck +if ""%1""=="""" goto gotAllArgs +set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 +shift +goto argCheck + +:gotAllArgs +set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% + diff --git a/intermax/2208.06_type3/ant/bin/runant.pl b/intermax/2208.06_type3/ant/bin/runant.pl new file mode 100755 index 0000000..eca4708 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/runant.pl @@ -0,0 +1,152 @@ +#!/usr/bin/perl +# +# Copyright 2000-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# runant.pl +# +# wrapper script for invoking ant in a platform with Perl installed +# this may include cgi-bin invocation, which is considered somewhat daft. +# (slo: that should be a separate file which can be derived from this +# and returns the XML formatted output) +# +# the code is not totally portable due to classpath and directory splitting +# issues. oops. (NB, use File::Spec::Functions will help and the code is +# structured for the catfile() call, but because of perl version funnies +# the code is not included. +# +# created: 2000-8-24 +# author: Steve Loughran steve_l@sourceforge.net +####################################################################### +# +# Assumptions: +# +# - the "java" executable/script is on the command path +# - ANT_HOME has been set +# - target platform uses ":" as classpath separator or perl indicates it is dos/win32 +# - target platform uses "/" as directory separator. + +#be fussy about variables +use strict; + +#platform specifics (disabled) +#use File::Spec::Functions; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info +my $debug=1; + +####################################################################### +# +# check to make sure environment is setup +# + +my $HOME = $ENV{ANT_HOME}; +if ($HOME eq "") + { + die "\n\nANT_HOME *MUST* be set!\n\n"; + } + +my $JAVACMD = $ENV{JAVACMD}; +$JAVACMD = "java" if $JAVACMD eq ""; + +my $onnetware = 0; +if ($^O eq "NetWare") +{ + $onnetware = 1; +} + +my $oncygwin = ($^O eq "cygwin"); + +#ISSUE: what java wants to split up classpath varies from platform to platform +#and perl is not too hot at hinting which box it is on. +#here I assume ":" 'cept on win32, dos, and netware. Add extra tests here as needed. +my $s=":"; +if(($^O eq "MSWin32") || ($^O eq "dos") || ($^O eq "cygwin") || + ($onnetware == 1)) + { + $s=";"; + } + +#build up standard classpath +my $localpath = "$HOME/lib/ant-launcher.jar"; +#set JVM options and Ant arguments, if any +my @ANT_OPTS=split(" ", $ENV{ANT_OPTS}); +my @ANT_ARGS=split(" ", $ENV{ANT_ARGS}); + +#jikes +if($ENV{JIKESPATH} ne "") + { + push @ANT_OPTS, "-Djikes.class.path=$ENV{JIKESPATH}"; + } + +#construct arguments to java +my @ARGS; +push @ARGS, @ANT_OPTS; + +my $CYGHOME = ""; + +my $classpath=$ENV{CLASSPATH}; +if ($oncygwin == 1) { + $localpath = `cygpath --path --windows $localpath`; + chomp ($localpath); + if (! $classpath eq "") + { + $classpath = `cygpath --path --windows "$classpath"`; + chomp ($classpath); + } + $HOME = `cygpath --path --windows $HOME`; + chomp ($HOME); + $CYGHOME = `cygpath --path --windows $ENV{HOME}`; + chomp ($CYGHOME); +} +push @ARGS, "-classpath", "$localpath"; +push @ARGS, "-Dant.home=$HOME"; +if ( ! $CYGHOME eq "" ) +{ + push @ARGS, "-Dcygwin.user.home=\"$CYGHOME\"" +} +push @ARGS, "org.apache.tools.ant.launch.Launcher", @ANT_ARGS; +push @ARGS, @ARGV; +if (! $classpath eq "") +{ + if ($onnetware == 1) + { + # make classpath literally $CLASSPATH + # this is to avoid pushing us over the 512 character limit + # even skip the ; - that is already in $localpath + push @ARGS, "-lib", "\$CLASSPATH"; + } + else + { + push @ARGS, "-lib", "$classpath"; + } +} +print "\n $JAVACMD @ARGS\n\n" if ($debug); + +my $returnValue = system $JAVACMD, @ARGS; +if ($returnValue eq 0) + { + exit 0; + } +else + { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; + } diff --git a/intermax/2208.06_type3/ant/bin/runant.py b/intermax/2208.06_type3/ant/bin/runant.py new file mode 100755 index 0000000..c7b53b6 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/runant.py @@ -0,0 +1,100 @@ +#!/usr/bin/python +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +""" + + runant.py + + This script is a translation of the runant.pl written by Steve Loughran. + It runs ant with/out arguments, it should be quite portable (thanks to + the python os library) + This script has been tested with Python2.0/Win2K + + created: 2001-04-11 + author: Pierre Dittgen pierre.dittgen@criltelecom.com + + Assumptions: + + - the "java" executable/script is on the command path +""" +import os, os.path, string, sys + +# Change it to 1 to get extra debug information +debug = 0 + +####################################################################### + +# If ANT_HOME is not set default to script's parent directory +if os.environ.has_key('ANT_HOME'): + ANT_HOME = os.environ['ANT_HOME'] +else: + ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) + +# set ANT_LIB location +ANT_LIB = os.path.join(ANT_HOME, 'lib') + +# set JAVACMD (check variables JAVACMD and JAVA_HOME) +JAVACMD = None +if not os.environ.has_key('JAVACMD'): + if os.environ.has_key('JAVA_HOME'): + if not os.path.exists(os.environ['JAVA_HOME']): + print "Warning: JAVA_HOME is not defined correctly." + else: + JAVACMD = os.path.join(os.environ['JAVA_HOME'], 'bin', 'java') + else: + print "Warning: JAVA_HOME not set." +else: + JAVACMD = os.environ['JAVACMD'] +if not JAVACMD: + JAVACMD = 'java' + +launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar') +if not os.path.exists(launcher_jar): + print 'Unable to locate ant-launcher.jar. Expected to find it in %s' % \ + ANT_LIB + +# Build up standard classpath (LOCALCLASSPATH) +LOCALCLASSPATH = launcher_jar +if os.environ.has_key('LOCALCLASSPATH'): + LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH'] + +ANT_OPTS = "" +if os.environ.has_key('ANT_OPTS'): + ANT_OPTS = os.environ['ANT_OPTS'] + +OPTS = "" +if os.environ.has_key('JIKESPATH'): + OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH'] + +ANT_ARGS = "" +if os.environ.has_key('ANT_ARGS'): + ANT_ARGS = os.environ['ANT_ARGS'] + +CLASSPATH = "" +if os.environ.has_key('CLASSPATH'): + CLASSPATH = os.environ['CLASSPATH'] + +# Builds the commandline +cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \ + 'org.apache.tools.ant.launch.Launcher %s -lib %s %s') \ + % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \ + CLASSPATH, string.join(sys.argv[1:], ' ')) + +if debug: + print '\n%s\n\n' % (cmdline) + +# Run the biniou! +os.system(cmdline) diff --git a/intermax/2208.06_type3/ant/bin/runrc.cmd b/intermax/2208.06_type3/ant/bin/runrc.cmd new file mode 100755 index 0000000..acdf724 --- /dev/null +++ b/intermax/2208.06_type3/ant/bin/runrc.cmd @@ -0,0 +1,59 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run RC file, name is in the first arg, second arg is either PATH + ENV or -r or nothing +*/ + +parse arg name path rest + +if name = '' then do + say 'RC file name is missing' + exit 1 +end + +if rest \= '' then do + say 'Too many parameters' + exit 1 +end + +call runit name path +exit 0 + +runit: procedure +parse arg name path dir + +if path \= '' & path \= '-r' then do + dir = value(translate(path),,'OS2ENVIRONMENT') + if dir = '' then return + dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */ +end + +if dir = '' then dir = directory() + +if path = '-r' then do /* recursive call */ + subdir = filespec('path', dir) + if subdir \= '\' then do + subdir = left(subdir, length(subdir)-1) + call runit name path filespec('drive', dir) || subdir + end +end + +/* Look for the file and run it */ +if right(dir, 1) \= '\' then dir = dir || '\' +rcfile = stream(dir || name, 'c', 'query exists') +if rcfile \= '' then interpret 'call "' || rcfile || '"' + +return diff --git a/intermax/2208.06_type3/ant/lib/README b/intermax/2208.06_type3/ant/lib/README new file mode 100755 index 0000000..38fa1fa --- /dev/null +++ b/intermax/2208.06_type3/ant/lib/README @@ -0,0 +1,14 @@ +Please refer to the Ant manual under Installing Ant / Library +Dependencies for a list of the jar requirements for various optional +tasks and features. + +This directory contains xercesImpl.jar from the 2.6.2 release of +Apache Xerces. For more information or newer releases see +. See the file LICENSE.xerces for +the terms of distribution. + +It also contains xml-apis.jar from the 2.6.2 release of Apache Xerces. +For more information or newer releases see +. See the files LICENSE.dom and +LICENSE.sax for the terms of distribution. + diff --git a/intermax/2208.06_type3/ant/lib/ant-antlr.jar b/intermax/2208.06_type3/ant/lib/ant-antlr.jar new file mode 100755 index 0000000..167ac03 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-antlr.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-apache-bcel.jar b/intermax/2208.06_type3/ant/lib/ant-apache-bcel.jar new file mode 100755 index 0000000..faa7e9a Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-apache-bcel.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-apache-bsf.jar b/intermax/2208.06_type3/ant/lib/ant-apache-bsf.jar new file mode 100755 index 0000000..c2dca5e Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-apache-bsf.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-apache-oro.jar b/intermax/2208.06_type3/ant/lib/ant-apache-oro.jar new file mode 100755 index 0000000..cc25252 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-apache-oro.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-apache-regexp.jar b/intermax/2208.06_type3/ant/lib/ant-apache-regexp.jar new file mode 100755 index 0000000..08b8ec7 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-apache-regexp.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-apache-resolver.jar b/intermax/2208.06_type3/ant/lib/ant-apache-resolver.jar new file mode 100755 index 0000000..7f06173 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-apache-resolver.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-commons-logging.jar b/intermax/2208.06_type3/ant/lib/ant-commons-logging.jar new file mode 100755 index 0000000..8967cb2 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-commons-logging.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-commons-net.jar b/intermax/2208.06_type3/ant/lib/ant-commons-net.jar new file mode 100755 index 0000000..7c1d881 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-commons-net.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-icontract.jar b/intermax/2208.06_type3/ant/lib/ant-icontract.jar new file mode 100755 index 0000000..c30513d Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-icontract.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-jai.jar b/intermax/2208.06_type3/ant/lib/ant-jai.jar new file mode 100755 index 0000000..3b14cb3 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-jai.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-javamail.jar b/intermax/2208.06_type3/ant/lib/ant-javamail.jar new file mode 100755 index 0000000..10ca5ec Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-javamail.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-jdepend.jar b/intermax/2208.06_type3/ant/lib/ant-jdepend.jar new file mode 100755 index 0000000..bbd20b8 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-jdepend.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-jmf.jar b/intermax/2208.06_type3/ant/lib/ant-jmf.jar new file mode 100755 index 0000000..a293dfc Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-jmf.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-jsch.jar b/intermax/2208.06_type3/ant/lib/ant-jsch.jar new file mode 100755 index 0000000..e8fdabd Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-jsch.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-junit.jar b/intermax/2208.06_type3/ant/lib/ant-junit.jar new file mode 100755 index 0000000..5ee4f7f Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-junit.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-launcher.jar b/intermax/2208.06_type3/ant/lib/ant-launcher.jar new file mode 100755 index 0000000..1a71612 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-launcher.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-netrexx.jar b/intermax/2208.06_type3/ant/lib/ant-netrexx.jar new file mode 100755 index 0000000..f0bd1d8 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-netrexx.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-nodeps.jar b/intermax/2208.06_type3/ant/lib/ant-nodeps.jar new file mode 100755 index 0000000..3e0e5d4 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-nodeps.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-starteam.jar b/intermax/2208.06_type3/ant/lib/ant-starteam.jar new file mode 100755 index 0000000..5848616 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-starteam.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-stylebook.jar b/intermax/2208.06_type3/ant/lib/ant-stylebook.jar new file mode 100755 index 0000000..c2e174e Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-stylebook.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-swing.jar b/intermax/2208.06_type3/ant/lib/ant-swing.jar new file mode 100755 index 0000000..c85ec08 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-swing.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-trax.jar b/intermax/2208.06_type3/ant/lib/ant-trax.jar new file mode 100755 index 0000000..f4e1540 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-trax.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-vaj.jar b/intermax/2208.06_type3/ant/lib/ant-vaj.jar new file mode 100755 index 0000000..f79e4de Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-vaj.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-weblogic.jar b/intermax/2208.06_type3/ant/lib/ant-weblogic.jar new file mode 100755 index 0000000..ca0b4c7 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-weblogic.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-xalan1.jar b/intermax/2208.06_type3/ant/lib/ant-xalan1.jar new file mode 100755 index 0000000..433ca68 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-xalan1.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant-xslp.jar b/intermax/2208.06_type3/ant/lib/ant-xslp.jar new file mode 100755 index 0000000..f69f4b2 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant-xslp.jar differ diff --git a/intermax/2208.06_type3/ant/lib/ant.jar b/intermax/2208.06_type3/ant/lib/ant.jar new file mode 100755 index 0000000..3beb3b8 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/ant.jar differ diff --git a/intermax/2208.06_type3/ant/lib/aspectjtools.jar b/intermax/2208.06_type3/ant/lib/aspectjtools.jar new file mode 100755 index 0000000..d47c6e7 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/aspectjtools.jar differ diff --git a/intermax/2208.06_type3/ant/lib/aspectjweaver.jar b/intermax/2208.06_type3/ant/lib/aspectjweaver.jar new file mode 100755 index 0000000..f38b151 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/aspectjweaver.jar differ diff --git a/intermax/2208.06_type3/ant/lib/xercesImpl.jar b/intermax/2208.06_type3/ant/lib/xercesImpl.jar new file mode 100755 index 0000000..f0fb0e8 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/xercesImpl.jar differ diff --git a/intermax/2208.06_type3/ant/lib/xml-apis.jar b/intermax/2208.06_type3/ant/lib/xml-apis.jar new file mode 100755 index 0000000..2dd8377 Binary files /dev/null and b/intermax/2208.06_type3/ant/lib/xml-apis.jar differ diff --git a/intermax/2208.06_type3/jspd/bin/imxctl.bat b/intermax/2208.06_type3/jspd/bin/imxctl.bat new file mode 100755 index 0000000..d0e1d9d --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxctl.bat @@ -0,0 +1,68 @@ +@echo off + +rem CURPATH +rem ModuleName +rem param + +set CURPATH=%cd% +set argc=0 + +:ModuleSelect +cls +echo Input Module (osm ^| txn ^| uts ^| dbm) +set /p param=-^> + +IF %param% == osm ( + goto moduleSet +) +IF %param% == txn ( + goto moduleSet +) +IF %param% == uts ( + goto moduleSet +) +IF %param% == dbm ( + goto moduleSet +) ELSE ( + echo Wrong ModuleName. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto ModuleSelect +) + +:moduleSet +set ModuleName=imx%param% + +:OptionSelect +cls +echo Input Option (stop) +set /p param=-^> + +IF %param% == stop ( + cd ../data/agent + goto stop +) ELSE ( + echo Wrong Option Command. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto OptionSelect +) + +:stop +IF exist %ModuleName% ( + ren %ModuleName% %ModuleName%.stoped + echo %ModuleName% stop! + goto end +) ELSE ( + echo %ModuleName% is not exist! + goto end +) + + + +:end +cd %CURPATH% +pause + diff --git a/intermax/2208.06_type3/jspd/bin/imxctl.sh b/intermax/2208.06_type3/jspd/bin/imxctl.sh new file mode 100755 index 0000000..fe8b935 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxctl.sh @@ -0,0 +1,95 @@ +#!/bin/sh + + + +Usage() +{ + echo "" + echo "$0 [option ...]" + echo " --stop=[osm|txn|uts] Input osm, txn, and uts, separated by commas." + echo " If there is no value input, the entire process-" + echo " is terminated." + echo " (ex. --stop or --stop=txn,uts)" + echo "" + + exit 1 +} + + + + + +BASE_DIR=`pwd` + +if [ -z "${INTERMAX_HOME}" ];then + if [ ! -f "${BASE_DIR}/imxctl.sh" ];then + echo "Please run it from imxctl.sh file location." + exit 2 + fi + cd .. + INTERMAX_HOME=`pwd` +fi + +cd ${INTERMAX_HOME} +echo "INTERMAX_HOME[${INTERMAX_HOME}]" + + +if [ -z "$1" ];then + Usage +fi + + +for i in $@ +do + echo "${i}" + + case "$i" in + --stop=*) + STOP_LIST=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --stop) + STOP_LIST="osm,txn,uts" + ;; + + *) + Usage + ;; + esac + +done + +if [ -n "${STOP_LIST}" ];then + + STOP_LIST=`echo "${STOP_LIST}" | sed 's/,/ /g'` + # STOP_LIST=`echo "${STOP_LIST}" | awk -F',' '{print $1" "$2" "$3}'` + + # 丮 ˻Ѵ. + if [ ! -d "${INTERMAX_HOME}/data/agent" ];then + echo "pid directory is not exist.[${INTERMAX_HOME}/data/agent]" + Usage + fi + + # Check imx list + for STOP_IMX in ${STOP_LIST} + do + if [ "${STOP_IMX}" != "osm" ] && [ "${STOP_IMX}" != "txn" ] && [ "${STOP_IMX}" != "uts" ];then + echo "imx name is wrong." + Usage + fi + done + + # Stop imx + for STOP_IMX in ${STOP_LIST} + do + if [ -f "${INTERMAX_HOME}/data/agent/imx${STOP_IMX}" ];then + echo "--> imx${STOP_IMX} stop!" + # echo "mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped" + mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped + else + echo "--> imx${STOP_IMX} is not running" + fi + done + +fi + +exit 0 diff --git a/intermax/2208.06_type3/jspd/bin/imxtxnd.bat b/intermax/2208.06_type3/jspd/bin/imxtxnd.bat new file mode 100755 index 0000000..b1c2e31 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxtxnd.bat @@ -0,0 +1,39 @@ +@echo off + +setlocal + +pushd "%~dp0" + +if "%INTERMAX_HOME%" == "" ( + echo please check INTERMAX_HOME. + exit /b 1 +) + +if "%1" == "" ( + echo please check option[--install^|--uninstall]. + exit /b 1 +) + + + +set MODULE_DIR=%INTERMAX_HOME%\lib\imx +set MODULE_NAME=imxtxn +set SERVICE_NAME=IMXTXN + +set EXEC_NAME=%MODULE_NAME%_win_64.exe + +set XMSVCMGR=%INTERMAX_HOME%\tools\XmSvcMgr\XmSvcMgr_x64.exe + + +if "%1" == "--install" ( + %XMSVCMGR% -i -p "%MODULE_DIR%" -f "%EXEC_NAME%" -a "-H %INTERMAX_HOME%" -n "%SERVICE_NAME%" -s "Intermax %MODULE_NAME%" +) + +if "%1" == "--uninstall" ( + %XMSVCMGR% -u -f "%EXEC_NAME%" -n "%MODULE_NAME%" +) + +endlocal + +@pause + diff --git a/intermax/2208.06_type3/jspd/bin/imxtxnd.sh b/intermax/2208.06_type3/jspd/bin/imxtxnd.sh new file mode 100755 index 0000000..8c730c7 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxtxnd.sh @@ -0,0 +1,415 @@ +#!/bin/sh + +# set log path(default) +# WORKING_DIRECOTYR=`pwd` +# LOG_PATH="${WORKING_DIRECOTYR}/temp_imxtxnd.log" + +# $1: log filename, $2: log limit size +func_check_log_file() +{ + LOG_CHK_SIZE=1048576 + if [ -n "$2" ];then + LOG_CHK_SIZE=$2 + fi + + if [ -f "$1" ];then + + LOG_SIZE=`ls -la $1 | awk -F' ' '{print $5}'` + if [ $? -eq 0 ]; then + + if [ ${LOG_SIZE} -gt ${LOG_CHK_SIZE} ]; then + if [ -f $1.bak ];then + rm -rf $1.bak + fi + + mv $1 $1.bak +# rm -rf $1 +# echo "log size is over. remove log file.[size:${LOG_SIZE},file:$1]" + fi + + fi + + fi + +} + +# $1: log filename $2: log string +func_log() +{ + CUR_DATE=`date +%Y%m%d.%H%M%S` + + # nfs ȯ濡 Ѱ ġ Ͽ ٸ + # imxtxnd ׳ ǹ. + + if [ -n "$1" ]; + then + func_check_log_file "$1" 10240 + echo "${CUR_DATE}[${RUN_MODE}] $2" >> "$1" + else + echo "${CUR_DATE}[${RUN_MODE}] $2" + fi +} + +FUNC_RESULT="" + +# $1: pid, $2: check process name +func_is_running_process() +{ + if [ -z "$1" ]; + then + func_log "" "pid is wrong." + FUNC_RESULT="false" + return + fi + + PROC_NAME=`ps -p $1 -o args= | awk -F' ' '{print $1}'` + + func_log "" "EXEC_PID[$1],PROC_NAME[${PROC_NAME}]" + if [ "${PROC_NAME}" = "$2" ]; + then + FUNC_RESULT="true" + else + FUNC_RESULT="false" + fi +} + +# $1: exit code, $2: message +func_usage_exit() +{ + if [ -n "$2" ]; + then + echo "$2" + fi + + echo "imxtxnd [options]" + echo "options:" + echo " --[install|uninstall|continue|daemon]" + echo " install: Start imxtxn as a new daemon." + echo " uninstall: Start Terminate running imxtxn." + echo " continue: Continuing from imxtxn already running." + echo " daemon: Starts as a standalone daemon.(default)" + echo " --set-home=[directory] Set the InterMax home directory." + echo " (default:current direcotry)" + echo " --bit=[32|64] Set 32 or 64 bit.(default:64)" + echo "" + + exit $1 +} + + +########################################## +# option +SELF_PROC_PATH="$0" +if [ -n "$1" ]; +then + + for i in $@ + do + + echo "$i" + + case "$i" in + --install) + RUN_MODE="install" + ;; + --uninstall) + RUN_MODE="uninstall" + ;; + --continue) + RUN_MODE="continue" + ;; + --daemon) + RUN_MODE="daemon" + ;; + --set-home=*) + ENV_INTERMAX_HOME=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --bit=*) + ENV_BIT=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --help) + func_usage_exit 0 + ;; + *) + func_usage_exit 1 "option is wrong." + ;; + esac + done +fi + +########################################## + + +########################################## +# os +# linux ׽Ʈ غ +OS_NAME=`uname -s` +case $OS_NAME in + "HP-UX" ) + ARCH=`uname -m` + if [ ! "${ARCH}" = "ia64" ]; + then + func_log "${LOG_PATH}" "${ARCH} is not support." + exit 1 + fi + ENV_OS_TYPE=hpia + UNIX95=1 + ;; + "SunOS" ) + ENV_OS_TYPE=sun + ;; + "AIX" ) + ENV_OS_TYPE=aix + ;; + "Linux" ) + ENV_OS_TYPE=linux + # ENV_OS_TYPE=sun + ;; + * ) + func_log "${LOG_PATH}" "Unkown OS Name[$OS_NAME]" + exit 1 + ;; +esac + +########################################## + +########################################## +# set default bit +if [ "${ENV_BIT}" = "" ]; +then + # default 64 bit + ENV_BIT=64 +fi +########################################## + +########################################## +# set default run mode +if [ "${RUN_MODE}" = "" ]; +then + # default 64 bit + RUN_MODE="daemon" +fi +########################################## + + +########################################## +# set intermax home directory +# 1. input option +# 2. environment INTERMAX_HOME +# 3. current directory + +if [ ! "${ENV_INTERMAX_HOME}" = "" ]; +then + INTERMAX_HOME="${ENV_INTERMAX_HOME}" + export INTERMAX_HOME +fi + +if [ "${INTERMAX_HOME}" = "" ]; +then + # set current direcotry base + CUR_DIR=`pwd` + cd .. + INTERMAX_HOME=`pwd` + export INTERMAX_HOME + cd ${CUR_DIR} +fi +########################################## + + + +########################################## +# check intermax home directory +if [ ! -d ${INTERMAX_HOME}/lib/imx ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +# ̰ ؾ ϳ.. ϴ ó +if [ ! -d ${INTERMAX_HOME}/data/agent ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +########################################## + + + +########################################## +# reset log path & chagne directory to InterMax home + +# cd ${INTERMAX_HOME} +func_log "${LOG_PATH}" "InterMax Home Directory [${INTERMAX_HOME}]" + +# α׸ ȭ鿡 ϵ Ѵ. +LOG_PATH="${INTERMAX_HOME}/log/imxtxnd.log" + +########################################## + +########################################## +# set execute process path + +EXEC_PROCESS="${INTERMAX_HOME}/lib/imx/imxtxn" +# echo "execute process path[${EXEC_PROCESS}]" +func_log "${LOG_PATH}" "execute process path[${EXEC_PROCESS}]" + +PROC_PID_PATH=${INTERMAX_HOME}/data/agent/imxtxn +func_log "${LOG_PATH}" "PROC_PID_PATH[$PROC_PID_PATH]" +########################################## + +########################################## +# copy imxtxn(if not exist) +if [ ! -f ${EXEC_PROCESS} ]; +then + cp ${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} ${EXEC_PROCESS} + if [ ! "$?" = "0" ]; + then + func_log "${LOG_PATH}" "${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} is not exist." + exit 3 + fi +fi +########################################## + +########################################## +# check config + +# test command(0 or 1) +# sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' cfg/agent/imx.prop | awk -F'=' '{if($2=="1") exit(0); else exit(1);}'; echo "$?" +CMD_RESULT=`sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' ${INTERMAX_HOME}/cfg/agent/imx.prop` +if [ ! "$?" = "0" ]; +then + echo "check please - imx config file(imx.prop)" + exit 1 +fi + +CFG_ENABLE_TXN_STANDALONE=`echo "${CMD_RESULT}" | awk -F'=' '{print $2}'` +if [ ! "${CFG_ENABLE_TXN_STANDALONE}" = "1" ]; +then + echo "check please - ENABLE_TXN_STANDALONE option in imx.prop(value:${CFG_ENABLE_TXN_STANDALONE})" + exit 1 +fi + +echo "ENABLE_TXN_STANDALONE config checked." +########################################## + +########################################## +# run process + +# stop mode INTERMAX_HOME ʿϿ ⿡ install, uninstall óѴ. +case ${RUN_MODE} in +"install") + if [ -f "${PROC_PID_PATH}" ]; + then + func_is_running_process \ + `cat ${PROC_PID_PATH}` \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "true" ]; + then + echo "imxtxnd - imxtxn is already running." + echo "imxtxnd - Rerun imxtxnd with run mode \"continue\"." + func_log "" "imxtxnd - imxtxn is already running." + func_log "" "imxtxnd - 'imxtxnd --stop' or delete '${INTERMAX_HOME}/data/agent/imxtxnd.pid'" + exit 1 + fi + fi + + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - installed[$!]" + func_log "${LOG_PATH}" "imxtxnd - installed[$!]" + + exit 0 + ;; + +"continue") + TEMP_STR="" + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + TEMP_PID=`cat ${INTERMAX_HOME}/data/agent/imxtxnd.pid` + TEMP_STR=`ps -p ${TEMP_PID} | grep imxtxnd` + fi + + if [ -n "${TEMP_STR}" ]; + then + func_log "" "${TEMP_STR}" + func_log "" "imxtxnd - imxtxnd is not running." + exit 1 + fi + + # imxtxnd ¿ imxtxn + # imxtxn ״ Ѵ. + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - continue[$!]" + func_log "${LOG_PATH}" "imxtxnd - continue[$!]" + + exit 0 + ;; + +"uninstall") + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + rm -rf ${INTERMAX_HOME}/data/agent/imxtxnd.pid + fi + + if [ -f "${PROC_PID_PATH}" ]; + then + rm -rf ${PROC_PID_PATH} + func_log "${LOG_PATH}" "imxtxnd - uninstall" + else + func_log "${LOG_PATH}" "imxtxnd - imxtxn is not running." + fi + exit 0 + ;; +"daemon") + func_log "${LOG_PATH}" "imxtxnd daemon" + ;; +esac +########################################## + + + + +########################################## +# run imxtxn +if [ ! -f "${PROC_PID_PATH}" ]; +then + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + sleep 3 +fi + +if [ ! -f "${PROC_PID_PATH}" ]; +then + func_log "${LOG_PATH}" "execute process has failed.[${EXEC_PROCESS}]" + exit 4 +fi + +PROC_NAME="" +while [ -f "${PROC_PID_PATH}" ] +do + echo "PROC_PID_PATH[${PROC_PID_PATH}][$EXEC_PROCESS]" + PROC_PID=`cat ${PROC_PID_PATH}` + echo "PROC_PID[${PROC_PID}]" + + func_is_running_process \ + "${PROC_PID}" \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "false" ]; + then + func_log "${LOG_PATH}" "process is not running." + # run process + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + fi + + sleep 3 + +done +########################################## + + +func_log "${LOG_PATH}" "imxtxnd end" diff --git a/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmInstall.bat b/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmInstall.bat new file mode 100755 index 0000000..d2c2771 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmInstall.bat @@ -0,0 +1,30 @@ +setlocal EnableDelayedExpansion + +pushd "%~dp0" + +set CURRENTDIR=%cd% + +cd ..\.. + +set INTERMAX_HOME=%cd% + +cd .\lib + +set LIB_DIR=%cd% + +set "JAVA_OPTION=-Xms256m -Xmx256m" +set "JAVA_OPTION=%JAVA_OPTION% -server" +set "JAVA_OPTION=%JAVA_OPTION% -DINTERMAX_HOME=%INTERMAX_HOME%" +set "JAVA_OPTION=%JAVA_OPTION% -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=%INTERMAX_HOME%" +set "JAVA_OPTION=%JAVA_OPTION% -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000" +set "JAVA_OPTION=%JAVA_OPTION% -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +set CLASSPATH=%LIB_DIR%\imxwsm.jar +for /R %LIB_DIR%\libs %%a in (*.jar) do ( +set CLASSPATH=!CLASSPATH!;%%a +) +set CLASSPATH=!CLASSPATH! + +%LIB_DIR%\JavaService -install "IMXWSM" "%JAVA_HOME%\jre\bin\server\jvm.dll" -Djava.class.path=%CLASSPATH% %JAVA_OPTION% -start com.exem.imx.wsm.Main -current %CURRENTDIR% -description "EXEM IMXWSM" +rem -out %CURRENTDIR%\out.log -err %CURRENTDIR%\err.log +pause \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmUninstall.bat b/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmUninstall.bat new file mode 100755 index 0000000..158b53f --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/imxwsmInstall/imxwsmUninstall.bat @@ -0,0 +1,12 @@ +setlocal + +rem FOR /F %%I IN ("%0") DO SET CURRENTDIR=%%~dpI +rem cd %CURRENTDIR% +pushd "%~dp0" + +cd ..\..\lib + +%cd%\JavaService.exe -uninstall "IMXWSM" + +pause + diff --git a/intermax/2208.06_type3/jspd/bin/launcher.bat b/intermax/2208.06_type3/jspd/bin/launcher.bat new file mode 100755 index 0000000..5950a87 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/launcher.bat @@ -0,0 +1,17 @@ +rem @echo off + +pushd "%~dp0" +set CURRENTDIR=%cd% +cd ..\ +set JSPD_HOME=%cd% + +set JAVA_HOME=%JAVA_HOME% + +set JAVA_OPTS=-Djspd.home=%JSPD_HOME% +set JAVA_OPTS=%JAVA_OPTS% -Djspd.jar=%JSPD_HOME%\lib\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd.jar=%JSPD_HOME%\lib\patch\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-common.jar=%JSPD_HOME%\lib\patch\jspd-common.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-pool.jar=%JSPD_HOME%\lib\patch\jspd-pool.jar +cd %CURRENTDIR% + +"%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%JAVA_HOME%\lib\tools.jar;%JSPD_HOME%\lib\libs\*;%JSPD_HOME%\lib\jspd-launcher.jar" com.exem.jspd.launcher.Main %1 %2 %3 diff --git a/intermax/2208.06_type3/jspd/bin/launcher.sh b/intermax/2208.06_type3/jspd/bin/launcher.sh new file mode 100755 index 0000000..9d35da4 --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/launcher.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +JAVA_HOME=$JAVA_HOME +cd ../ +JSPD_HOME=`pwd` + +JAVA_OPTS="-Djspd.home=$JSPD_HOME" +JAVA_OPTS="$JAVA_OPTS -Djspd.jar=$JSPD_HOME/lib/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd.jar=$JSPD_HOME/lib/patch/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-common.jar=$JSPD_HOME/lib/patch/jspd-common.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-pool.jar=$JSPD_HOME/lib/patch/jspd-pool.jar" + +$JAVA_HOME/bin/java $JAVA_OPTS -classpath $JAVA_HOME/lib/tools.jar:$JSPD_HOME/lib/jspd-launcher.jar:$JSPD_HOME/lib/libs/* com.exem.jspd.launcher.Main $1 $2 $3 diff --git a/intermax/2208.06_type3/jspd/bin/startwsm.bat b/intermax/2208.06_type3/jspd/bin/startwsm.bat new file mode 100755 index 0000000..79842ba --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/startwsm.bat @@ -0,0 +1,25 @@ +setlocal + +cd .. + +set INTERMAX_HOME=%cd% +echo %INTERMAX_HOME% + +cd %INTERMAX_HOME% + +set "JAVA_OPTION=-Xms256m -Xmx256m" +set "JAVA_OPTION=%JAVA_OPTION% -server" +set "JAVA_OPTION=%JAVA_OPTION% -DINTERMAX_HOME=%INTERMAX_HOME%" + +set "JAVA_OPTION=%JAVA_OPTION% -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=%INTERMAX_HOME%" + +set "JAVA_OPTION=%JAVA_OPTION% -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000" +rem set JAVA_OPTION="$JAVA_OPTION -XX:+UseParNewGC -XX:+UseConcMarkSweepGC" +set "JAVA_OPTION=%JAVA_OPTION% -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +rem for debugging only. +rem set JAVA_OPTION="%JAVA_OPTION% -ea" +rem set JAVA_OPTION="%JAVA_OPTION% -Dio.netty.leakDetectionLevel=PARANOID" +rem set JAVA_OPTION="%JAVA_OPTION% -XX:NativeMemoryTracking=summary" + +java -Dimxwsm.jar %JAVA_OPTION% -classpath %INTERMAX_HOME%\lib\imxwsm.jar;%INTERMAX_HOME%\lib\libs\* com.exem.imx.wsm.Main diff --git a/intermax/2208.06_type3/jspd/bin/startwsm.sh b/intermax/2208.06_type3/jspd/bin/startwsm.sh new file mode 100755 index 0000000..749667c --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/startwsm.sh @@ -0,0 +1,163 @@ +#!/bin/sh +CUR_DIR=`pwd` +INTERMAX_HOME=`dirname $CUR_DIR` + +print_n_exit() +{ + echo $1 + exit $2 +} + + +################################################################ +# set libpcap + +OS_NAME=`uname -s` + +ENV_BIT="$1" +if [ "${ENV_BIT}" = "" ]; +then + ENV_BIT="64" +fi + +if [ "$OS_NAME" = "AIX" ]; +then + ENV_BIT=`getconf -a | grep KERNEL_BITMODE | awk -F' ' '{print $2}'` + ENV_OS_NAME="aix" + OS_VER=`uname -v` + OS_RELEASE=`uname -r` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + if [ "$ENV_OS_VER" != "7.2" ]; then + ENV_OS_VER="5.3" + fi + + ENV_CPU=`uname -p` + + if [ "$ENV_CPU" = "powerpc" ]; then + ENV_CPU="powerpc" + else + echo "[$ENV_CPU] is not support" + exit 0 + fi + + ENV_LIB_PCAP_VER="1.7.4" + if [ "$ENV_OS_VER" != "7.2" ]; then + ENV_LIB_PCAP_VER="1.6.1" + fi + +elif [ "$OS_NAME" = "Linux" ]; +then + ENV_OS_NAME="linux" + OS_VER=`uname -r | awk -F'.' '{print $1}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $2}'` + # ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_OS_VER="2.6" + ENV_CPU=`uname -m` + + # ENV_LIB_PCAP_VER="1.7.4" + ENV_LIB_PCAP_VER="1.8.1" + if [ "${ENV_BIT}" = "32" ]; + then + ENV_LIB_PCAP_VER="1.7.4" + fi + +elif [ "$OS_NAME" = "SunOS" ]; +then + ENV_OS_NAME="sunos" + OS_VER=`uname -r | awk -F'.' '{print $1}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $2}'` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_CPU=`uname -p` + + if [ ${OS_VER} -eq 5 ] && [ ${OS_RELEASE} -gt 10 ];then + ENV_LIB_PCAP_VER="1.8.1" + else + ENV_LIB_PCAP_VER="1.7.4" + fi + +elif [ "$OS_NAME" = "HP-UX" ]; +then + ENV_OS_NAME="hpux" + OS_VER=`uname -r | awk -F'.' '{print $2}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $3}'` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_CPU=`uname -m` + + ENV_LIB_PCAP_VER="1.8.1" + +else + print_n_exit "$OS_NAME is not support!" 0 +fi + +if [ "$OS_NAME" = "AIX" ] && [ "$ENV_BIT" = "64" ]; +then + cp ${INTERMAX_HOME}/lib/jni/libjni_pcap_aix_64.so.${ENV_OS_VER} ${INTERMAX_HOME}/lib/jni/libjni_pcap_aix_64.so +elif [ "$OS_NAME" = "SunOS" ]; +then + ln -s libjni_pcap_sun_${ENV_BIT}.so.${ENV_OS_VER} ${INTERMAX_HOME}/lib/jni/libjni_pcap_sun_${ENV_BIT}.so +fi + +if [ "$OS_NAME" = "AIX" ]; +then + LIB_PCAP_NAME="libpcap.a.${ENV_LIB_PCAP_VER}-${ENV_OS_NAME}-${ENV_OS_VER}-${ENV_CPU}-${ENV_BIT}" + LIB_PCAP_NAME_LINK="libpcap.a" +else + LIB_PCAP_NAME="libpcap.so.${ENV_LIB_PCAP_VER}-${ENV_OS_NAME}-${ENV_OS_VER}-${ENV_CPU}-${ENV_BIT}" + LIB_PCAP_NAME_LINK="libpcap.so.1" +fi + +cd ${INTERMAX_HOME}/lib/jni/lib + +if [ ! -f "${LIB_PCAP_NAME}" ]; then + echo "${LIB_PCAP_NAME} is not exist" + exit 0 +fi + +if [ ! -f "${LIB_PCAP_NAME_LINK}" ]; then + ln -s ${LIB_PCAP_NAME} ${LIB_PCAP_NAME_LINK} + if [ $? != 0 ]; then + echo "link[${LIB_PCAP_NAME}] has failed" + exit 0 + fi +fi + +cd ${CUR_DIR} + +if [ "$OS_NAME" = "AIX" ]; +then + export LIBPATH=${INTERMAX_HOME}/lib/jni/lib:$LIBPATH + echo $LIBPATH +else + LD_LIBRARY_PATH=${INTERMAX_HOME}/lib/jni/lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + echo $LD_LIBRARY_PATH +fi +env +# set libpcap +################################################################### + + + +pid=`ps -ef | grep imxwsm.jar | grep java | awk '{print $2}'` +if [ "$pid" != "" ] +then + kill -9 $pid +fi + +cd $INTERMAX_HOME +JAVA_OPTION=" -Xms256m -Xmx256m" +JAVA_OPTION="$JAVA_OPTION -server" +JAVA_OPTION="$JAVA_OPTION -DINTERMAX_HOME=$INTERMAX_HOME" + +JAVA_OPTION="$JAVA_OPTION -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=$INTERMAX_HOME " + +JAVA_OPTION="$JAVA_OPTION -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000 " +#JAVA_OPTION="$JAVA_OPTION -XX:+UseParNewGC -XX:+UseConcMarkSweepGC" +JAVA_OPTION="$JAVA_OPTION -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +# for debugging only. +#JAVA_OPTION="$JAVA_OPTION -ea" +#JAVA_OPTION="$JAVA_OPTION -Dio.netty.leakDetectionLevel=PARANOID" +#JAVA_OPTION="$JAVA_OPTION -XX:NativeMemoryTracking=summary" + +java -d64 -Dimxwsm.jar $JAVA_OPTION -classpath $INTERMAX_HOME/lib/imxwsm.jar:$INTERMAX_HOME/lib/libs/* com.exem.imx.wsm.Main & diff --git a/intermax/2208.06_type3/jspd/bin/stopwsm.sh b/intermax/2208.06_type3/jspd/bin/stopwsm.sh new file mode 100755 index 0000000..a3167cc --- /dev/null +++ b/intermax/2208.06_type3/jspd/bin/stopwsm.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +pid=`ps -ef | grep imxwsm.jar | grep java | awk '{print $2}'` +if [ "$pid" != "" ] +then + kill -9 $pid +fi + diff --git a/intermax/2208.06_type3/jspd/build-ext/build.bat b/intermax/2208.06_type3/jspd/build-ext/build.bat new file mode 100755 index 0000000..2e99da6 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/build.bat @@ -0,0 +1,6 @@ +set JAVA_HOME= +set JAVA_VERSION= +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant -DJAVA_HOME="%JAVA_HOME%" -DJAVA_VERSION="%JAVA_VERSION%" %1 diff --git a/intermax/2208.06_type3/jspd/build-ext/build.sh b/intermax/2208.06_type3/jspd/build-ext/build.sh new file mode 100755 index 0000000..354fb8e --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/build.sh @@ -0,0 +1,7 @@ +export JAVA_HOME= +export JAVA_VERSION= +export ANT_HOME=../../ant +export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$PATH + +ant -DJAVA_HOME="$JAVA_HOME" -DJAVA_VERSION="$JAVA_VERSION" $1 + diff --git a/intermax/2208.06_type3/jspd/build-ext/build.xml b/intermax/2208.06_type3/jspd/build-ext/build.xml new file mode 100755 index 0000000..618d02c --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/2208.06_type3/jspd/build-ext/src/build.bat b/intermax/2208.06_type3/jspd/build-ext/src/build.bat new file mode 100755 index 0000000..a8735e0 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/build.bat @@ -0,0 +1,5 @@ +set JAVA_HOME=C:\Program Files (x86)\java\jdk1.6.0_03 +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant %1 diff --git a/intermax/2208.06_type3/jspd/build-ext/src/build.xml b/intermax/2208.06_type3/jspd/build-ext/src/build.xml new file mode 100755 index 0000000..b640084 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java new file mode 100755 index 0000000..ff6634e --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java @@ -0,0 +1,52 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_HTTP implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("HTTP", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + XmCommon.xstart(info); + String id = (String) obj[obj.length - 1]; + XmCommon.x(info, id.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + if (obj[obj.length - 1] != null) + { + xInbound(thread, info, obj); + } + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + + String id = (String) obj[obj.length - 1]; + if(id != null) + { + XmCommon.xstart(info); + XmCommon.x(info, id.getBytes()); + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java new file mode 100755 index 0000000..297f705 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java @@ -0,0 +1,35 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_RT.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_RT.java new file mode 100755 index 0000000..5e7ed92 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_RT.java @@ -0,0 +1,24 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXRt; +import com.exem.jspd.state.XmXInfo; + +import java.net.Socket; + +public class XM_RT implements IXRt +{ + public void onSocket(IThread thread, XmXInfo info, int mode, Socket socket) + { + if(mode == 5) + { + String remoteAddress = socket.getRemoteSocketAddress() + ""; + String[] ss = remoteAddress.split("/"); + info.s00 = ss[1]; + } + } + + public void onFile(IThread thread, XmXInfo info, int mode, String name) + { + } +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN.java new file mode 100755 index 0000000..196afdf --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN.java @@ -0,0 +1,46 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java new file mode 100755 index 0000000..da145bf --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java @@ -0,0 +1,21 @@ +package com.exem.ext; + +import com.exem.TxnCallbackBase; +import com.exem.IThread; + +public class XM_TXN_CALLBACK extends TxnCallbackBase { + public boolean isExcludeException(Object err) { + return super.isExcludeException(err); + } + + public boolean isIncludeException(Object err) { + return super.isIncludeException(err); + } + + public void beginTxn(IThread thread, Object[] param) { + } + + public void endTxn(IThread thread, Object[] param, Object err) { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java new file mode 100755 index 0000000..62b55f3 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java @@ -0,0 +1,52 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = (String)XmClass.getMethod(obj[0], "getName"); + s = s == null ? "call" : s; + index = thread.regMtdIndex("SAP", s); + info.s00 = s; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### SAP xOutbound"); + byte[] xb = (byte[])obj[1]; + //XmCommon.print("xOutbound xb:", xb); + byte[] conv_id = (byte[])XmClass.getField(obj[0], obj[0].getClass().getSuperclass(), "conv_id", true); + XmCommon.xstart(info); + XmCommon.x(info, conv_id); + XmCommon.x(info, info.s00.getBytes()); + //XmCommon.print("xOutbound conv_id:", conv_id); + //XmCommon.print("xOutbound func:" + info.s00); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java new file mode 100755 index 0000000..15563bb --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java @@ -0,0 +1,60 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tmax xOutbound"); + + byte[] xb = (byte[])obj[2]; + //System.out.println("xOutbound xb:" + new String(xb)); + XmCommon.xstart(info); + info.x40 = new byte[32]; + System.arraycopy(xb, 124, info.x40, 0, 32); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + + //thread.udp().xHeaderInfo(thread.tid(), "P", (byte)6, xb, 124, 32); + //info.x41 = new byte[10]; + //long l = System.currentTimeMillis(); + //String os = OS[((int)(l % 6L))]; + //String bank = BANK[((int)(l % 3L))]; + //System.arraycopy(os.getBytes(), 0, info.x41, 0, 2); + //System.arraycopy(bank.getBytes(), 0, info.x41, 2, 3); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java new file mode 100755 index 0000000..ce3d3f2 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java @@ -0,0 +1,53 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tuxedo xOutbound"); + + byte[] xb = (byte[])obj[1]; + //System.out.println("xOutbound xb:" + new String(xb)); + + XmCommon.xstart(info); + info.x40 = new byte[8]; + System.arraycopy(xb, 20, info.x40, 0, 8); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep new file mode 100755 index 0000000..84a3874 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep @@ -0,0 +1,54 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = thread.txn().getTxnName(); + if (s.indexOf("/a") > -1) + { + info.s00 = "async" + s.substring(2); + } + else if (s.indexOf("/s") > -1) + { + info.s00 = s.substring(2); + } + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String s1 = new String( b, 277, 43); + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 32); + if (s1.indexOf("Ext") > -1) + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s1); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci new file mode 100755 index 0000000..c3752dd --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci @@ -0,0 +1,55 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + Object o1 = XmClass.getMethod(obj[3], "getFieldValue","HFD_Standard_System_Header"); + String s = (String)XmClass.getMethod(o1, "getFieldValue", "rcvSrvcCd"); + thread.txn().setTxnName(s); + String s1 = (String)XmClass.getMethod(o1, "getFieldValue", "tlgrWrtnDt"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrCrtnSysNm"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrSrlNo"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrPrgrsNo"); + String s2 = (String)XmClass.getMethod(o1, "getFieldValue", "orgnlTx"); + String s3 = s2.substring(0,30); + String s4 = (String)XmClass.getMethod(o1, "getFieldValue","custId"); + byte[] b = s3.getBytes(); + XmCommon.xstart(info); + XmCommon.x(info, b); + thread.udp().xHeaderInfo(thread.tid(),"orgguid",XmConst.E_HEADER, s2); + thread.udp().xHeaderInfo(thread.tid(),"guid",XmConst.E_HEADER, s1); + thread.txn().setLoginName(s4); + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai new file mode 100755 index 0000000..7d855ee --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai @@ -0,0 +1,104 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +import java.text.SimpleDateFormat; +import java.util.Date; + +public class XM_BOUND_X implements IXBound +{ + private final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy"); + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("SVC", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 4, year.getBytes()); + String s1 = new String((byte[])obj[1], 157, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + boolean b3 = XmUtil.compBytes(b, 12, year.getBytes()); + if (b3) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 4, 30); + long l = info.x20; + info.x20 = l - 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'C', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Outbound Create C", t); + } + info.x20 = l; + } + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 12, year.getBytes()); + String s1 = new String((byte[])obj[1], 165, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + if (b1) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + long l = info.x20; + info.x20 = l + 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'P', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Inbound Create P", t); + } + info.x20 = l; + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep new file mode 100755 index 0000000..1775943 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep @@ -0,0 +1,70 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + byte[] b = (byte[])obj; + String s= new String(b, 277, 43); + IThread thread = com.exem.jspd.agent.XmMain.current(); + + if (s.indexOf("Ext") > -1) + { + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s); + } + if (b[500] == 0x30 && b[501] == 0x30); + else + { + String s1 = new String(b, 122, 13); + String s2 = "|"; + s1 += s2; + s1 += new String(b, 12, 32); + s1 += s2; + s1 += new String(b, 321, 20); + s1 += s2; + s1 += new String(b, 507, 10); + s1 += s2; + s1 += new String(b, 517, 200); + thread.udp().xHeaderInfo(thread.tid(), "retmsg", XmConst.E_HEADER, s1); + } + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank new file mode 100755 index 0000000..5146d5e --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank @@ -0,0 +1,61 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + Object o1 = XmClass.getField(obj, "header"); + String s1 = (String)XmClass.getMethod(o1, "getScrnId"); + String s2 = (String)XmClass.getMethod(o1, "getSrvcCd"); + String s3 = (String)XmClass.getMethod(o1, "getOrgGuid"); + String s4 = (String)XmClass.getMethod(o1, "getGuid"); + String s5 = (String)XmClass.getMethod(o1, "getCustId"); + IThread thread = com.exem.jspd.agent.XmMain.current(); + thread.udp().xHeaderInfo(thread.tid(), "orgguid", XmConst.E_HEADER, s3); + thread.udp().xHeaderInfo(thread.tid(), "guid", XmConst.E_HEADER, s4); + thread.udp().xHeaderInfo(thread.tid(), "custid", XmConst.E_HEADER, s5); + thread.txn().setLoginName(s5); + if (s1 == null) + return "+" + s2; + else + return s1 + "+" + s2; + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco new file mode 100755 index 0000000..d8f3860 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco @@ -0,0 +1,54 @@ +package com.exem.kepco; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + XmCommon.print("11111"); + String s = txnName; + Object o1 = param[1]; + txnName = (String)o1 + "+" + s; + XmCommon.print("txnName:" + txnName); + String txnIp = "127.127.127.1"; + thread.txn().setTxnIp(txnIp); + XmCommon.print("Ip:" + txnIp); + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java new file mode 100755 index 0000000..d79c084 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java @@ -0,0 +1,202 @@ +package com.exem.sample; + +import com.exem.IXTxn; +import com.exem.XmUtil; +import com.exem.IThread; +import com.exem.IUdpThread; +import com.exem.IXTxn; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN_EXT implements IXTxn +{ + private static final byte TRX_PARAMETER = 1; + private static final byte TRX_PARAM_NOURI = 2; + private static final byte TRX_ATTRIBUTRE = 3; + + private static final byte APP_ATTRIBUTRE = 1; + private static final byte APP_COOKIE = 2; + + public String getName(Object svc, XmHttpRequest req) + { + if (XmCommon.TRX_NAME_KEY.length == 0) + return req.getRequestURI(); + + String name = null; + switch (XmCommon.TRX_NAME_TYPE) + { + case TRX_PARAMETER: + case TRX_PARAM_NOURI: + String param = null; + for (int i = 0; i < XmCommon.TRX_NAME_KEY.length; i++) + { + String key = XmCommon.TRX_NAME_KEY[i]; + String value = req.getParameter(key); + if (value != null) + { + if (param == null) + param = key + "=" + value; + else + param = param + "&" + key + "=" + value; + } + } + if (param != null) + { + if (XmCommon.TRX_NAME_TYPE == TRX_PARAM_NOURI) + name = param; + else + name = req.getRequestURI() + "?" + param; + } + break; + case TRX_ATTRIBUTRE: + name = (String) req.getAttribute(XmCommon.TRX_NAME_KEY[0]); + break; + } + return name; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] obj) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] obj) + { + return null; + } + + public String getIpAddr(String ip, Object obj) + { + return ip; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + String name = null; + switch (XmCommon.TRX_LOGIN_TYPE) + { + case APP_ATTRIBUTRE: + Object o1 = session.getAttribute(XmCommon.TRX_LOGIN_KEY); + if (o1 instanceof java.lang.String) + name = (String) o1; + break; + case APP_COOKIE: + name = XmCommon.Cookie_getValue(req, XmCommon.TRX_LOGIN_KEY); + break; + } + return name; + } + + /* getName **************************************************** */ + public String getServletName(Object svc, XmHttpRequest req) + { + Object o1; + if ((o1 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o1; + else if ((o1 = XmClass.getMethod(svc, "getServletConfig")) != null) + { + Object o2; + if ((o2 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o2; + } + return null; + } + + public String getLastUri(Object svc, XmHttpRequest req) + { + String name = req.getRequestURI(); + if (name.indexOf(XmCommon.TRX_NAME_KEY[0]) > -1) + { + int i = name.lastIndexOf('/'); + if (i > -1) + return name.substring(i + 1); + else + return name; + } + return name; + } + + public String getXFrame(String value) + { + try + { + String s = value.substring(12); + String src = new String(new sun.misc.BASE64Decoder().decodeBuffer(s)); + + int ix = 0; + String item[] = new String[6]; + for (int i = 0; i < 6; i++) + { + ix++; + int len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + ix = ix + 4 + len; + + len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + item[i] = src.substring(ix + 4, ix + 4 + len); + ix = ix + 4 + len; + } + return item[0] + "/" + item[1]; + } + catch (Throwable t) + { + return null; + } + } + + /* getName **************************************************** */ + public String getProFrameV1(XmHttpRequest req, Object obj) + { + return (String) XmClass.getMethod(obj, "getPfmTxCode"); + } + + public String getProFrameV2(XmHttpRequest req, Object obj) + { + String name = req.getRequestURI(); + name = name + "+" + XmClass.getMethod(obj, "getPfmFnCd") + "+" + XmClass.getMethod(obj, "getPfmTxCode"); + return name; + } + + public String getProFrameV3(XmHttpRequest req, Object obj) + { + return XmClass.getMethod(obj, "getPfmAppName") + "+" + XmClass.getMethod(obj, "getPfmSvcName") + "+" + XmClass.getMethod(obj, "getPfmFnName"); + } + + public String getNICSV1(XmHttpRequest req, Object obj) + { + return (String) obj; + } + + public String getTITV1(XmHttpRequest req, Object obj) + { + int count = ((Integer) XmClass.getMethod(obj, "getRowCount")).intValue(); + String[] values = new String[count]; + Class[] acls = new Class[] { Integer.TYPE, String.class }; + for (int i = 0; i < count; i++) + { + Object[] aobj = new Object[] { new Integer(i), "SQL_ID" }; + values[i] = (String) XmClass.getMethod(obj, "getColumnAsString", acls, aobj); + } + return XmUtil.toString(values, ","); + } + + /* getIpAddr ************************************************** */ + public String getPfmClntIp(Object obj, String ip) + { + return (String) XmClass.getMethod(obj, "getPfmClntIp"); + } + + /* getLoginName *********************************************** */ + public void xHeaderInfo(IThread thread, XmHttpRequest req); + { + String query = req.getQueryString(); + String url = req.getRequestURL() + (query == null ? "" : new StringBuilder().append("?").append(query).toString()); + thread.udp().xHeaderInfo(thread.tid(), "qa.url", (byte)1, url); + } +} diff --git a/intermax/2208.06_type3/jspd/build-jdk/build.bat b/intermax/2208.06_type3/jspd/build-jdk/build.bat new file mode 100755 index 0000000..001ec3f --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-jdk/build.bat @@ -0,0 +1,8 @@ +set JSPD_HOME= +set JAVA_HOME= +set WAS_LIB= +set ANT_HOME=..\..\ant +set PATH=%ANT_HOME%\bin;%JAVA_HOME%\bin;%PATH% +ant -DWAS_LIB=%WAS_LIB% -DJSPD_HOME=%JSPD_HOME% $1 + +rem %JAVA_HOME%\bin\java -classpath %ANT_HOME%\lib\ant-launcher.jar -Dant.home=%ANT_HOME% -Dant.library.dir==%ANT_HOME%\lib org.apache.tools.ant.launch.Launcher -DWAS_LIB=%WAS_LIB% -DJSPD_HOME=%JSPD_HOME% %1 diff --git a/intermax/2208.06_type3/jspd/build-jdk/build.sh b/intermax/2208.06_type3/jspd/build-jdk/build.sh new file mode 100755 index 0000000..a20a6be --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-jdk/build.sh @@ -0,0 +1,8 @@ +export JSPD_HOME= +export JAVA_HOME= +export WAS_LIB= +export ANT_HOME=../../ant +export PATH=${ANT_HOME}/bin:${JAVA_HOME}/bin:${PATH} +ant -DWAS_LIB=${WAS_LIB} -DJSPD_HOME=${JSPD_HOME} $1 + +#${JAVA_HOME}/bin/java -classpath ${ANT_HOME}/lib/ant-launcher.jar -Dant.home=${ANT_HOME} -Dant.library.dir==${ANT_HOME}/lib org.apache.tools.ant.launch.Launcher -DWAS_LIB=${WAS_LIB} -DJSPD_HOME=${JSPD_HOME} $1 diff --git a/intermax/2208.06_type3/jspd/build-jdk/build.xml b/intermax/2208.06_type3/jspd/build-jdk/build.xml new file mode 100755 index 0000000..f6f5a85 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-jdk/build.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/intermax/2208.06_type3/jspd/build-rt/aj-rt.jar b/intermax/2208.06_type3/jspd/build-rt/aj-rt.jar new file mode 100755 index 0000000..4fdb0a8 Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aj-rt.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.5.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.5.3.jar new file mode 100755 index 0000000..72662db Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.5.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.6.8.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.6.8.jar new file mode 100755 index 0000000..2bdab5a Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.6.8.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.7.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.7.3.jar new file mode 100755 index 0000000..ef9fe4b Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.7.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.8.9.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.8.9.jar new file mode 100755 index 0000000..9fb7f88 Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjrt-1.8.9.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.5.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.5.3.jar new file mode 100755 index 0000000..d7f205d Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.5.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.6.8.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.6.8.jar new file mode 100755 index 0000000..5105aac Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.6.8.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.7.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.7.3.jar new file mode 100755 index 0000000..adc91db Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.7.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.8.9.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.8.9.jar new file mode 100755 index 0000000..800cb25 Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjtools-1.8.9.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.5.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.5.3.jar new file mode 100755 index 0000000..7574b27 Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.5.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.6.8.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.6.8.jar new file mode 100755 index 0000000..8e0dbcc Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.6.8.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.7.3.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.7.3.jar new file mode 100755 index 0000000..7ecd603 Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.7.3.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.8.9.jar b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.8.9.jar new file mode 100755 index 0000000..87f5c8f Binary files /dev/null and b/intermax/2208.06_type3/jspd/build-rt/aspectjweaver-1.8.9.jar differ diff --git a/intermax/2208.06_type3/jspd/build-rt/build.bat b/intermax/2208.06_type3/jspd/build-rt/build.bat new file mode 100755 index 0000000..1baf98f --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-rt/build.bat @@ -0,0 +1,7 @@ +set JAVA_HOME= +set ANT_HOME=..\..\ant +set PATH=%PATH%;%ANT_HOME%\bin +set JDK_FILE=C:\Program Files\Java\jdk1.7.0_80\jre\lib\rt.jar +ant -DJDK_FILE= "%JDK_FILE%" %1 + +rem "%JAVA_HOME%"\bin\java -classpath %ANT_HOME%\lib\ant-launcher.jar -Dant.home=%ANT_HOME% -Dant.library.dir==%ANT_HOME%\lib org.apache.tools.ant.launch.Launcher -DJDK_FILE= "%JDK_FILE%" %1 diff --git a/intermax/2208.06_type3/jspd/build-rt/build.sh b/intermax/2208.06_type3/jspd/build-rt/build.sh new file mode 100755 index 0000000..5fae815 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-rt/build.sh @@ -0,0 +1,7 @@ +export JAVA_HOME= +export ANT_HOME=../../ant +export PATH=${ANT_HOME}/bin:${JAVA_HOME}/bin:${PATH} +export JDK_FILE=/usr/java/jdk1.7.0_80/jre/lib/rt.jar +ant -DJDK_FILE="$JDK_FILE" $1 + +#${JAVA_HOME}/bin/java -classpath ${ANT_HOME}/lib/ant-launcher.jar -Dant.home=${ANT_HOME} -Dant.library.dir==${ANT_HOME}/lib org.apache.tools.ant.launch.Launcher -DJDK_FILE="$JDK_FILE" $1 diff --git a/intermax/2208.06_type3/jspd/build-rt/build.xml b/intermax/2208.06_type3/jspd/build-rt/build.xml new file mode 100755 index 0000000..ea54e21 --- /dev/null +++ b/intermax/2208.06_type3/jspd/build-rt/build.xml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + driver.install JDK_FILE - ${jdk.file} + driver.install RT_PARAM - ${rt.param} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/intermax/2208.06_type3/jspd/cfg/agent/imx.dbm b/intermax/2208.06_type3/jspd/cfg/agent/imx.dbm new file mode 100755 index 0000000..b5feef5 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/imx.dbm @@ -0,0 +1,3 @@ +# IMXDBM ADDR=DB ADDR +# ex) 127.0.0.1:2604=127.0.0.1.1521.ora11203 +# ex) 127.0.0.1:2605=127.0.0.1.1522.ora11204 diff --git a/intermax/2208.06_type3/jspd/cfg/agent/imx.prop b/intermax/2208.06_type3/jspd/cfg/agent/imx.prop new file mode 100755 index 0000000..498ecef --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/imx.prop @@ -0,0 +1,255 @@ +############################################################################### +# COMMON OPTIONS # +############################################################################### + +######################################### +# NOT USED +# # 2: garbage clean log, 4: udp packet detail log, 8: udp packet detail log for send to imxdbm +# # 16: topology info detail log +# LOG_OPT=0 +# +# # 1: prepare, 2: execute, 4: execute end, 8: jsp end, 16: active txn signal +# # 32: remotecall, 64: userdata, 128: real user monitor +# DEBUG=0 +# NOT USED +######################################### + +# common +# 1: cpu/core*, 2: exclude iowait +# linux +# 4: free memory = MemFree + Buffers + Cached +# sun +# 4: exclude network info +# aix +# 8: VP mode for cpu (Shared-SMT) +# 16(0x10): cpu/online_vcpus* (Shared-SMT) +# 32(0x20): no virtual free memory (default free memory = (real_total - virt_active) * 4 (4K Pages)) +# 32768(0x8000): use perfstat_pagingspace (paging space usage) +CPU100=1 + +#Packet Queue Max Count +#MAX_UDP_QUEUE=20000 +#MAX_TCP_QUEUE=2000 + +# info_log interval (sec) +# default: imxosm = 300 , imxtxn = 60 +#INTERVAL_INFO_LOG= + +# DG TCP Reconnect interval (ms) +# defaut: 5000 +DG_RECONNECT_DELAY_TIME=5000 + +#if WAS process name is not a java +#WAS_PROCESS_NAME= + +############################################################################### +# IMXOSM COMMON OPTIONS # +############################################################################### + +#0 : DG 2016.12.19 before version +#1 : DG 2016.12.19 after version +# Gather Version(yyyymmdd) +#IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE= + +# 0 : disable_osm_standalone, 1 : enable_osmstandalone +#ENABLE_OSM_STANDALONE=0 + +# Collect NFS(Filesystem) type(Y:collect,N:not collect(default)) +#COLLECT_FS_NFS= + +# Use the option to run more than one imxosm on the local server. +# (preventing duplication collect of processes) +# 0 : master(default), 1 : slave +#IMX_OSM_SLAVE= + +# Custom hostkey (hostkey = org_hostkey + sys_host + OSM_MODULE_KEY) +#OSM_MODULE_KEY= + +# Windows Global Nameing MMF +# 0: Not use(default), 1: use global name mmf(.NET) +#USE_GLOBAL_NAMING_MMF= + +# update manager setting +# target api server ip +API_SERVER_IP= + +# target api server port +API_SERVER_PORT= + +# update check interval setting (sec) +UPDATE_CHECK_INTERVAL= + +# Maximum number of package versions to keep +BACKUP_PATH_COUNT= + +############################################################################### +# IMXOSM TMAXTP OPTIONS # +############################################################################### + +# imxtpm_tmax Config file path +TP_CONF_DIR= + +# imxtpm_tmax Config file name (default: mxtpl.conf) +TP_CONF_FILE_NAME=mxtpl.conf + +# imxtpm_tmax env file path for imxosm +TP_TMAX_ENV_DIR= + +# imxtpm_tmax env file name (default: tmax.env) +TP_TMAX_ENV_FILE_NAME=tmax.env + +# tmax tp process user name +TP_PROCESS_USER=tmax + +# if filename = A/B/SLOG.123456 +# set SLOG_DIR = A/B +SLOG_DIR= + +# If the string is included in the SLOG, the data line is skipped. +# set SLOG_FILTER_TEXT = abc , def, ghi , ... +#SLOG_FILTER_TEXT + +# tpcall (tmadmin data) interval second +TPCALL_INTERVAL=10 + +# The number of failures of TPCALL sending an error alarm +TPCALL_ERROR_REPEAT=3 + +# Skip processing for an active transaction that is longer than the set value.(ms) +ACTIVE_ELAPSE_LIMIT=0 + +# Skip active transactions shorter than this value. +ACTIVE_ELAPSE_TIME=0 + +# 0: OFF (default) 1: shm active txn logging (Dynamic Option) +TP_SHM_DEBUG=0 + +## TPCALL_DEBUG_TYPE (Dynamic Option) +## (ex: TP_CALL_DEBUG_TYPE=12 --> MXTSVGCONF(4), MXTSVRCONF(8) logging) +## 0: NONE(OFF)(default) +## 1: MXTDOMAINCONF +## 2: MXTNODECONF +## 4: MXTSVGCONF +## 8: MXTSVRCONF +## 16: MXTSVCCONF +## 32: MXTSVRSTAT +## 64: MXTSPRSTATEX +## 128: MXTSVCSTATEX +## 256: MXTCLIINFO +TPCALL_DEBUG=0 + +## The selected service does not perform. +## 0: all gathering.(default) +## The remaining values are the same as in the "TPCALL_DEBUG_TYPE" option above +## (ex: TP_NOTGATHER_STAT=12 --> MXTSVCCONF(4), MXTSVRCONF(8) Do not collect data.) +TP_NOTGATHER_STAT=0 + +############################################################################### +# IMXOSM TUXEDO OPTIONS # +############################################################################### + +# imxtpm_tuxedo Config file path +TUX_CONF_DIR=/home/tuxedo/tm_agent + +# imxtpm_tuxedo Config file name (default: mxtup.conf) +TUX_CONF_FILE_NAME=mxtup.conf + +# if filename = A/B/ULOG.123456 +# set TUX_ULOG_FILE = A/B/ULOG +TUX_ULOG_FILE=$TUXDIR/ULOG + +# library debug on/off +TUX_LIB_DEBUG=0 + +# stat data interval +TUX_STAT_INTERVAL=10 + +# 0 : All, 1 : stat off 2: server off 4:service off 8: client off 16:queue off +TUX_NOTGATHER_STAT=0 + +# 0 : off, 1 : stat on 2: server on 4:service on 8: client on 16:queue on +TUX_STAT_DEBUG=0 + +############################################################################### +# IMXOSM C API OPTIONS # +############################################################################### + +# imxosm shared memory read interval (ms) +APIM_READ_INTERVAL=1000 + +# imxosm debug log setting +APIM_DEBUG_LOG=0 + + +############################################################################### +# IMXTXN OPTIONS # +############################################################################### + +# Packet Debugging Options ( Multiple selections are available ) +# [ 0] ALLOFF +# [ 1] TRANSACTION_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END/JSP_END ) +# [ 2] SQL_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END ) +# [ 3] SQL_TEXT ( SQL_TEXT ) +# [ 4] ACTIVE_TXN ( ACTIVE_TXN_SIGNAL ) +# [ 5] REMOTECALL_PROCESSING ( REMOTECALL ) +# Warning) Do not use together No. 1 and No. 2. +# ex) XM_LOG_OPT=1,3,4 +XM_LOG_OPT=0 + +# imxtxn worker thread count +WORKING_THREAD_COUNT=1 + +# Gather Version(yyyymmdd) +#IMX_DATAGATHER_PACKET_VERSION= + +# Send Packet to imxdbm (default:1, 0:OFF 1:ON) +SEND_UDP_TO_DBM=0 + +# 0 : disable_txn_standalone, 1 : enable_txnstandalone +ENABLE_TXN_STANDALONE=0 + +# Collect only sql information with longer SQL elapse time.(ms) +SQL_DETAIL_ELAPSE_LIMIT=0 + + + +############################################################################### +# IMXDBM OPTIONS # +############################################################################### + +# env server port +ENV_PORT=2405 + +# DB Address, copy address from imx.dbm file. +# DB_ADDR=127.0.0.1.1521.orcl (IP.PORT.SID) + +# session status filter +# 1: active, 2: exclude inactive background, 3: both +SESSION_LIST_OPT=1 + + +############################################################################### +# IMXTXN SITE OPTIONS # +############################################################################### + +# 0: send all, 0<: send limit(per sec), 10000(defualt, max): max send count +#MAX_SEND_BIND_LIST_COUNT=0 + +# Add sql bind space (default:1, OFF:0 ON:1) +#INPUT_SPACE_SQL_BIND=1 + +# SQL TEXT TRIM (HEAD) (default:0, HEAD+TAIL:0 HEAD:1) +#SQL_LEFT_TRIM=0 + +# USE CONVERT SQL TEXT UTF8->EUCKR (default:0, OFF:0 ON:1) +#SQL_TEXT_CONVERT_UTF8_EUCKR=0 + +# txn sql_text hash count (default: 5000) +#MAX_SQL_TEXT_HASH_COUNT=5000 + +# USE Topology Key1, Key3, dest (default:0) +#USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 + +# Use open_addr for topology address (default:0, OFF:0 ON:1, if USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 this option is ignore) +#USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR=0 + diff --git a/intermax/2208.06_type3/jspd/cfg/agent/imxlog.conf b/intermax/2208.06_type3/jspd/cfg/agent/imxlog.conf new file mode 100755 index 0000000..1c57518 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/imxlog.conf @@ -0,0 +1,28 @@ + +[ imxosm ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxosm.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ imxtxn ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxtxn.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ debug_console ] +output_type = stdout +level = trace +header_flag = time + + + diff --git a/intermax/2208.06_type3/jspd/cfg/agent/jspd.alias b/intermax/2208.06_type3/jspd/cfg/agent/jspd.alias new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/cfg/agent/jspd.home b/intermax/2208.06_type3/jspd/cfg/agent/jspd.home new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop new file mode 100755 index 0000000..b976365 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop @@ -0,0 +1,41 @@ +# ${DG_IP}:${DG_PORT},${DG_IP}:${DG_PORT} ... (max:10)) +# default: NULL +DGADDR_LIST= + +# If DG connection fails by the set value, "imxosm" attempts to connect sequentially to the value in "DG_ADDR_LIST" ( default:5) +DGADDR_LIST_RECONNECT_COUNT=5 + +# ${IP}:${TCP_PORT} +WR_ADDR=10.0.2.15:1314 +#WR_ADDR= + +# ${UDP_PORT|UDP_PORT} +TXN_ADDR=8404 + +# ${UDP_PORT|UDP_PORT} +UTS_ADDR=8504 + +# default 10000 +TXN_REGISTRY_SIZE= + +# default 200000 +MTD_REGISTRY_SIZE= + +# default 200 +MTD_BUFFER_COUNT= + +# default 60KB +MTD_MAX_SIZE= + +# default false +REMOVE_JDBC_ADVICE= + +# default false +REMOVE_JDBC_BIND_ADVICE= + +# default false +DISABLE_SQL_SID= + +# default true +USE_TCP_SEND_HEADER= + diff --git a/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.ini b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.ini new file mode 100755 index 0000000..b68d0eb --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.ini @@ -0,0 +1,443 @@ +# txn name 0:default, 1:parameter, 2:param_nouri, 3:attribute +TRX_NAME_TYPE= + +# txn key +TRX_NAME_KEY= + +# txn login name 0:default, 1:attribute, 2:cookie +TRX_LOGIN_TYPE= + +# txn login key +TRX_LOGIN_KEY= + +# default 0sec +APP_SLEEP= + +# default 400, max 400 +ACTIVE_TOP_COUNT= + +# default 0ms +ACTIVE_ELAPSE_TIME= + +# ${TXNNAME}:${TXNTIME(ms)},${TXNNAME}:${TXNTIME(ms)} +CURR_TRACE_TXN=*:3000 + +# default 100, 0~100 +CURR_TRACE_LEVEL= + +# default true +TRACE_JDBC= + +# default false +TRACE_SIMPLE_METHOD= + +# default false +METHOD_DEBUG= + +# eg) gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 +EXCLUDE_SERVICE=gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 + +# eg) gif, js, css +EXCLUDE_SERVICE_AT_END_TIME= + +# eg) type.Exception +INCLUDE_EXCEPTION= + +# eg) type.Exception +EXCLUDE_EXCEPTION= + +# error.jsp +REDIRECT_URL= + +# default false +RESP_HTML_SCRIPT= + +# default 50ms +RESP_HTML_ELAPSE_TIME= + +# eg) .*\.jsp +RESP_HTML_SCRIPT_TARGET=.*\.jsp + +# default false +RESP_HEADER_TID= + +# default false +USE_TRACE_CLIENT_TIME= + +# default empty string +TRACE_CLIENT_TIME_POSTFIX= + +# eg) 192.168.0.10:8082 +TRACE_CLIENT_TIME_ADDR= + +# default true +RT_RMI= + +# default ext +RT_RMI_VENDOR= + +# default 3: normal, 1: pkey, 2: ckey, 3: pckey +RT_RMI_TYPE= + +# default 0ms +RT_RMI_ELAPSE_TIME= + +# default 0x00 eg) FILE_OPEN,FILE_CLOSE +RT_FILE= + +# default 0x10 eg) SOCKET_OPEN,SOCKET_CLOSE +RT_SOCKET= + +# default false +USE_MTD_EXT= + +# default false +MTD_PARAM_TRACE= + +# default 100000 +MTD_LIMIT= + +# default 2500 +MTD_BUFFER_SIZE= + +# default 100 +MTD_EXCEPTION_BUFFER_SIZE= + +# default 100 +MTD_STACK_BUFFER_SIZE= + +# default 20 +LIMIT_SQL= + +# default true +USE_SQL_ELLIPSIS= + +# default 2000, max MTD_BUFFER_SIZE +TXN_SQL_LIMIT_COUNT= + +# default 2048, max 8192 +BIND_SIZE= + +# default 50ms +BIND_ELAPSE_TIME= + +# default true +TXN_CPU_TIME= + +# default true +TXN_MEMORY= + +# default false +TXN_CPU_CORE= + +# default 0 +THROW_TXN_FETCH_COUNT= + +# default 0 +THROW_SQL_FETCH_COUNT= + +# eg) gif, js, css +THROW_EXCLUDE_SERVICE= + +# ${ALERT}:${RESTART}:${LEVEL},${ALERT}:${RESTART}:${LEVEL} +LOG_ALERT=1:java.lang.OutOfMemoryError,2:container {0} booted + +# default false +USE_SESSIONID_FOR_WEBID= + +# default false +ENABLE_WEB_ID_WHEN_NO_USERAGENT= + +# default false +USE_RUNTIME_REDEFINE= + +# default false +USE_RUNTIME_REDEFINE_HTTP_REMOTE= + +# default true +USE_JMX= + +# default true +DISABLE_JDBC_ALARM= + +# default false +USE_TRACE_COLLECTION_LEAK= + +# default 1000 +TRACE_COLLECTION_SIZE= + +# default 10000 +TRACE_COLLECTION_STACKTRACE_SIZE= + +# default 600000ms(10minutes) +TRACE_COLLECTION_REPORT_PERIOD= + +# default 3 (Min 3, Max 99) +IMXOSM_CHECK_COUNT= + +# default true +USE_NEW_IMXTXN_SQL_PACKET= + +# default 1000ms (Min 500, Max 60000) +DG_RECONNECT_DELAY_TIME= + +# default false +USE_SQL_SEQ= + +# default false +TRACE_FETCH_METHOD= + +# default false +TRACE_MONGO_FETCH= + +# eg) replace number patterns [0-9]+ +REPLACE_URL_PATTERNS= + +# eg) prefix1, prefix2 +EXCLUDE_TXCODE= + +# eg) thread name pattern (startsWith) +EXCLUDE_THREAD= + +# default false +USE_ETOE_ONLY= + +# default false +DISABLE_ACTIVE_TXN= + +# default false +USE_METHOD_LIST= + +# default false +USE_METHOD_SEQ= + +# default false +TRACE_METHOD_MEMORY= + +# default false +TRACE_METHOD_CPUTIME= + +# default true +TRACE_DBPOOL_NAME= + +# default false +TRACE_THREAD_NAME= + +# default false +DISABLE_ROOT_METHOD= + +# default 128 +MTD_ERROR_LIMIT= + +# default 1(sec) +WASID_CHECK_TIMEOUT= + +# default false +DISABLE_JDBC_CONNECTION_FAIL= + +# default false +TRX_NAME_USE_ENCODING= + +# default ISO-8859-1 +TRX_NAME_ENCODING_FROM= + +# default UTF-8 +TRX_NAME_ENCODING_TO= + +# default empty string +TRX_IP_KEY= + +# txn error 0: default, 1: response(500), 2: response(400) +TRX_ERR_TYPE= + +# default 0 +TXN_ELAPSE_TIME= + +# default 0 +MTD_ELAPSE_TIME= + +# default false +INCLUDE_EXCEPTION_FOR_ALARM= + +# default false +CONVERT_SQL_ASCII_TO_KSC5601= + +# default null +CONVERT_SQL_ASCII_TO= + +# default null +CONVERT_SQL_TEXT_ENCODING_FROM= + +# default null +CONVERT_SQL_TEXT_ENCODING_TO= + +# default false +ENABLE_UPDATE_WEBID_COOKIE_TIME= + +# default 0 +TXN_NAME_SET_INDEX= + +# default 0 +TXN_NAME_SET_INDEX2= + +# default 0 +TXN_NAME_APPEND_INDEX= + +# default false +USE_NONE_TXNID_PACKET= + +# default false +USE_NONE_GAPTIME_PACKET= + +# default false +DISABLE_SQL_SID= + +# default false +DISABLE_SQL_SID_ORACLE= + +# default false +DISABLE_SQL_SID_DB2= + +# default false +DISABLE_SQL_SID_MSSQL= + +# default false +DISABLE_SQL_SID_TIBERO= + +# default false +DISABLE_SQL_FETCH= + +# default false +DISABLE_SQL_BIND= + +# default false +ENABLE_ENCRYPT_SQL_BIND= + +# default false +ENABLE_ENCRYPT_LOGIN_NAME= + +# default 0 +TYPE_AUTOMATIC_WASID=3 + +# default empty string +K8S_URL_KEY= + +# default 2 (Min 2, Max 10) +THREAD_DUMP_MAX_SIZE= + +# default log eg) log or AbsolutePath +LOG_PATH= + +# default false +GET_SID_WHEN_STMT= + +# default 600000ms(10minutes) +GET_SID_WHEN_STMT_LIMIT= + +# default false +CHANGE_DB2_SID_QUERY= + +# default false +COMPRESS_SQL= + +# default false +USE_ORACLE_RAC= + +# default false +USE_TIBERO_TAC= + +# deprecated. default false +USE_TRACE_ORACLE= + +# default false +USE_TRACE_ORACLE2= + +# default false +USE_TRACE_ORACLE2_CLEAR_PING= + +# default false +USE_TRACE_ORACLE3= + +# default false +USE_TRACE_DB2= + +# default false +USE_TRACE_MSSQL= + +# default false +USE_TRACE_TIBERO= + +# default 200 +CONNECTION_CLASS_LIMIT= + +# default 2000 +CONNECTION_LIMIT= + +# default 60927 +SQL_TEXT_BUFFER_SIZE= + +# default false +RMI_GET_PARAM= + +# default 1024 +MONGO_BIND_SIZE= + +# default empty string +PLC_MESSAGE= + +# default empty string +RUM_MESSAGE= + +# default false +USE_NONE_ASYNCKEY_IMXUTS_PACKET= + +# default false +SEND_OOM_ALARM_DIRECTLY= + +# default false +USE_JAR_LIST= + +# default false +USE_TRX_NAME_WHEN_LEAVE= + +# default true +DISABLE_WEBID= + +# default true +DISABLE_DETAIL_DB_INFO= + +# default true +ENABLE_TRACE_JSP_CLASS= + +# default false +DISABLE_EXCLUDE_THREAD= + +# default false +DISABLE_OSM= + +# default true +ENABLE_RELOAD_ADVICE= + +# default false +ENABLE_BATCH_MODE= + +# default 3600 +RUM_SCRIPT_INJECTION_CLIENT_RESET_SECOND= + +# default -1 +RUM_SCRIPT_INJECTION_CLIENT_COUNT= + +# default false +USE_XRT_HANDLE= + +# default false +USE_LONG_SQL= + +# default false +DISABLE_SQL= + +# default false +ENABLE_POOL_NAME_GET_BY_CONN= + +# default 0x000000000 eg) RMI,HTML,RESPONSE,CLASS,GC,UDP,TCP,TRACE,DEBUG +DEBUG=0x000000000 diff --git a/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.org b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.org new file mode 100755 index 0000000..353b143 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.org @@ -0,0 +1,41 @@ +# ${DG_IP}:${DG_PORT},${DG_IP}:${DG_PORT} ... (max:10)) +# default: NULL +DGADDR_LIST= + +# If DG connection fails by the set value, "imxosm" attempts to connect sequentially to the value in "DG_ADDR_LIST" ( default:5) +DGADDR_LIST_RECONNECT_COUNT=5 + +# ${IP}:${TCP_PORT} +WR_ADDR=127.0.0.1:1314 +#WR_ADDR= + +# ${UDP_PORT|UDP_PORT} +TXN_ADDR=8404 + +# ${UDP_PORT|UDP_PORT} +UTS_ADDR=8504 + +# default 10000 +TXN_REGISTRY_SIZE= + +# default 200000 +MTD_REGISTRY_SIZE= + +# default 200 +MTD_BUFFER_COUNT= + +# default 60KB +MTD_MAX_SIZE= + +# default false +REMOVE_JDBC_ADVICE= + +# default false +REMOVE_JDBC_BIND_ADVICE= + +# default false +DISABLE_SQL_SID= + +# default true +USE_TCP_SEND_HEADER= + diff --git a/intermax/2208.06_type3/jspd/cfg/agent/wsm.conf b/intermax/2208.06_type3/jspd/cfg/agent/wsm.conf new file mode 100755 index 0000000..7c5cef4 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/agent/wsm.conf @@ -0,0 +1,110 @@ +# server id +server_id=1 +# server type // 0:unknown 1:apache 2:ngnix 3:iis 4:webtob +server_type=0 +# server process name +server_process= +# server process argument +server_process_argument= +# server_process_user +server_process_user= + +# default 1000(ms) +completed_send_interval= +# default 3000(ms) +active_send_interval= +# default 3000(ms) +os_stat_interval= +# default 20, max 300 +active_detail_count_limit= + +# apache mod enable, default false +extend_module_enable= +# apache mod monitor port, default 10245 +extend_module_monitor_port= + +# libpcap loop back address(ex 127.0.0.1) skip, default false +pcap_nic_local_skip= +# libpcap network device absolute path, default empty string(ex:/dev/) +pcap_nic_path= +# libpcap buffer size, default 52428800(byte) +pcap_buffer_size= +# libpcap promiscous mode, default false +pcap_promiscuous_mode= +# libpcap read timeout, default 100(ms) +pcap_read_timeout= +# libpcap snaplen, default 1024(byte) +pcap_snaplen= +# libpcap immediate mode, default false +pcap_immediate_mode= +# libpcap filter optimize, default true +pcap_filter_optimize= +# libpcap packet monitoring target ip(ex 192.168.0.1) +pcap_monitor_ip=127.0.0.1 +# capture loop sleep skip, default false +pcap_loop_sleep_skip= + +# default false +http_enable= +# ex) http_monitor_port=80,8080,8082 +http_monitor_port=8080 +# http key type, default 1 // 0:ACK 1:PORT +http_key_type= + +#webtob jsv, default false +wtb_jsv_enable= +# ex) wtb_jsv_monitor_port=9900,9901,9902 +wtb_jsv_monitor_port=0 +# jsv wjp2, default false +wtb_jsv_wjp2= +# jsv wjp2 seq type long, default true +wtb_jsv_wjp2_long_seq= +# jsv key type, default 1 // 0:ACK 1:PORT 2:SEQ +wtb_jsv_key_type= + +# webtob https, default false +wtb_https_enable= +# default 1355 +wtb_https_listen_port= +# ex) wtb_https_monitor_port=443,8443 +wtb_https_monitor_port=443 + +# webtob wsadmin, default false +wtb_wsadmin_enable= +# default 5000(ms) +wtb_wsadmin_interval= + +# default 600000(ms) +limit_session_time= + +# filter_ext = js,css,jpg,gif,jpeg,png +filter_ext=js,css,jpg,gif,jpeg,png,ico + +# filter_txn_name (-:exclude, +:force include) ex) -/aaa,+/aaa/bbb +filter_txn_name= + +# default euc-kr +alternative_encoding= + +# ex) replace_url_patterns=[0-9]+ +replace_url_patterns= + +# ex) wtb_wsadmin_dir=/webtob/bin +wtb_wsadmin_dir= + +# ex) log_path=/log/wsm +log_path= +# default info +log_level= +# default 30 +log_max_history= +# default 10MB +log_max_file_size= + +# default false +use_url_decode= + +# default true +statistics_enable= +# default 60000 +statistics_period= diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.auto.regist.json b/intermax/2208.06_type3/jspd/cfg/jspd.auto.regist.json new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.file.history b/intermax/2208.06_type3/jspd/cfg/jspd.file.history new file mode 100755 index 0000000..9a0e5ad --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.file.history @@ -0,0 +1 @@ +#D:\dump1.txt diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.jdbc.advice b/intermax/2208.06_type3/jspd/cfg/jspd.jdbc.advice new file mode 100755 index 0000000..8fea821 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.jdbc.advice @@ -0,0 +1,45 @@ +poolClose@com.exem.weave.sql.XmPoolClose +ibatisClose@com.exem.weave.sql.XmIbatisClose +#jdbc@com.exem.weave.sql.XmJdbc + +########## POOL ########## + +poolClose=weblogic/jdbc/rmi/SerialConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTAConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTSConnection.close()V +poolClose=weblogic/jdbc/wrapper/PoolConnection.close()V + +ibatisClose=com/ibatis/common/jdbc/SimpleDataSource.pushConnection(Lcom/ibatis/common/jdbc/SimpleDataSource$SimplePooledConnection;)V + +########## JDBC ########## + +### db2jcc ### +### Note: Enable both options ### +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,XADATASOURCE:com/ibm/db2/jcc/DB2XADataSource,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/conn,CALLABLE:com/ibm/db2/jcc/cstmt,PREPARE:com/ibm/db2/jcc/pstmt,STATEMENT:com/ibm/db2/jcc/stmt,RESULTSET:com/ibm/db2/jcc/resultset +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/am/Connection,PREPARE:com/ibm/db2/jcc/am/jo,STATEMENT:com/ibm/db2/jcc/am/io,RESULTSET:com/ibm/db2/jcc/am/ResultSet + +### jtds-1.2 ### +#jdbc=DRIVER:net/sourceforge/jtds/jdbc/Driver,POOLDATASOURCE:net/sourceforge/jtds/jdbcx/JtdsDataSource,CONNECTION:net/sourceforge/jtds/jdbc/ConnectionJDBC2,CALLABLE:net/sourceforge/jtds/jdbc/JtdsCallableStatement,PREPARE:net/sourceforge/jtds/jdbc/JtdsPreparedStatement,STATEMENT:net/sourceforge/jtds/jdbc/JtdsStatement,RESULTSET:net/sourceforge/jtds/jdbc/JtdsResultSet,NEXT:true + +### edb-jdbc15 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc23/AbstractJdbc23ConnectionPoolDataSource,CONNECTION:com/edb/jdbc2/AbstractJdbc2Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### edb-jdbc16, edb-jdbc17 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/PGConnectionPoolDataSource,CONNECTION:com/edb/jdbc/PgConnection,CALLABLE:com/edb/jdbc/PgCallableStatement,PREPARE:com/edb/jdbc/PgPreparedStatement,STATEMENT:com/edb/jdbc/PgStatement,RESULTSET:com/edb/jdbc/PgResultSet,NEXT:true + +### another edb-jdbc16 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc4/AbstractJdbc4ConnectionPoolDataSource,CONNECTION:com/edb/jdbc4/Jdbc4Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### postgresql-42.2.5 ### +#jdbc=DRIVER:org/postgresql/Driver,POOLDATASOURCE:org/postgresql/ds/PGConnectionPoolDataSource,CONNECTION:org/postgresql/jdbc/PgConnection,CALLABLE:org/postgresql/jdbc/PgCallableStatement,PREPARE:org/postgresql/jdbc/PgPreparedStatement,STATEMENT:org/postgresql/jdbc/PgStatement,RESULTSET:org/postgresql/jdbc/PgResultSet,NEXT:true + +### mariadb-2.3.3 ### +### Note: Enable both options ### +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/BasePrepareStatement,PREPARE:org/mariadb/jdbc/ClientSidePreparedStatement,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/MariaDbPreparedStatementClient,PREPARE:org/mariadb/jdbc/MariaDbPreparedStatementClient,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true + +### mysql-connector-java-8.0.15 ### +#jdbc=DRIVER:com/mysql/cj/jdbc/NonRegisteringDriver,POOLDATASOURCE:com/mysql/cj/jdbc/MysqlDataSource,CONNECTION:com/mysql/cj/jdbc/ConnectionImpl,CALLABLE:com/mysql/cj/jdbc/CallableStatement,PREPARE:com/mysql/cj/jdbc/ClientPreparedStatement,STATEMENT:com/mysql/cj/jdbc/StatementImpl,RESULTSET:com/mysql/cj/jdbc/result/ResultSetImpl,NEXT:true + +### cubrid-10.1.3 ### +#jdbc=DRIVER:cubrid/jdbc/driver/CUBRIDDriver,POOLDATASOURCE:cubrid/jdbc/driver/CUBRIDDataSource,CONNECTION:cubrid/jdbc/driver/CUBRIDConnection,CALLABLE:cubrid/jdbc/driver/CUBRIDPreparedStatement,PREPARE:cubrid/jdbc/driver/CUBRIDPreparedStatement,STATEMENT:cubrid/jdbc/driver/CUBRIDStatement,RESULTSET:cubrid/jdbc/driver/CUBRIDResultSet,NEXT:true diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.local.advice b/intermax/2208.06_type3/jspd/cfg/jspd.local.advice new file mode 100755 index 0000000..7dd4d28 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.local.advice @@ -0,0 +1,14 @@ + +### 작성방법 +# 패키지 및 클래스 구분자는 slash(/)이며 클래스와 메소드는 dot(.)으로 구분한다. +# 강제포함, 제외, 포함 순으로 높은 우선순위를 갖는다. +# 강제포함은 exclamation mark(!), 제외는 dash(-)를 접두사로 붙여 표기한다. +# 와일드카드 문자(*)를 포함해 startWith, endWith 연산을 수행할 수 있다. +# 로드된 전체 클래스를 대상으로한 설정은 안정성 문제로 인해 동적 적용되지 않는다. + +### 작성예시 +# com/inzent.* +# -com/inzent/igate.* +# !com/inzent/igate/util.* + +!javax/servlet/http/HttpServlet.* \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.local.advice.all b/intermax/2208.06_type3/jspd/cfg/jspd.local.advice.all new file mode 100755 index 0000000..7e81c40 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.local.advice.all @@ -0,0 +1,47 @@ +#com/inzent.* +#-com/inzent/igate.* +#!com/inzent/igate/util.* +*.* +#!javax/servlet/http/HttpServlet.* + +-*log4j.* +-*logging.* +-*Loader + +-AOPProxy$ +-$Proxy* +-account/* +-antlr/* +-bsh/* +-com/* +-COM/* +-compressionFilters/* +-EDU/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jennifer/* +-jeus/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-net/* +-netscape/* +-oracle/* +-org/* +-schemacom_bea_xml/* +-signgate/* +-tmax/*webt/* +-weblogic/* +-wlstLibSample$ +-workshop +-ch/*qos/*logback/* +-elsoft/* diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.method.list b/intermax/2208.06_type3/jspd/cfg/jspd.method.list new file mode 100755 index 0000000..41cd497 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.method.list @@ -0,0 +1,66 @@ +#include +* + +#exclude +-javax/* +-java/* +-jrockit/* +-jdk/* +-com/exem/* +-org/bsp/* +-sun/* +-com/sun/* +-ibm/* +-com/ibm/* +-org/apache/* +-org/springframework/* +-com/google/* + +-*.toString()Ljava/lang/String; +-*.equals(Ljava/lang/Object;)Z +-*.hashCode()I +-*.()V +-*.()V +-*.clone()Ljava/lang/Object; +-*.finalize()V +-*.wait(J)V +-*.wait(JI)V +-*$* +-*_aroundBody* +-*__WL_* + +-*log4j* +-*logging* +-*Loader +-AOPProxy$* +-$Proxy* +-account/* +-antlr/* +-bsh/* +-compressionFilters/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-netscape/* +-oracle/* +-schemacom_bea_xml/* +-signgate/* +-weblogic/* +-wlstLibSample$* +-workshop* +-ch/qos/logback/* +-elsoft/* +-org/springframework/jdbc/datasource/TransactionAwareDataSourceProxy.* + +#forceInclude diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.other.advice b/intermax/2208.06_type3/jspd/cfg/jspd.other.advice new file mode 100755 index 0000000..da1ff0b --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.other.advice @@ -0,0 +1,62 @@ +txnProFrameV1@com.exem.weave.servlet.XmTxnProFrameV1 +txnNICSV1@com.exem.weave.servlet.XmTxnNICSV1 +txnTITV1@com.exem.weave.servlet.XmTxnTITV1 +#txnProFrameV3@com.exem.weave.servlet.XmTxnProFrameV3 + +jspWrite@com.exem.weave.servlet.XmJspWrite +jspWriteA@com.exem.weave.servlet.XmJspWriteA +jspWriteB@com.exem.weave.servlet.XmJspWriteB +jspWriteC@com.exem.weave.servlet.XmJspWriteC + +logRecord@com.exem.weave.io.XmLogRecord + +servletThrowable@com.exem.weave.io.XmServletThrowable + +temp@com.exem.weave.temp.XmTemp + +txnProFrameV1=com/tmax/proframe/object/CommonBufferImpl.setSystemHeader(Lcom/tmax/proframe/object/SystemHeader;)V + +txnNICSV1=com/tmax/proframe/object/SystemHeader.setPfmTxCode(Ljava/lang/String;)V + +txnTITV1=tit/service/miplatform/MiplatformBusinessContext.getInputDataset(Ljava/lang/String;)Lcom/tobesoft/platform/data/Dataset; + +#txnProFrameV3=proframe/core/context/ProFrameContext.getProFrameHeaderInstance()Lproframe/cto/ProFrameHeader; + +jspWrite=jeus/servlet/jsp/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=jeus/servlet/jsp2/runtime/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=weblogic/servlet/jsp/JspWriterImpl.print(Ljava/lang/String;)V + +jspWriteA=weblogic/servlet/jsp/JspWriterImpl.write([BLjava/lang/String;)V +jspWriteB=org/apache/jasper/runtime/JspWriterImpl.write(Ljava/lang/String;II)V +jspWriteC=org/apache/jasper/runtime/JspWriterImpl.write([CII)V + +logRecord=jeus/util/logging/JeusLogRecord.(Ljava/util/logging/Level;Ljava/lang/String;)V + +servletThrowable=javax/servlet/ServletException.getRootCause()Ljava/lang/Throwable; + +#XmTxnKepco@com.exem.weave.servlet.XmTxnKepco +#XmTxnKepco= +#getName(String txnName, Object[] obj) + +#XmSetTxnName@com.exem.weave.tx.XmSetTxnName +#XmSetTxnName= +#TXN_NAME_SET_INDEX=1~n +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnName2@com.exem.weave.tx.XmSetTxnName2 +#XmSetTxnName2= +#TXN_NAME_SET_INDEX2=1~n + +#XmSetTxnNameRet@com.exem.weave.tx.XmSetTxnNameRet +#XmSetTxnNameRet= +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnNameRet2@com.exem.weave.tx.XmSetTxnNameRet2 +#XmSetTxnNameRet2= + +#XmAppendTxnName@com.exem.weave.tx.XmAppendTxnName +#XmAppendTxnName= +#TXN_NAME_APPEND_INDEX=1~n + +#XmAppendTxnNameRet@com.exem.weave.tx.XmAppendTxnNameRet +#XmAppendTxnNameRet= \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.param.runtime b/intermax/2208.06_type3/jspd/cfg/jspd.param.runtime new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.plc.list b/intermax/2208.06_type3/jspd/cfg/jspd.plc.list new file mode 100755 index 0000000..466d714 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.plc.list @@ -0,0 +1,23 @@ +########################################### PLC 기능 ########################################### + +### 작성방법 +# [숫자] : 제어 기준 수치(기준 트랜잭션수) +# 접두사 ^(caret) : 차단할 트랜잭션명 +# 접두사 .*(dot asterisk) : 와일드 카드 +# 제어 기준은 여러 개를 입력할 수 있으며, 그 기준은 이 파일의 위에서 아래순으로 우선 적용된다. + +### 작성예시 +# [200] +# ^.*/select +# +# [100] +# ^.*oracle/select +# .*postgres/select +# +# [50] +# ^.*postgres/select +# +# 액티브 트랜잭션 수가 200 이상이면 /select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 oracle/select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 postgres/select로 끝나는 트랜잭션은 허용한다. +# 액티브 트랜잭션 수가 50 이상이면 postgres/select로 끝나는 모든 트랜잭션을 차단한다. \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.x.advice b/intermax/2208.06_type3/jspd/cfg/jspd.x.advice new file mode 100755 index 0000000..85337f6 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.x.advice @@ -0,0 +1,71 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpCallHeader@com.exem.weave.io.XmHttpCallHeader +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xInbound@com.exem.weave.io.XmXInbound +xOutbound@com.exem.weave.io.XmXOutbound +xReply@com.exem.weave.io.XmXReply +service@com.exem.weave.servlet.XmService + +########## APPLICATION ########## +#appService= + +#websphere 8.5 browser response time +#service=com/ibm/ws/webcontainer/filter/WebAppFilterManager.invokeFilters(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lcom/ibm/wsspi/webcontainer/servlet/IServletContext;Lcom/ibm/wsspi/webcontainer/RequestProcessor;Ljava/util/EnumSet;)Z + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/commons/httpclient/HttpMethodBase.execute(Lorg/apache/commons/httpclient/HttpState;Lorg/apache/commons/httpclient/HttpConnection;)I + +## soap ## +httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;II)Lorg/apache/soap/transport/TransportMessage; +## soap-2.3.jar higher ## +#httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;IILjava/lang/Boolean;)Lorg/apache/soap/transport/TransportMessage; +## apache axis ## +httpCall=org/apache/axis/client/Call.setRequestMessage(Lorg/apache/axis/Message;)V +## reactor netty / jetty (webflux) ## +httpCall=reactor/netty/http/client/HttpClientConnect.connect()Lreactor/core/publisher/Mono; +httpCall=org/eclipse/jetty/client/HttpRequest.send(Lorg/eclipse/jetty/client/api/Response$CompleteListener;)V +## Spring AsyncRestTemplate ## +httpCall=org/springframework/web/client/AsyncRestTemplate$AsyncRequestCallbackAdapter.doWithRequest(Lorg/springframework/http/client/AsyncClientHttpRequest;)V +## apache httpasyncclient ## +httpCall=org/apache/http/impl/nio/client/CloseableHttpAsyncClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/protocol/HttpContext;Lorg/apache/http/concurrent/FutureCallback;)Ljava/util/concurrent/Future; +## okhttp ## +httpCallHeader=okhttp3/Request$Builder.build()Lokhttp3/Request; +httpCall=okhttp3/RealCall.execute()Lokhttp3/Response; +httpCall=okhttp3/RealCall.enqueue(Lokhttp3/Callback;)V +## spring cloud zuul (restclient) ## +httpCallHeader=com/netflix/client/http/HttpRequest$Builder.build()Lcom/netflix/client/http/HttpRequest; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V + +########## Kafka ########## +kafkaProduce@com.exem.weave.io.XmKafkaProduce +kafkaProduce=org/apache/kafka/clients/producer/KafkaProducer.doSend(Lorg/apache/kafka/clients/producer/ProducerRecord;Lorg/apache/kafka/clients/producer/Callback;)Ljava/util/concurrent/Future; + +########## RabbitMQ ########## +rabbitMQPublish@com.exem.weave.io.XmRabbitMQPublish +rabbitMQPublish=com/rabbitmq/client/impl/AMQChannel.transmit(Lcom/rabbitmq/client/impl/AMQCommand;)V diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.x.advice.sample b/intermax/2208.06_type3/jspd/cfg/jspd.x.advice.sample new file mode 100755 index 0000000..336c402 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/jspd.x.advice.sample @@ -0,0 +1,63 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xOutbound@com.exem.weave.io.XmXOutbound +xInbound@com.exem.weave.io.XmXInbound +xReply@com.exem.weave.io.XmXReply +#httpURL@com.exem.weave.io.XmHttpURL +#txnKBank@com.exem.weave.tx.XmSetTxnName + +########## APPLICATION ########## +#appService= + +########## IGATE MCI ############ +#appService=com/inzent/igate/service/activity/ActService.executeService(Lcom/inzent/igate/message/Record;Lcom/inzent/igate/repository/meta/Service;Lcom/inzent/igate/message/Record;Lorg/apache/commons/logging/Log;)Lcom/inzent/igate/message/Record; +#httpURL=com/inzent/igate/session/http/thin/HttpClientSession.getRequestURI(Lcom/inzent/igate/adapter/AdapterParameter;)Ljava/lang/String; +#HttpCall=com/inzent/igate/session/http/thin/HttpSession.writeHeader(Ljava/util/Map;)V + +########## Bankware CORE ########## +#txnKBank=kbank/extention/service/endpoint/HttpServiceEndpoint.loadParameters(Lbxm/request/ResolvedRequest;Lkbank/extention/context/impl/KbankInstitutionParameters;Lkbank/extention/context/impl/KbankCachedControlParameters;Lkbank/extention/service/trace/KbankServiceMessageTrace;)V + +########## TIBCO BW EAI ########### +#appService=com/tibco/plugin/share/http/client/JakartaHttpTransportDriver$RequestExecutor.run()V +#appService=com/tibco/plugin/tcp/TCPReadActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#appService=com/tibco/plugin/tcp/TCPWriteActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#xCall=com/tibco/bw/service/binding/bwhttp/impl/HttpTransportApplication.a(Lcom/tibco/xml/soap/api/transport/TransportMessage;Lcom/tibco/bw/service/config/ec/OperationConfiguration;Lcom/tibco/plugin/share/siapiplugin/bw/BwPort;Lcom/tibco/plugin/share/security/context/SecurityContext;)V +#xOutbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.setContent([B)V +#xInbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.getContent()[B +#xInbound=com/tibco/xml/data/primitive/values/XsBase64Binary.castAsBase64Binary()[B +#xCall=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.long()[B +#xOutbound=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.void()[B + +########## ANYLINK4 FEP ########### +#txnKBankRet=anylink/engine/AnyLink.responseMapping([BLjava/lang/Object;[BLjava/lang/Object;ILanylink/common/object/TxParameter;ZLanylink/common/exception/AnyLinkRequestFormatErrorException;)[B +#xCall=anylink/engine/AnyLink.process([BLjava/lang/Object;Z[Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Object; +#xOutbound=anylink/engine/AnyMapper.mapping([B[BLjava/lang/Object;Z)V + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V diff --git a/intermax/2208.06_type3/jspd/cfg/jspd.x.include b/intermax/2208.06_type3/jspd/cfg/jspd.x.include new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/cfg/license.NH_20221231.rts.key b/intermax/2208.06_type3/jspd/cfg/license.NH_20221231.rts.key new file mode 100755 index 0000000..d17cc0d --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/license.NH_20221231.rts.key @@ -0,0 +1 @@ +87538198C5286B63B454C5A2F778D2C8E16466D071A930AC42D112FC4A4ADFA63F399735973BD16E0BE0F38549489BF2186B4B6FBE6B34C23B369ADC5689DE757B425E6AAB45EA83E5E9C7DDEBF64F08BF5FFF071FCDA2315B92A704B6B0EB26C8A93C7444399B77D7DEFFA161ED263433E15B25B02C3889EAEC40EE35DCF82189BD5AAB9E6930E69B10D7F829A9F1CBD0BB1F82F364739B2DB4BDBCED1CF936B6F0B108D470355F2B131C7B91876BC56E1C0B80CF84CBFC46AD3582203C2FF87E73986DD5897EED263A26A59B6A94ADE8B0AEBB1A5C7480FD1907D2D8F48C21B6A1CCA0AE2B7FEDE2D17666B8FA3812F5CF766737F9B3C91DC2781C71DE8E62FFFFFF02F9467E0A2C231B103D6C560C217356429200130357243089491020107167288349027049240480248425150511426153308144162424260277106002005333381320428317062394109096484010448165279241263071174485315101341069125171463201092266000143018195295261384064037354270402097014296039052290131400459042077210102112370181256278118050353029189344094206231142313003047316470378036113011396E7724B75FCA0B3497F3BA8059AE8B9A8B9F758D3CF636B87B9F758D3CF636B874A659EBE63E5C842F4569E5E58082C6324AC6B077E91B41B978EFD109A5F42C22199DC5A8A816A7B9E61F395A87C0DBF9B7405A53DADCECA3C2F25A3FEFCC6AFD3436E0C56F7799D6F927D79DDECD754588947987DF761D4E4A76073398600465ED3FE7CD6D8E7F889E8171B058B0053A39E243B65A147FC58575D01E6AFA5B2698192084329987AF3E3C3FCD787C43FA7F3007C676C6691205EF7CDEE880DD032B7569961FD701B2E794A416D08971F4349FC8A2CA7D6D056EF9C4C0887723BB86C46177BBBC3E2A5004704256AAEC0A933706B9DF5B19AB6D96E0CDAFCB4F0A4CBD4EBFC9AC6B89149A2FA7BE3456FF28888440050FC498C5BAF09C111AF11BCE2B246B7F2320013F72A73CB7ADC6525F2397C4FFA01415A08A676582FB67244A237B22A9050B2ADAD38A667D1A867D840DF8BBDDD730B9B60FF2152E303AD9B6327A842BCB04DD76C783DEDB5558CA16733548E9CD3EAA3D0656E6F6BA7C87C578D522FF7BB72B6D02B9A780D8115E971EE392D897853DB383E2991CD76FF15316CDE53D365C9E588BAF0DEA3DB6819FAD795F086AF261C630DF76FE7B39A692B254536894BA31CE01473460C2C29F72835A543C4BADFC56C530CDE3A9E7189C7017FF2145BD268E3E740B2A308209DFA782AF4BDDE364B69311DD0964818F3308F5D2BCFC914D52BE659181BAF0F7503F5EA3AA266AB96C508AE9C2D361947B191B8EF47088A253945743134910303d122095327509001NH_20221231 \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230131.rts.key b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230131.rts.key new file mode 100644 index 0000000..1fd46b6 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230131.rts.key @@ -0,0 +1 @@ +02A3E20007E294BC1315634649EBC10021D600DE2C73868D2F0C3E1A5C4154BDA18C6A225D0D4E01228B5A896039832C80455EE92FC820A997FD64BDDCA41139AF621C96C322B124ACBCCE607B724F9D4CB155CFC4E3DED5E0962119604C31AAAC8FBB140132431B1628307B78D2085C49F13A5A153DF2B7F0A2E25F0171D7A183E269695546378503A63A77E1DE3682A33A0D49ED93A28CB8DC7B4D6787E3D754E4DE17C5ADC60E0F2974AE733502D4677F857601BBEFDCF202CE04939E5C9ED34AAA9386517C77E10DF8352293C9D52E2694C8C7E946CF9216F89CFD35AB4141886733A767A9E074E475AAEA688391446A0A0D7751440DDF6E8A2B2A20DF33FFFFFF021876C1B02C23B04BE4FF643D23106433140410427228217247545949707719424627307325026722000715720447837729447032736034345504414416023528018929116251014707511226434513831507448405340834638729912043421509215808522913608718210635721336634031617128425236920046550411105937110800427115548211923616329745048908111405239326513140106038615617405403437511713028830300051109428347DF2A38202621081016DA2E970A8D2F163C44E912F86CFB1544D1D446AC032E09A0F3E8E6BD479F43C5DFE8769B8A44E44561AA20DC3C0081A3719BE4A68106B61D0A755BDE1A9AEAA8E34A7775E2223A85F6AFA701A6AC955B2C8F657067162A149560726246A4AC13ECB2EC436E5E76B72AEAAA389AF6E6CE59EBF12C6C7D226172799A55FA0A80455EE95FB890AD251CCDBAC6BB344EE1F4F3841F8AFDA2CF454D7567297018224B49E7E54048ADA5B24481AC576413B348EF303B542519984870AA7CD4EF379B54E4BD57835947B92C9C95714F6FE5A179A99AB20A6BAA85071AC264F5D41923CB9ACA1CD3B3EDDC882546FC1C346C7C71830855677B8242871D39A21A18B0FF75E658CF2E5798678DB07BEA1BE479F0C53C38BEAB9BB554DE5FD8241879B51F26B0712788B5DE92004F29712AAE545A5AE34A0E821F8D56FE5A7FCB9B50AAA4864C0DBBBC46F2113ABBFABD5B1A385308394BBB3B69AD18D56B4128A7F32AC3F8002E13D3735874937039EE159F92F272876745DAE97797D2CA92BF80FD9941A3B6A5F6B77D9F7E10413F47514182F8E9FB13D70F8B70FC1DDA53FC13427D7B81A6E261BD6E797D7F4578B81F8575C420CC960DCB897E246B0F8F8D7E7766B52B7A5B5DEE533F074C145FAC97F7D8C65A6FB17F818CF56E9A2357D66A5E1C450C353D04060E5DFC703A9D0CBBE452C8ABEF7FD1652DE133A58DC595ACE6B265BE237DE937AC0FD3CC50857DE04FC811D1BFA7C0964ED6F6479B30FE5B471B2D8508803720647003d036436392181166RTS_TRIAL_20230131 \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230331.rts.key b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230331.rts.key new file mode 100644 index 0000000..5d0ffb9 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230331.rts.key @@ -0,0 +1 @@ +F80EB86B73FCCC170EFBE5D7E6C4F4DB722BCFAC95817F7FE605C2DDCA48D481AA46DD868A8B4402F577249009E0976F1B789B9477F3F71161C8A1EC2777A7B9BBABED318E3081589E63CB03032E9D2ABE7B83298EDF40EB28C27D735F6974716214679EA3878A10E50478181B6369E6990299D8E9ABEA851F226FF7F01D9890DE872D0BF2C31B504EF4BA8D19F7E6BA167E540BB82A1B49906FFA81EB1D951DEB9C5EBC3091B55293E51B364AF0BFEE5E6BD0635D0047709B24580A44B2310637858EE619FD40A01128221FB0F951E63DCA1E742589A2E7D4FDD31F1E60404E94DF84A52612727636141B9463DB8C875DEB543935D63D3F8C9B8B634F825C4AFFFFFF02E2A5DEBF2C14ED470D9AA1CC493389106416380480383043443452303327292404225270120473135251343394464079395414436432371442033360402199253013051116391247030502373273097182219304336326335163203154075012447211110239087134245099218095387430084289495407341297137236417186455196462349155331367026234368187052496437296409091405346064250047197451263174210201171226283130008418E622800961AEF8825A0557E5AB0A9F1A0DB1B6C124F78B13FA1F7FBE03F07A7C8CBF8E4D3CA9343049AFD72C5E63DA0C99B968F9153E5A2B71383EF62C1520A3778EE44D2EE5F549FC42141643026286E62B240109555AD9ABDA497DECB22B15AA8B5A12CF0C7F9749C11E839CD09C92790BAE895B3CA6EFB39479B0226215F7E3F8F70E60CFFF7EB3119292312E3875A0673666FD451DBBE022373C205B9F427F60274E7E2590DACC2E58C14C199E0E501594FE38598F622D7B3C9C759E731B6C428923C3F899FC0A7C36362B228C0AAE873B7ACFB71D8688B71B5C7B14B03E6C991F33ADCBFA3C79EB2FE6CA5C7E205DCEC58183AC516BDA2190A6AE3AC570A92F4E259153DDC22D5B43F2F8E5C557359468A15E8E53A0508FA4E7583B070C615A1C2B1D512385E841C70E43516A20B447214C5D89BF5580BF0D3D211F32C0969F5E27DEC996A4DB4A237CB2A691AEE3BE53D701151830CD6ABBA58B4690E2408EFB424065D1104067E1BEC0D8F94D2A9A8016F9E8814E6809FA9A8D9D4BFAF4A9CDB720E4B4D7CC61FE41402545401BF03B90CC3C43C8B5E0AE7AA56F10A1CCE90102875F56A09F4072C2AAEBEE9A8BD01F17A2EC44AA586B3307FC5E8FD403A526065589AE64DE0FC669D8FEC1F0CF1F4A0D5237CE3CA11974C5EFFFBF4950C0D09B6EC4F79908CB7E6F222FE15C7DBDCA632FAC5348BB7E23FBD506F1422309B08C00A5D6F7C26D4DC266AB93C69AA51823685FE24FCB80235A3AE50D8D12B02177C090B950B17B15048116945703d429292136371030RTS_TRIAL_20230331 \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230531.rts.key b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230531.rts.key new file mode 100644 index 0000000..4108668 --- /dev/null +++ b/intermax/2208.06_type3/jspd/cfg/license.TRIAL_20230531.rts.key @@ -0,0 +1 @@ +85D508CFB9B76202AB5BFC1CC75213AFE59C7EBD20D68BB79F2E703C41E5F262CB463550910413E4EC7967757A9F6280B89DFDEBF9019540D79D0F7C7C47384CA7B0546949F834423DDFD7EBD8F80F3AACEBBBED3F4AAD25A3650B461B47258074FCDA4C340464F76F7E5B34FDC652DDBE3F81F9C974C1ECA5188ED6B0677B6C9E195B3C666225BA4A4982D351D99421455C7E5220DBBBB7DC6732FD557267CD88CD1924592C80FB18E4B06B48A32B3AB222C06AAD222ED1EA9CFB276F6AC11BE53027EA365D30D7E7DE5DF446538F49B14FAF18EF60264EED11C7821DB6EFEFCA7711288491ED7E8EC6614255076E2EC0BD95A01E1DDEE87F7DACD77274191FFFFFFF02E002E4672C55EBE1A33191C904048746806433608826308607126411919923610714921146747204941123140706221434031545316438210529515417024340913238051109723350246609918035113032511037929608503424133737503200529949403830746043204218942921341449616509127441309026200845801911548602925647442808405212043622051031408214735940418829205337733939520517138937601430015641639701602012A36291EA70D68430B48649C1C3B6454A95D2EB1727845070F4D4A760B0B0AF27A8E4A33E525890D808F51CAF3CEB7214FF370927E626FCCD1ECD990F4C37BCF56A23986CD5E68D1C4CA8D65EC6DE3A6DE56C8798A0DD8C5BFC8F51C1E832D50168D28FDA1BB6FC4B9826BA32775958149AD26F6F8C7202FF6A37868DE1E16507A3D6E95D0C34C1E156C2A2599BF800E61A01F7FD2641EC29B19441E413B3C6C6F5393FCAD242E6EFCD29CCB44DD14591362E15FA3B37C5BDB56BA87C18A9E5FB70498E6A1C95F2742F9555561C3419ED6B0BBE17212C3D74AB9ACD48F8A9BB42FB789E95919C9EC024E71E25999014D45BC3119F2A6DFCB8C4731CD065F3BBAAF14F8B71114E4FF022194F6DF9E1340FF67BA44D982D155C4DB712D5AC128314DCB5629E4B6F98A4D17FC690D4A15835F1CB5F552E60F13FD4991AF38A00B15C629F3189DB2B7CE7BFCD634B366F14741C30D11FF52AD594669BE4AD37A1F1787FBC76608A54AFAF590BF5DB9380E5CE9F2AC3BAE0AE32A279587E8BEB7EEDE140E0E0A9E9260AA2F6D1FDC33DF66E4604637A2E16DC0555D5B63A5FFE6CF42FA3849550DEF5B6630B9061685A547D6DDCB427F54CF8787357436E507C4E7ED9321C8504479BE0420950B4DD897065D7D43B868AAD4407DF44B5C17242FD55DB8546D64D6E26E112737426FCB59050A00EB76212E565717EF9E5421D3D3300291E948929E5646C09C6B79F36C892D6D2BC4795CF224B7FA7AC20EA107237C7640382678C146729698920504606540403d108287067075075RTS_TRIAL_20230531 \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/data/agent/10 b/intermax/2208.06_type3/jspd/data/agent/10 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/10 @@ -0,0 +1 @@ +1 diff --git a/intermax/2208.06_type3/jspd/data/agent/11 b/intermax/2208.06_type3/jspd/data/agent/11 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/11 @@ -0,0 +1 @@ +1 diff --git a/intermax/2208.06_type3/jspd/data/agent/17 b/intermax/2208.06_type3/jspd/data/agent/17 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/17 @@ -0,0 +1 @@ +0 diff --git a/intermax/2208.06_type3/jspd/data/agent/8 b/intermax/2208.06_type3/jspd/data/agent/8 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/8 @@ -0,0 +1 @@ +0 diff --git a/intermax/2208.06_type3/jspd/data/agent/imxosm b/intermax/2208.06_type3/jspd/data/agent/imxosm new file mode 100644 index 0000000..ebc2f3f Binary files /dev/null and b/intermax/2208.06_type3/jspd/data/agent/imxosm differ diff --git a/intermax/2208.06_type3/jspd/data/agent/imxtxn b/intermax/2208.06_type3/jspd/data/agent/imxtxn new file mode 100644 index 0000000..54faa97 Binary files /dev/null and b/intermax/2208.06_type3/jspd/data/agent/imxtxn differ diff --git a/intermax/2208.06_type3/jspd/data/agent/oom/10 b/intermax/2208.06_type3/jspd/data/agent/oom/10 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/oom/10 @@ -0,0 +1 @@ +1 diff --git a/intermax/2208.06_type3/jspd/data/agent/oom/11 b/intermax/2208.06_type3/jspd/data/agent/oom/11 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/oom/11 @@ -0,0 +1 @@ +1 diff --git a/intermax/2208.06_type3/jspd/data/agent/oom/17 b/intermax/2208.06_type3/jspd/data/agent/oom/17 new file mode 100644 index 0000000..7fcc9f3 --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/oom/17 @@ -0,0 +1 @@ +14295 diff --git a/intermax/2208.06_type3/jspd/data/agent/oom/8 b/intermax/2208.06_type3/jspd/data/agent/oom/8 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/agent/oom/8 @@ -0,0 +1 @@ +1 diff --git a/intermax/2208.06_type3/jspd/data/common.immf b/intermax/2208.06_type3/jspd/data/common.immf new file mode 100644 index 0000000..96c7cde Binary files /dev/null and b/intermax/2208.06_type3/jspd/data/common.immf differ diff --git a/intermax/2208.06_type3/jspd/data/xm_jspd_api_em.js b/intermax/2208.06_type3/jspd/data/xm_jspd_api_em.js new file mode 100755 index 0000000..83166c9 --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/xm_jspd_api_em.js @@ -0,0 +1,147 @@ + +(function () { + var _XM_TID = '%{XM_TID}'; + var _XM_TRACE_ELAPSE = '%{XM_TRACE_ELAPSE}'; + var _XM_CLIENT_API = '_XM_CLIENT_API%{XM_CLIENT_API}'; + var _XM_CLIENT_ADDR = '%{XM_CLIENT_ADDR}'; + var _XM_TID_HEADER = 'X-Xm-Tid'; + var _XM_TRACE_ELAPSE_HEADER = 'X-Xm-ElapseTime'; + + + var openProxied = window.XMLHttpRequest.prototype.open; + window.XMLHttpRequest.prototype.open = function () { + if (arguments[1].indexOf(_XM_CLIENT_API) == -1) { + if (document.removeEventListener) { + this.removeEventListener("loadstart", _xm_loadstart); + this.removeEventListener("loadend", _xm_loadend); + } + else { + this.detachEvent("loadstart", _xm_loadstart); + this.detachEvent("loadend", _xm_loadend); + } + if (this.addEventListener) { + this.addEventListener("loadstart", _xm_loadstart); + this.addEventListener("loadend", _xm_loadend); + } + else if (this.attachEvent) { + this.attachEvent("onloadstart", _xm_loadstart); + this.attachEvent("onloadend", _xm_loadend); + } + } + return openProxied.apply(this, [].slice.call(arguments)); + }; + + var _xm_loadstart = function () { + var eventProxied = this.onreadystatechange; + this.onreadystatechange = function () { + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.es = Date.now(); + } + + if (eventProxied != null && typeof eventProxied != 'undefined') { + eventProxied.apply(this, [].slice.call(arguments)); + } + + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.ee = Date.now(); + } + }; + this._xm_clientinfo = __xm_create_clientinfo(); + this._xm_clientinfo.ss = Date.now(); + this._xm_clientinfo.se = Date.now(); + }; + + var _xm_loadend = function () { + if (typeof this._xm_clientinfo == 'undefined') return; + if (this._xm_clientinfo.es == 0) { + this._xm_clientinfo.es = Date.now(); + this._xm_clientinfo.ee = Date.now(); + } + this._xm_clientinfo.tid = this.getResponseHeader(_XM_TID_HEADER); + var traceElapseTime = this.getResponseHeader(_XM_TRACE_ELAPSE_HEADER); + + if (typeof traceElapseTime == 'undefined' || typeof this._xm_clientinfo.tid == 'undefined') { + return; + } + + if (traceElapseTime > this._xm_clientinfo.ee - this._xm_clientinfo.ss) { + return; + } + + var _xm_clientinfo = this._xm_clientinfo; + __xm_send_post(_xm_clientinfo); + }; + + function __xm_create_clientinfo() { + var clientinfo = {}; + clientinfo.tid = 0; + clientinfo.ss = 0; + clientinfo.se = 0; + clientinfo.es = 0; + clientinfo.ee = 0; + return clientinfo; + } + + function __xm_send_post(clientinfo) { + try{ + var queryParameters = 'tid=' + clientinfo.tid + '&ss=' + clientinfo.ss + "&se=" + clientinfo.se; + queryParameters += '&es=' + clientinfo.es + "&ee=" + clientinfo.ee; + + var xmlhttp; + if (window.XMLHttpRequest) { + xmlhttp = new XMLHttpRequest(); + } else { + xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); + } + + if(_XM_CLIENT_ADDR == "") { + xmlhttp.open('GET', './'+_XM_CLIENT_API+'?' + queryParameters, true); + }else{ + xmlhttp.open('GET', 'http://' + _XM_CLIENT_ADDR + '/' + _XM_CLIENT_API + '?' + queryParameters, true); + } + + xmlhttp.send(null); + + if (true) { + var sendElapseTime = clientinfo.se - clientinfo.ss; + var recvElapseTime = clientinfo.ee - clientinfo.es; + var serverElapseTime = clientinfo.es - clientinfo.se; + + console.log('__xm_send_post serverElapseTime=' + serverElapseTime + ', sendElapseTime=' + sendElapseTime + ', recvElapseTime=' + recvElapseTime); + } + } + catch(e) { + console.log(e); + } + } + + var _xm_window_load = function () { + //return; + setTimeout(function () { + var timing = window.performance.timing; + var clientinfo = __xm_create_clientinfo(); + clientinfo.ss = timing.navigationStart; + clientinfo.se = timing.connectEnd; + clientinfo.es = timing.responseEnd; + clientinfo.ee = timing.loadEventEnd; + clientinfo.tid = _XM_TID; + + if (_XM_TRACE_ELAPSE > clientinfo.ee - clientinfo.ss) { + return; + } + + __xm_send_post(clientinfo); + }, 0); + }; + + if (!window.performance || !window.performance.timing) { + return; + } + + if (this.addEventListener) { + this.addEventListener("load", _xm_window_load); + } + else if (this.attachEvent) { + this.attachEvent("onload", _xm_window_load); + } +})(); diff --git a/intermax/2208.06_type3/jspd/data/xm_plc_message.html b/intermax/2208.06_type3/jspd/data/xm_plc_message.html new file mode 100755 index 0000000..40a7658 --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/xm_plc_message.html @@ -0,0 +1,30 @@ + + + + Message (InterMax) + + + + + +
%{XM_PLC_MESSAGE}
+ + + \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/data/xm_rum_message.html b/intermax/2208.06_type3/jspd/data/xm_rum_message.html new file mode 100755 index 0000000..d18d8f2 --- /dev/null +++ b/intermax/2208.06_type3/jspd/data/xm_rum_message.html @@ -0,0 +1,28 @@ + + + + Message (InterMax) + + + +

InterMax Rum Message

+
%{XM_RUM_MESSAGE}
+ + \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/lib/CheckEnv.class b/intermax/2208.06_type3/jspd/lib/CheckEnv.class new file mode 100755 index 0000000..7a1ac34 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/CheckEnv.class differ diff --git a/intermax/2208.06_type3/jspd/lib/IMXAgent.bat b/intermax/2208.06_type3/jspd/lib/IMXAgent.bat new file mode 100755 index 0000000..8a50903 --- /dev/null +++ b/intermax/2208.06_type3/jspd/lib/IMXAgent.bat @@ -0,0 +1,25 @@ + +@echo off + +setlocal + +SET INTERMAX_HOME=%1 +SET IMX_NAME=%2 +SET IMX_BIT=%3 + +if "%IMX_BIT%" == "32" ( + set "path=%INTERMAX_HOME%\lib\imx\DLL\x86;" +) + + +if exist %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe ( + REM echo file exists +) else ( + copy %INTERMAX_HOME%\lib\imx\%IMX_NAME%_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe + copy %INTERMAX_HOME%\lib\imx\imxtxn_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxtxn.exe + copy %INTERMAX_HOME%\lib\imx\imxuts_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxuts.exe +) + +%INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe -D + +exit 0 diff --git a/intermax/2208.06_type3/jspd/lib/IMXAgent.sh b/intermax/2208.06_type3/jspd/lib/IMXAgent.sh new file mode 100755 index 0000000..8e26b49 --- /dev/null +++ b/intermax/2208.06_type3/jspd/lib/IMXAgent.sh @@ -0,0 +1,70 @@ +#!/bin/sh + +INTERMAX_HOME="$1" +IMX_NAME="$2" +IMX_BIT="$3" + +OS_NAME=`uname` +OS_ARCH=`uname -m` +IM_FILE=$INTERMAX_HOME"/lib/imx/"$IMX_NAME + +# check arguments +if [ $# -eq 3 ]; +then + if [ ! -f $IM_FILE ]; + then + # set process name + case $OS_NAME in + "HP-UX" ) OS_BIT=`getconf KERNEL_BITS` + if [ $OS_ARCH != "ia64" ]; + then + IMX_PROC_NAME=$IMX_NAME"_hppa_"$OS_BIT + else + IMX_PROC_NAME=$IMX_NAME"_hpia_"$OS_BIT + + # if [ $IMX_NAME = "imxosm" ] && [ $OS_BIT = "64" ] && [ $IMX_BIT = "32" ]; + # then + # IMX_PROC_NAME=$IMX_PROC_NAME"a"$IMX_BIT + # fi + fi + ;; + + "SunOS" ) OS_BIT=`isainfo -b` + IMX_PROC_NAME=$IMX_NAME"_sun_"$OS_BIT + ;; + + "AIX" ) if [ "" != "`file /usr/lib/boot/unix* | grep 64`" ]; + then + OS_BIT="64" + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_aix_"$OS_BIT + ;; + + "Linux" ) if [ $OS_ARCH = "x86_64" ]; + then + OS_BIT="64" + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_linux_"$OS_BIT + ;; + + * ) echo "Unkown OS Name: $OS_NAME" + exit 1 + ;; + + esac + + cp $INTERMAX_HOME"/lib/imx/"$IMX_PROC_NAME $IM_FILE + + chmod 750 $IM_FILE + + fi + + export INTERMAX_HOME + # start process + $IM_FILE -D + +fi diff --git a/intermax/2208.06_type3/jspd/lib/JavaService.exe b/intermax/2208.06_type3/jspd/lib/JavaService.exe new file mode 100755 index 0000000..fb32708 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/JavaService.exe differ diff --git a/intermax/2208.06_type3/jspd/lib/asm-1.5.4.jar b/intermax/2208.06_type3/jspd/lib/asm-1.5.4.jar new file mode 100755 index 0000000..fa4336b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/asm-1.5.4.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm b/intermax/2208.06_type3/jspd/lib/imx/imxosm new file mode 100755 index 0000000..7c97cc5 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_aix_64 b/intermax/2208.06_type3/jspd/lib/imx/imxosm_aix_64 new file mode 100755 index 0000000..2be76f7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_aix_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_hpia_64 b/intermax/2208.06_type3/jspd/lib/imx/imxosm_hpia_64 new file mode 100755 index 0000000..ce171bb Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_hpia_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_32 b/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_32 new file mode 100755 index 0000000..506bfcb Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_32 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_64 b/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_64 new file mode 100755 index 0000000..7c97cc5 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_linux_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_sun_64 b/intermax/2208.06_type3/jspd/lib/imx/imxosm_sun_64 new file mode 100755 index 0000000..894eda3 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_sun_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_32.exe b/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_32.exe new file mode 100755 index 0000000..8deee3e Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_32.exe differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_64.exe b/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_64.exe new file mode 100755 index 0000000..0d2ee7c Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxosm_win_64.exe differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn b/intermax/2208.06_type3/jspd/lib/imx/imxtxn new file mode 100755 index 0000000..9cfa0a7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_aix_64 b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_aix_64 new file mode 100755 index 0000000..24be6f0 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_aix_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_hpia_64 b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_hpia_64 new file mode 100755 index 0000000..165e714 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_hpia_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_32 b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_32 new file mode 100755 index 0000000..00ac446 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_32 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_64 b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_64 new file mode 100755 index 0000000..9cfa0a7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_linux_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_sun_64 b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_sun_64 new file mode 100755 index 0000000..c93ee57 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_sun_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_32.exe b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_32.exe new file mode 100755 index 0000000..f4a810e Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_32.exe differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_64.exe b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_64.exe new file mode 100755 index 0000000..80623b3 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/imxtxn_win_64.exe differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/libs/libldap.so.5 b/intermax/2208.06_type3/jspd/lib/imx/libs/libldap.so.5 new file mode 100755 index 0000000..ad2f98d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/libs/libldap.so.5 differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/msvcr100.dll b/intermax/2208.06_type3/jspd/lib/imx/msvcr100.dll new file mode 100755 index 0000000..0318fb0 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/msvcr100.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/msvcr100d.dll b/intermax/2208.06_type3/jspd/lib/imx/msvcr100d.dll new file mode 100755 index 0000000..5adaf8e Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/msvcr100d.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/vcruntime140.dll b/intermax/2208.06_type3/jspd/lib/imx/vcruntime140.dll new file mode 100755 index 0000000..64e5016 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/vcruntime140.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/vcruntime140d.dll b/intermax/2208.06_type3/jspd/lib/imx/vcruntime140d.dll new file mode 100755 index 0000000..671af4c Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/vcruntime140d.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/zlib1.dll b/intermax/2208.06_type3/jspd/lib/imx/zlib1.dll new file mode 100755 index 0000000..31996cd Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/zlib1.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imx/zlibwapi.dll b/intermax/2208.06_type3/jspd/lib/imx/zlibwapi.dll new file mode 100755 index 0000000..4194c0d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imx/zlibwapi.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/imxwsm.jar b/intermax/2208.06_type3/jspd/lib/imxwsm.jar new file mode 100755 index 0000000..3d47115 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/imxwsm.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_32.dll b/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_32.dll new file mode 100755 index 0000000..96dc117 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_32.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_64.dll b/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_64.dll new file mode 100755 index 0000000..72215e8 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/ImxJNI_win_64.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/jni_pcap_win_64.dll b/intermax/2208.06_type3/jspd/lib/jni/jni_pcap_win_64.dll new file mode 100755 index 0000000..fce85ac Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/jni_pcap_win_64.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 new file mode 100755 index 0000000..9fe1e98 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 new file mode 100755 index 0000000..d52a18e Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 new file mode 100755 index 0000000..ec141f9 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 new file mode 100755 index 0000000..1ae0bb1 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 new file mode 100755 index 0000000..542f167 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 new file mode 100755 index 0000000..e6339c7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 new file mode 100755 index 0000000..1fb61d1 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 new file mode 100755 index 0000000..88fbe46 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 new file mode 100755 index 0000000..e221ec1 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 new file mode 100755 index 0000000..f42f8d6 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 new file mode 100755 index 0000000..26a4769 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 new file mode 100755 index 0000000..38eeab7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 new file mode 100755 index 0000000..951858c Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 new file mode 100755 index 0000000..7863d2c Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 new file mode 100755 index 0000000..6b3b05d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_32.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_32.so new file mode 100755 index 0000000..c47dc17 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_64.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_64.so new file mode 100755 index 0000000..a302321 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_aix_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia32.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia32.so new file mode 100755 index 0000000..268a6ed Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia64.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia64.so new file mode 100755 index 0000000..340e8e5 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_hp_ia64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_32.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_32.so new file mode 100755 index 0000000..828733d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so new file mode 100755 index 0000000..4687f6c Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_32.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_32.so new file mode 100755 index 0000000..ff8631d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_64.so b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_64.so new file mode 100755 index 0000000..61c8eab Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_sun_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_32.so b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_32.so new file mode 100755 index 0000000..1069928 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_64.so b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_64.so new file mode 100755 index 0000000..958b04f Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmpiSvc_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_32.so b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_32.so new file mode 100755 index 0000000..e97e7c5 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_64.so b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_64.so new file mode 100755 index 0000000..fefa4ec Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libXmJvmtiSvc_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_32 b/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_32 new file mode 100755 index 0000000..aa669bb Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_32 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_64 b/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_64 new file mode 100755 index 0000000..e9f4b8a Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libgcc_s.so.1_64 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 new file mode 100755 index 0000000..9e9b49a Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 new file mode 100755 index 0000000..9c214d2 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 new file mode 100755 index 0000000..b5e9b4d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 new file mode 100755 index 0000000..ca38ee6 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_hp_ia64.so b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_hp_ia64.so new file mode 100755 index 0000000..3a512dd Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_hp_ia64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_32.so b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_32.so new file mode 100755 index 0000000..16ee655 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_64.so b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_64.so new file mode 100755 index 0000000..b8e49ba Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_linux_64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 new file mode 100755 index 0000000..4080f6b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 new file mode 100755 index 0000000..72adc2f Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 new file mode 100755 index 0000000..586c046 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 new file mode 100755 index 0000000..16ae0bc Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so new file mode 100755 index 0000000..e03c7e9 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so new file mode 100755 index 0000000..fbf238d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so new file mode 100755 index 0000000..2c8d854 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so new file mode 100755 index 0000000..beca632 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so new file mode 100755 index 0000000..84c9c7b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so new file mode 100755 index 0000000..9431162 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so new file mode 100755 index 0000000..6103321 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so new file mode 100755 index 0000000..0672b11 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll new file mode 100755 index 0000000..9b3b70b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll new file mode 100755 index 0000000..c903b33 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll differ diff --git a/intermax/2208.06_type3/jspd/lib/jspd-common.jar b/intermax/2208.06_type3/jspd/lib/jspd-common.jar new file mode 100755 index 0000000..1e862c8 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jspd-common.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/jspd-ext.jar b/intermax/2208.06_type3/jspd/lib/jspd-ext.jar new file mode 100755 index 0000000..e2139be Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jspd-ext.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/jspd-pool.jar b/intermax/2208.06_type3/jspd/lib/jspd-pool.jar new file mode 100755 index 0000000..fdb6225 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jspd-pool.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/jspd.jar b/intermax/2208.06_type3/jspd/lib/jspd.jar new file mode 100755 index 0000000..0ba0f0b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/jspd.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-beanutils-1.9.3.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-beanutils-1.9.3.jar new file mode 100755 index 0000000..6728154 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-beanutils-1.9.3.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-collections-3.2.2.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-collections-3.2.2.jar new file mode 100755 index 0000000..fa5df82 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-collections-3.2.2.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-collections4-4.1.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-collections4-4.1.jar new file mode 100755 index 0000000..43a9413 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-collections4-4.1.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-configuration2-2.1.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-configuration2-2.1.jar new file mode 100755 index 0000000..b6239c7 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-configuration2-2.1.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-exec-1.3.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-exec-1.3.jar new file mode 100755 index 0000000..9a64351 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-exec-1.3.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-io-1.3.2.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-io-1.3.2.jar new file mode 100755 index 0000000..865c9e4 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-io-1.3.2.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-lang3-3.5.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-lang3-3.5.jar new file mode 100755 index 0000000..6328c8d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-lang3-3.5.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/commons-logging-1.2.jar b/intermax/2208.06_type3/jspd/lib/libs/commons-logging-1.2.jar new file mode 100755 index 0000000..93a3b9f Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/commons-logging-1.2.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/guava-20.0.jar b/intermax/2208.06_type3/jspd/lib/libs/guava-20.0.jar new file mode 100755 index 0000000..632772f Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/guava-20.0.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/javassist-3.12.1.GA.jar b/intermax/2208.06_type3/jspd/lib/libs/javassist-3.12.1.GA.jar new file mode 100755 index 0000000..aba1783 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/javassist-3.12.1.GA.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/juniversalchardet-1.0.3.jar b/intermax/2208.06_type3/jspd/lib/libs/juniversalchardet-1.0.3.jar new file mode 100755 index 0000000..ef4d7af Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/juniversalchardet-1.0.3.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/logback-classic-1.2.9.jar b/intermax/2208.06_type3/jspd/lib/libs/logback-classic-1.2.9.jar new file mode 100755 index 0000000..a08fe36 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/logback-classic-1.2.9.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/logback-core-1.2.9.jar b/intermax/2208.06_type3/jspd/lib/libs/logback-core-1.2.9.jar new file mode 100755 index 0000000..05b9f2b Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/logback-core-1.2.9.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/netty-all-4.1.8.Final.jar b/intermax/2208.06_type3/jspd/lib/libs/netty-all-4.1.8.Final.jar new file mode 100755 index 0000000..5be0c9d Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/netty-all-4.1.8.Final.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/libs/slf4j-api-1.7.32.jar b/intermax/2208.06_type3/jspd/lib/libs/slf4j-api-1.7.32.jar new file mode 100755 index 0000000..b16a078 Binary files /dev/null and b/intermax/2208.06_type3/jspd/lib/libs/slf4j-api-1.7.32.jar differ diff --git a/intermax/2208.06_type3/jspd/lib/notice/LGPL.txt b/intermax/2208.06_type3/jspd/lib/notice/LGPL.txt new file mode 100755 index 0000000..52790ad --- /dev/null +++ b/intermax/2208.06_type3/jspd/lib/notice/LGPL.txt @@ -0,0 +1,144 @@ +GNU LESSER GENERAL PUBLIC LICENSE +Version 2.1, February 1999 + + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + +Preamble +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. + +This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. + +When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. + +To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. + +For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. + +We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. + +To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. + +Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. + +Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. + +When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. + +We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. + +For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. + +In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. + +Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. + +The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. + + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". + +A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. + +The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) + +"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. + +1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + +a) The modified work must itself be a software library. +b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. +c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. +d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. +(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. + +Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. + +This option is useful when you wish to copy part of the code of the Library into a program that is not a library. + +4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. + +If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. + +5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. + +However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. + +When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. + +If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) + +Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. + +6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. + +You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: + + +a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) +b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. +c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. +d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. +e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. +For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. + +7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: + + +a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. +b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. +8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. + +10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. + +11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. + +14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +END OF TERMS AND CONDITIONS diff --git a/intermax/2208.06_type3/jspd/lib/release_note.txt b/intermax/2208.06_type3/jspd/lib/release_note.txt new file mode 100755 index 0000000..cbf9dd9 --- /dev/null +++ b/intermax/2208.06_type3/jspd/lib/release_note.txt @@ -0,0 +1,475 @@ + + +``` + 88 ad88888ba 88888888ba 88888888ba, + 88 d8" "8b 88 "8b 88 `"8b + 88 Y8, 88 ,8P 88 `8b + 88 `Y8aaaaa, 88aaaaaa8P' 88 88 + 88 `"""""8b, 88""""""' 88 88 + 88 `8b 88 88 8P +88, ,d88 Y8a a8P 88 88 .a8P + "Y8888P" "Y88888P" 88 88888888Y"' + +``` + + +================================================ + +- 3.1.1 20.01.02.09 +- Protocol Version 21 +- DG: IMX_TFT.DataGather.161201.01.RC 이상 + +================================================ +# 20.01.02.09 +- protocol version up to 21 +- java 9, java 11 지원 +- add 시계열 콜트리 기능 +- add 중앙관리 라이센스 기능 +- imp #1375, #1370, #1332 ACTIVE TXN PACKET에 SQL elapsetime 필드 추가 +- imp #1514 설정 파일에 단위 명시 +- imp USE_JAVA_VERIFY 옵션 안정화 +- imp #1756 ENABLE_WEB_ID_WHEN_NO_USERAGENT 옵션 추가(브라우저 접근 여부에 따라 webid 발급) +- imp ENABLE_UPDATE_WEBID_COOKIE_TIME 옵션 추가(webid를 사용할 때도 max age를 갱신) +- fix #1416 boot, down 알람 순서 뒤틀리는 현상 +- fix 다이나믹 리디파인 기능 안정성 개선(상수 변경) +- fix TXN_SQL_LIMIT_COUNT 옵션 추가(트랜잭션당 SQL 수집 갯수 제한) + +# 2019.10.10.9 +- protocol version up to 19 +- java 1.5로 올림 (1.4는 지원 불가) +- add EXCLUDE_THREAD 옵션 추가 (특정 thread name을 보고 모니터링을 막는 기능) +- add USE_ETOE_ONLY 옵션 추가 (etoe 모드로 동작하기 위한 옵션) +- add DISABLE_ACTIVE_TXN 옵션 추가 (active txn 패킷 비활성, 재시작 필요) +- add REPLACE_URL_PATTERNS 옵션 추가 (수집되는 트랜잭션의 URL 형태를 단순화) +- add #1315 EXCLUDE_TXCODE 옵션 추가 (txcode 기준으로 트랜잭션 수집 필터링) +- add 동적 프로파일 기능 +- imp 로컬 라이센스가 정상일 경우 중앙 라이센스의 유효성 확인 생략 +- imp 트랜잭션 시작, 완료시에 queue에 담는 로직에서 synchronized 제거 +- imp USE_TRACE_ORACLE 에서 query 방식이 아니라 setClientInfo 방식으로 개선 (java 1.6 이상) +- fix xapm_txn_detail의 endCount 제한 확장 +- fix http etoe에서 key1, key3가 중복이 발생하는 현상 +- fix 콜트리에 socket io가 포함된 경우 summary 되지 않는 현상 + +# 2019.06.25.9.legacy +- protocol version up to 16 +- add #8594 JSPD가 로드한 class, jar 목록 로그 기능(WRITE_CLASS_LIST, WRITE_JAR_LIST 옵션) +- add #8762 oracle fetch 함수 콜트리 추가(TRACE_FETCH_METHOD 옵션) +- add #8835 mongodb fetch 함수 콜트리 추가(TRACE_MONGO_FETCH 옵션) +- add apache axis 리모트콜 +- add setNull, setNString 함수에 대한 바인드 변수 수집 +- add asynckey 설정 함수 추가(setAsyncKeyP, setAsyncKeyC) +- add db2 연계 지원(USE_TRACE_DB2 옵션) +- add sqlserver 연계 지원(USE_TRACE_MSSQL 옵션) +- add INCLUDE_EXCEPTION_FOR_ALARM 옵션 추가 +- imp #4538 rt.jar weaving 기능 개선(USE_RUNTIME_REDEFINE 옵션) +- imp #7191 OutOfMemoryError 오류 발생 감지 기능 개선 +- imp #8694 jspd 시작점과 etoe도 재기동 없이 설정하도록 개선 +- imp #8895 ext에 의해 변경된 트랜잭션 이름에 대한 EXCLUDE_SERVICE 재확인(EXCLUDE_SERVICE_AT_END_TIME 옵션) +- imp wasid 별 jspd.plc.list 설정 기능 +- imp hostname 가져오는 로직 개선 +- fix 소켓, 파일 입출력의 수행시간이 0ms인 경우도 콜트리 표시 +- fix mongodb driver 2.4에서 누락된 fetch 지표 수정 +- fix 콜트리 클래스, 메소드 이름 한글깨짐 +- fix ojdbc14.jar에서 sql 미수집 현상 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 integer 범위를 넘어가는 숫자에 대해서도 동작하도록 수정 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 트랜잭션 이름이 / 인 트랜잭션이 수집안되는 문제 수정 +- fix jspd.advice에서 정규식 적용 시, 트랜잭션 미수집 오류 수정 +- fix HttpClient 3.1에서 http etoe 연계 시 uri 추출 중 발생하던 오류 수정 + +# 2019.03.20.10.legacy +- protocol version up to 14 +- add PLC message 설정 기능 추가. +- add mssql SQLServerDatasource 수집 추가. +- add sybase SybDataSource 수집 추가. +- add mongodb 수집. +- add mongodb pool, connection 수집 추가. +- add oracle 전체 내부 fetch count 수집 기능 추가. +- add #8722 파일 및 디렉토리 생성시 권한 부여. +- add 트랜잭션 종료 시에 EXCLUDE_SERVICE를 확인하여 트랜잭션 정보를 전송하지 않는 EXCLUDE_SERVICE_AT_END_TIME 옵션 추가 +- imp TRACE_COLLECTION_SIZE, TRACE_COLLECTION_STACKTRACE_SIZE 옵션들 동적 적용 +- fix pool name 100 바이트 까지 수집하도록 수정. +- fix properties 한글 처리. +- fix XmTxnState 몇가지 변수 초기화 시점 변경. +- fix collection leak 위빙 버그 수정. + +# 2019.02.15.5.legacy +- protocol version up to 13 +- add #8065 oracle 내부 fetch count 수집 기능 추가. +- add aws 연동시 local ip, account id 추가 수집 +- imp #8472 xapm_txn_detail에 저장될 filler 데이터 수집 가능 하도록 기능 개선. +- imp jspd <-> txn sql패킷 txnId 추가. (이전txn과 호환을 위한 USE_NONE_TXNID_PACKET 옵션 추가) +- fix #8483 sybase 풀 생성 안되는 현상 수정 및 pooledConn 수집 기능 구현. +- fix sybase 쿼리 미수집 현상 수정. + +# 2019.01.24.1.legacy +- imp #8464 apache SOAPHTTPConnection E2E 수집 기능 추가. + +# 2019.01.17.3.legacy +- add #8360 DB Name Alias 기능 추가 +- add #6720 PLC기능 jspd.priority.include 기능 변경 +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix USE_TRACE_ORACLE 사용시 audit 기능의 프로시져 변수 bind 하도록 변경 +- fix XmTcpReqWasInfo 패킷에서 docker id 보낼때 "docker://" string 제거 +- fix #8485 MSSQL 쿼리 수집 오류 수정. + +# 2018.12.07.7.legacy +- imp GC Stat 수집 시 OpenJDK도 HotspotJVM처럼 동작하도록 수정 +- add #8239 jspd.home 터치시 jspd properties 전송 기능 추가. +- add RMI_GET_PARAM 옵션 추가. (RT_RMI 옵션 사용시 request의 getParameter 사용 여부) +- fix 브라우져응답시간 기능(USE_TRACE_CLIENT_TIME) 사용간 게더와의 연결이 끊기면 redirection 유발 현상 수정. +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix #8478 USE_JMX 사용 시 클래스수 비정상 표현 수정. + +# 2018.11.28.2.legacy +- fix osm 기동 관련 count 로직 수정. + +# 2018.11.28.1.legacy +- protocol version up to 12 +- imp 일부 설정 imx.prop에서 읽도록 대체(SQL_DETAIL_ELAPSE_LIMIT, INPUT_SPACE_SQL_BIND, SQL_LEFT_TRIM) + - SQL_DETAIL_ELAPSE_LIMIT 삭제, imx.prop SQL_DETAIL_ELAPSE_LIMIT 으로 대체 + - DISABLE_INPUT_SPACE_SQL_BIND 삭제, imx.prop INPUT_SPACE_SQL_BIND 로 대체 + - DISABLE_TRIM_SQL 삭제, imx.prop SQL_LEFT_TRIM 으로 대체 +- imp MTD_BUFFER_SIZE 동적으로 변경 가능하게 수정 +- add TRACE_SIMPLE_METHOD 옵션을 켜는 경우에 include에 포함된 package 들에 한하여 simple method도 모두 calltree에 보여지게 함 +- add #7962 sql seq 패킷 추가 +- add #8124 sql execute count 수집 크기 확장(protocol version 12) +- add 삼성 CELLO 버전에만 추가했었던 GET_SID_WHEN_STMT_LIMIT, CHANGE_DB2_SID_QUERY 옵션 추가 +- add #8171 MTD_ELAPSE_TIME 옵션 추가 +- add DG 분산 기능 추가 +- fix 특정 tibero6 드라이버 관련 버그 수정 +- fix #8192 udp 소켓 생성 시 에러가 발생하는 경우 트랜잭션 종료가 안되는 문제 수정 + +# 2018.10.26.11.legacy +- imp 오류 로그에 대해 DEBUG 옵션 적용 +- imp 게더 연결 재시도 요청을 일정 수치 만큼 지연 시켜 요청하는 알고리즘 적용(DG_RECONNECT_DELAY_TIME) +- add USE_SQL_ELLIPSIS 옵션 추가. (COMPRESS_SQL 옵션이 false 이고 64K 이상의 SQL 수집시 생략 수집) +- fix 라이센스 요청 정보 로직 수정. (version 정보 수정) +- fix SysJNI load 예외처리 수정. (exception -> throwable) +- fix sql id 생성 시 trim 로직 변경 +- fix jspd 암호화시 jspd version UNKNOW 출력 현상 수정. +- fix USE_TRACE_ORACLE 관련 콜트리 bug 수정. + +# 2018.10.25.1.legacy +- fix INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE 옵션명 변경. (DISABLE_INPUT_SPACE_SQL_BIND, DISABLE_TRIM_SQL) + +# 2018.10.23.1.legacy +- add protocol version up to 11 +- add TYPE_REQ_WAS_LICENSE_INFO (RES_WAS_LICENSE_INFO) 패킷 추가 +- imp 라이센스 체크 시점을 프로토콜 버전 교환 이후로 변경 (JVM boot 알람도 이때 날라감) +- fix INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL 옵션명 변경. (INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE) + +# 2018.10.11.4.legacy +- fix #7811 txn sqlid 생성 로직 변경에 따른 수정 및 옵션 추가, INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL + +# 2018.10.11.3.legacy +- fix InetAddress 의 getLocalHost 함수 예외처리. + +# 2018.10.11.1.legacy +- add USE_NEW_IMXTXN_SQL_PACKET 옵션 추가. (신규 통합 sql 패킷 txn 전송, txn 4.00 버전 이상부터 지원) + +# 2018.05.04.23 +- fix XmTcpResWasInfo wasid 마이너스 버그 수정 + +# 2018.05.04.7 +- imp IBM JDK에서 HttpsURLConnection 사용 시 리모트콜 생성할 수 있도록 수정 + +# 2018.05.04.6 +- add sid 수집 제한 옵션 추가(DISABLE_SQL_SID) + +# 2018.05.04.5 +- add HttpClient method로 직접 execute하는 경우에도 etoe 연결되도록 수정 + +# 2018.05.04.3 +- fix 프로토콜 네고시에이션 버그 수정 +- add SQL 별 fetch 정보 수집 제한 옵션 추가(DISABLE_SQL_FETCH) +- add SQL 별 fetch 정보 수집 시간 제한 옵션 추가(SQL_DETAIL_ELAPSE_LIMIT) + +# 2018.05.04.2 +- fix #6677 header에 tid 추가하는 기능 추가(RESP_HEADER_TID) +- fix #6904 jvmstat 패킷 순서 오류 수정 +- fix 버전 교환 오류 수정 +- fix 게더 설정 오류 상태에서 autowasid 발급시 license check를 지속적으로 하는 현상 +- imp #6605 JSPD long class method 처리 관련 logging 내용 개선 요청 +- imp #6820 jspd.x.advice에 설정된 구현부가 jspd.jar에 없을 경우 예외처리 +- imp #6907 java 1.8 metaspace 정보 수집 +- add #6026 InterMax-MaxGauge 연동 기능 추가 +- add #6606 wasid 자동 발급 기능을 구현 +- add #6757 Solaris i386 cpu 지원 바이너리 추가(jni, osm, txn, uts) +- add #6780 HttpsURLConnection 리모트 콜 데이터 수집 +- add aws를 위한 wasid 자동 발급 기능 추가 +- add jspd 구동시 설정값 출력 + +# 2018.03.23.1 +- protocol version up (7 -> 9) +- fix 프로토콜 네고시에이션 버그 수정 +- fix #6169 gRPC 라이브러리와 ImxJNI.getArgs() 함수 충돌 문제수정. +- fix #6370 mssql xadatasource 사용시 db address 생성되지 않는 현상 수정 +- fix #6628 Client IP 수집 이상 현상 수정 +- imp #6011 브라우저 응답시간 수집 기능 개선(protocol version 8, DG.180222.01 이상 호환) +- imp #6226 tibero 6 및 5 jdbc 사용시 옵션 설정없이 모두 수집 가능하도록 수정. +- imp #6259 jspd.dbm 오라클sid 대소문자값 개선 +- imp #6606 normal type (3) auto wasid 발급 기능 +- add #6285 add jtds jdbc 수집하도록 구현. jspd.jdbc.advice 설정 필요(README.md 참조). +- add #6300 edb jdbc 수집. (jspd.jdbc.advice 옵션 추가. README.md 참조) +- add #6302 트랜잭션 memory 사용량 항목 추가(protocol version 8, DG.180222.01 이상 호환) +- add #6368 콜트리 파일,소켓명 별도 수집 기능 구현. (protocol version 9, USE_MTD_EXT 옵션 추가, DG 3월 Release 버전 이상 호환) +- add #6459 Resin 환경에서 커넥션풀 수집 + +# 2018.01.03.1 +- protocol version up (6 -> 7) +- imp #5128 Deadlock 표시 기능 추가 +- imp #5097 root cause exception도 확인하도록 수정 +- imp #5842 GET_SID_WHEN_STMT 옵션 추가. (sid 조회 시점을 첫 쿼리 사용 시점으로 변경) +- imp #6030 getHeaders 사용을 통한 client ip 획득 +- imp #5899 PKT_WAS_STAT(10004) 패킷 수정(txn, sql의 elapse time의 max값을 추가) +- add #5134 관련 콜트리 수집 제한 옵션 MTD_LIMIT 추가(기본 값 10,000) +- fix #4711 localhost 사용시 실제 ip 표현되도록 수정 +- fix #5976 MSSQL fetch count 수집 수정 +- fix #5267 wasid 중복시 재연결 시도 안하게 수정 + +# 2017.10.19 (2017.10.19.1) +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) +- add thread dump max size 지정 옵션 THREAD_DUMP_MAX_SIZE 추가 +- add 로그 경로 변경 기능 추가. (jspd.prop.ini 에 LOG_PATH 옵션 추가. 절대 경로를 입력 하여야 하며 잘못된 경로 입력시 default로그 그대로 사용.) +- fix #4664 jspd.exclude 에 ! 기능을 추가. (!을 prefix로 클래스를 등록하게 되면 무조건 위빙하지 않게 기능 추가, TransactionAwareDataSourceProxy사용 시 pool카운트 비정상 건 처리) +- fix #5812 TRX_NAME_USE_ENCODING, TRX_NAME_ENCODING_FROM, TRX_NAME_ENCODING_TO 옵션 추가. (한글깨짐 처리) +- fix weblogic jta sql db id 미수집 현상 수정 +- fix jboss5 was pool max count 잘못 수집 되는 문제 수정 + +# 2017.09.21 (2017.09.21.1) +- fix #5665 org.apache.commons.dbcp.BasicDataSource 커넥션 풀 수집 수정 + +# 2017.09.12 (2017.09.12.2) +- fix weblogic jta sql db id 미수집 현상 수정 +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) + +# 2017.09.07 (2017.09.07.1) +- 2017.07.21.1 추가 기능 활성화 +- protocol version up (4 -> 6) +- imp thread dump 수집 시 dump를 발생 시킨 시간도 수집 + +# 2017.09.05 (2017.09.05.1) +- fix Servlet api 3.0 미만에서 getStatus관련 에러나는 문제 수정 + +# 2017.08.30 (2017.08.30.3) +- fix WAS ID 자동 발급 관련 버그 수정 + +# 2017.08.29 (2017.08.29.1) +- fix USE_INACTIVE_SOCKET_RT추가 socket rt 설정 시 트랜잭션이 active 되지 않은 상태에서 열린 socket에 대해서 정보 수집이 안되는 문제 (우리은행 인뱅) + +# 2017.08.28 (2017.08.28.1) +- add WAS ID 자동 발급 관련 TYPE_AUTOMATIC_WASID 옵션 추가(1:OpenShift) + +# 2017.08.23 (2017.08.23.1) +- fix weblogic에서 mssql 드라이버 수집이 안되는 문제 (우리은행 APM POC) + +# 2017.08.16 (2017.08.16.1) +- 2017.07.21.1 추가 기능 비활성화 +- protocol version down (5 -> 4) +- imp WebApplication이 아닌 경우에도 EXCLUDE_SERVICE가 적용되도록 수정 +- add RESTful url에서 숫자로만 이루어진 path ### 처리 +- fix MySQL Property 설정을 통해 여러개의 DB ip를 지정하는 경우 수집된 SQL이 화면에 보이지 않는 문제 수정 + +# 2017.07.19 (2017.07.21.1) +- protocol version up (4 -> 5) +- imp fetch count 수집 크기 향상(DataGather.170719.01 이상) +- add bind 변수 암호화 옵션 ENABLE_ENCRYPT_SQL_BIND 추가 +- add login name 암호화 옵션 ENABLE_ENCRYPT_LOGIN_NAME 추가 +- add 암호화 관련 패킷 수정 + +# 2017.07.11 (2017.07.11.1) +- upgrade asm3 to asm5(java8 람다식 지원) +- imp #5323 메모리릭 객체 개수 임계치 초과시 TID, CREATED_TIME 변경 +- add #5273 TXN_ELAPSE_TIME 옵션 추가 (트랜잭션 수집 제한 옵션) +- add #5321 CONVERT_SQL_ASCII_TO 옵션 추가(CONVERT_SQL_ASCII_TO="encoding name") +- add #5194 ojdbc8 지원 +- add #5196 SQL 수집 크기 64K -> 100K로 확장 옵션 USE_LONG_SQL 추가(imxtxn 3.00.17071760 버전 이상 지원) +- add bind 변수 미수집 옵션 DISABLE_SQL_BIND 추가 +- fix #4880 X-Forwarded-For 헤더의 ip가 2개 이상일 경우 수집이 안되던 문제 수정 + +# 2017.07.06 (2017.07.06.1) +- fix jboss7에서 pool state 중 active count 가 안맞는 문제 +- fix websphere7에서 pool state 중 max pool size 가 안맞는 문제 +- fix jmx를 이용한 GC 정보 수집 중 Eden 영역 정보가 일치하지 않는 문제 + +# 2017.07.03 (2017.07.03.1) +- fix info가 없어서 sql text 수집이 안되는 현상 (단 sid가 0으로 나올수는 있으나, 이것은 알수 없는 pool을 사용하는 경우에 발생하는 문제임) + + +# 2017.06.23 (2017.06.23.1) +- add GC지표 수집 시 JMX방식을 사용할 수 있도록 추가 +- add DISABLE_JDBC_ALARM 옵션 + +# 2017.06.19 (2017.06.19.1) +- add SQL별 fetch time, fetch count 수집 +- add IBM Websphere 7.0 was pool 정보 수집 +- fix remote packet 에서 key1, key3이 0인 경우 기본으로 전송을 안하도록 수정 (rmi 디버그 옵션을 켜면 전송함) + +# 2017.05.23 (2017.05.23.1) +- fix IMXAgent.sh 실행 시 에러가 발생할 경우 다시 실행하지 못하던 문제 수정 +- add Raemote Call Log 강화 + +# 2017.04.21 (2017.04.21.1) +- rollback 패킷들이 dg time 사용하도록 (우리은행) + +# 2017.04.20 (2017.04.20.1) +- add #4946 X_XP_REMOTE_RESET옵션 추가 (kbank) +- remove #4946 X_XP_HTTP_RESET옵션 삭제 (kbank) +- fix tcp rmi 에서 C패킷의 open port가 0으로 수집되는 문제 +- fix 패킷들이 dg time 사용하도록 (우리은행) +- fix gc 카운트가 나오지 않음 (우리은행) + + +# 2017.03.29 (2017.03.29.2) +- fix #4714 spring security filter를 거치면 트랜잭션이 누락되는 증상 (평창동계올림픽위원회) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함, 트랜잭션 중간에 전송하는 C패킷에도 동일한 로직 적용 (kbank) + + +# 2017.03.23 (2017.03.23.2) +- add #4946 X_XP_HTTP_RESET옵션 추가 (kbank) +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상2 (다른 tomcat pool 재테스트 필요) (웅진) + + +# 2017.03.16 (2017.03.16.1) +- add jvm state check error log +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상 (다른 tomcat pool 재테스트 필요) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함 (kbank) + + +# 2017.03.09 (2017.03.09.2) +- add rmi log (http class name 출력) (웅진) +- fix weblogic JTSConnection jdbc 지표 수집 불가 문제(한양대, 중앙대학병원) +- fix #4845 tomcat pool에서 jndi name 을 수집하는 경우 추가(웅진) +- fix #4845 tomcat pool 사용시 pool이름이 중복되는 문제(웅진) +- fix #4819 weblogic oracle.jdbc.xa.client.OracleXADataSource 드라이버 지원(한양대, 중앙대학병원) + + +# 2017.02.28 (2017.02.28.1) -- tar package +- fix pid 체크 로직을 3초마다 file modified time을 기준으로 체크 함 + + +# 2017.02.23 (2017.02.23.1) +- merge kbank2 +- update processCheck error message + + +# 2017.02.16 (2017.02.16.1) +- fix jdbc getResultSet() 호출시 rs count, fetch count/time 수집 안되는 문제 +- fix #4574 weblogic 8에서 db create시 null 오류 발생 이슈 +- imp #3181 #4689 구동시 기존 pid로 프로세스 확인하여 중복되면 pid write 건너뜀 (kbank이슈) + + +# 2017-01-16 (2017.01.16.1) +- add socket rt ext 기능 추가 (kbank) +- add txnstate에 setLoginName 함수 추가 (kbank) + + + +# 2017-01-12 (2017.01.12.1) -- tar package +- fix mariadb 오래전 버전(1.3 이하)에서 BCI 예외처리 +- fix tomcat jdbc pool 오류 2 +- fix ibatis 관련 오류 메시지 수정 + + +# 2017-01-09 (2017.01.09.1) +- add #4452 txn_name 수집 기능 추가 (롯데렌탈 BMT 관련) +- fix weblogic 에서 dbname이 제대로 나오지 않는 증상 +- fix tomcat jdbc pool 오류 +- rollback #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 (exception 수집 문제) +- imp #4484 #4481 thread dump 에 호출 thread의 tid, thread id, os thread id 추가로 출력 +- imp jdbc 관련 트랜잭션 예외처리 강화 + + +# 2016-12-28 (2016.12.28.1) +- 릴리즈 + + +# 2016-12-23 (2016.12.23.1) +- fix class load시 deadlock 현상 (SK테크엑스) + +# 2016-12-21 (2016.12.21.3) +- fix #4050 open map이 최초 1회만 발생하여서 osm이 무한히 로딩되는 증상 +- improvement #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 + +# 2016-12-20 (2016.12.20.1) +- fix weblogic에서 db info 수집에 was pool이 잡히는 문제 + +# 2016-12-14 (2016.12.14.1) +- add mariadb db type 추가 (신규로 mariadb를 등록 해봐야함) +- fix weblogic jdbc 지표가 안맞는 문제 (전반적으로 개선) +- fix mariadb fetch count, fetch time 지표 수집 불가 문제 +- fix oracle 12c ojdbc6.jar, ojdbc7.jar 에서 rs count, fetch count, fetch time이 안나오는 문제 + +# 2016-12-13 (2016.12.13.2) -- tar package +- add DG와 버전교환 프로토콜을 사용할지 여부 옵션 추가 (USE_PROTOCOL_VERSION, 기본값: true) false인 경우에 10월 21일자 기준 버전으로 동작함, (값 변경시 재시작필요) +- add #3181 pid 갱신 이슈 대응 코드 추가 (agent를 실행하기 직전에 pid를 체크해서 pid가 다르면 갱신) +- fix #4158 콜트리가 맞지 않는 문제 + +# 2016-12-12 (2016.12.12.3) +- fix jboss에서 rs close count가 맞지 않는 문제 + + +# 2016-12-06 (2016.12.06.6) +- fix jeus6에서 최초 db conn open시에 count가 min pool count까지 합산으로 잡히는 문제 +- fix jeus6에서 mariadb 이전버전에서 전체DB컨넥션수가 안맞는 문제 +- fix mysql 오래된 버전에서 sql text, sql binding이 안되는 문제 +- fix mysql 예전 버전과 새로운 버전과의 충돌문제 해결 +- fix db pool을 사용하지 않으면 conn open count가 안나오는 문제 + + +# 2016-12-05 +- fix JDBC sql 수집시 최초 DB 연결에 경우 수집이 안되는 문제 + + +# 2016-12-02 +- fix mariadb 관련 버그 +- fix mysql 관련 버그 +- fix 예전 mysql 드라이버에서 에러 나는 현상 수정(axa사이트대응) +- Improvement 한전 IP 수집관련 수정 + + +# 2016-12-01 +- enable fetch time, ResultSet open/close(use tcp protocol version 1, DataGather TFT (Build 161130.01) 이상 버전 권장) +- fix #4030 open / close statement 개수 불일치 +- fix #4096 Call Tree에 conn.createStatement(); 잡히지 않는 현상 +- fix #4142 bind 변수 수집 안됨 +- Improvement #3966 [야놀자] maria db 확인 +- Improvement #4145 [한전긴급대응] jspd agent 에 interface 추가 + + +# 2016-11-28 +- disable fetch time, ResultSet open/close +- fix #3828 axa 사이트 이슈 수정 (proframe에서 txn_name_type 설정시 화면이 안나오는 경우) +- fix #3967 altibase sql 실행 했을 때 에러 + + +# 2016-11-16 +- fix #3507 windows 에서 jvm thread count 기능 추가 (java 1.5이상 동작) +- fix #3846 POOL ID 중복 생성 +- fix 불필요한 로그제거 +- improvement JSPD 기동 시 ext.jar 및 pool.jar를 load하도록 수정 + + +# 2016-11-10 +- fix #2993 Connection재사용하여 내용이 다른 리터럴 sql을 여러번 수행시 sql문이 1건만 보이는 현상 +- feature #3552 fetch time, fetch count 구현 및 개선 +- Improvement #3692 WebID값 전송시 cookie를 이용하여 고유한 값을 유지 +- Improvement #3700 jspd udp buffer 동적 클리어 기능 개발 (옵션화) +- Improvement #3782 jspd 버전 확인 할 수 있도록 개선 요청 + + [버전확인 방법] + java -jar jspd.jar -version + + [추가된 옵션] + USE_SESSIONID_FOR_WEBID : true/false 사용하면 webid를 session으로 사용 + UDP_BUFFER_CLEAR_PERIOD : 분 단위, default 6000분, 설정된 시간동안 사용되지 않은 udp buffer 제거 + + +# 2016-11-04 +- fix #3443 #3585 환경 설정 변경 추적 소스 깨짐 +- Improvement #3448 JSPD에서 SQL Text를 UTF-8로 변환 작업 요청 +- Improvement #3429 jspd-하이닉스 remote_call 패킷의 elapse_time이 항상 0 인 문제 +- fix #3609 [s.com] 게더가 hang 일때 비 정상적으로 jspd 랑 게더랑 끊겼다 붙었다 반복하다가 게더랑 연결이 안되는 현상 +- fix #3399 Jboss ConnecionPool 모니터링 개발 요청 + + diff --git a/intermax/2208.06_type3/jspd/license/apache-commons_LICENSE.txt b/intermax/2208.06_type3/jspd/license/apache-commons_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/apache-commons_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type3/jspd/license/asm-LICENSE.txt b/intermax/2208.06_type3/jspd/license/asm-LICENSE.txt new file mode 100755 index 0000000..94f3321 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/asm-LICENSE.txt @@ -0,0 +1,29 @@ +ASM is released under the following 3-Clause BSD License: + +ASM: a very small and fast Java bytecode manipulation framework +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/license/guava_LICENSE.txt b/intermax/2208.06_type3/jspd/license/guava_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/guava_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type3/jspd/license/javassist_License.html b/intermax/2208.06_type3/jspd/license/javassist_License.html new file mode 100755 index 0000000..7d842b4 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/javassist_License.html @@ -0,0 +1,373 @@ + + +Javassist License + + + + +
MOZILLA PUBLIC LICENSE
Version +1.1 +

+


+
+

1. Definitions. +

    1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. +

    1.1. ''Contributor'' means each entity that creates or contributes + to the creation of Modifications. +

    1.2. ''Contributor Version'' means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications made by + that particular Contributor. +

    1.3. ''Covered Code'' means the Original Code or Modifications or + the combination of the Original Code and Modifications, in each case including + portions thereof. +

    1.4. ''Electronic Distribution Mechanism'' means a mechanism + generally accepted in the software development community for the electronic + transfer of data. +

    1.5. ''Executable'' means Covered Code in any form other than Source + Code. +

    1.6. ''Initial Developer'' means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. +

    1.7. ''Larger Work'' means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. +

    1.8. ''License'' means this document. +

    1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. +

    1.9. ''Modifications'' means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: +

      A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. +

      B. Any new file that contains any part of the Original Code or + previous Modifications.
       

    1.10. ''Original Code'' + means Source Code of computer software code which is described in the Source + Code notice required by Exhibit A as Original Code, and which, at the + time of its release under this License is not already Covered Code governed by + this License. +

    1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation,  method, process, and + apparatus claims, in any patent Licensable by grantor. +

    1.11. ''Source Code'' means the preferred form of the Covered Code + for making modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control compilation and + installation of an Executable, or source code differential comparisons against + either the Original Code or another well known, available Covered Code of the + Contributor's choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software is widely + available for no charge. +

    1.12. "You'' (or "Your")  means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this License + or a future version of this License issued under Section 6.1. For legal + entities, "You'' includes any entity which controls, is controlled by, or is + under common control with You. For purposes of this definition, "control'' + means (a) the power, direct or indirect, to cause the direction or management + of such entity, whether by contract or otherwise, or (b) ownership of more + than fifty percent (50%) of the outstanding shares or beneficial ownership of + such entity.

2. Source Code License. +
    2.1. The Initial Developer Grant.
    The Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license, subject to third + party intellectual property claims: +
      (a)  under intellectual property rights (other than + patent or trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original Code (or + portions thereof) with or without Modifications, and/or as part of a Larger + Work; and +

      (b) under Patents Claims infringed by the making, using or selling + of Original Code, to make, have made, use, practice, sell, and offer for + sale, and/or otherwise dispose of the Original Code (or portions thereof). +

        +
        (c) the licenses granted in this Section 2.1(a) and (b) + are effective on the date Initial Developer first distributes Original Code + under the terms of this License. +

        (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) separate + from the Original Code;  or 3) for infringements caused by: i) the + modification of the Original Code or ii) the combination of the Original + Code with other software or devices.
         

      2.2. Contributor + Grant.
      Subject to third party intellectual property claims, each + Contributor hereby grants You a world-wide, royalty-free, non-exclusive + license +

        (a)  under intellectual property rights (other + than patent or trademark) Licensable by Contributor, to use, reproduce, + modify, display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of a Larger + Work; and +

        (b) under Patent Claims infringed by the making, using, or selling + of  Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or portions + thereof); and 2) the combination of  Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). +

        (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of the Covered + Code. +

        (d)    Notwithstanding Section 2.2(b) above, no + patent license is granted: 1) for any code that Contributor has deleted from + the Contributor Version; 2)  separate from the Contributor + Version;  3)  for infringements caused by: i) third party + modifications of Contributor Version or ii)  the combination of + Modifications made by that Contributor with other software  (except as + part of the Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by that + Contributor.

    +


    3. Distribution Obligations. +

      3.1. Application of License.
      The Modifications which You create + or to which You contribute are governed by the terms of this License, + including without limitation Section 2.2. The Source Code version of + Covered Code may be distributed only under the terms of this License or a + future version of this License released under Section 6.1, and You must + include a copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code version + that alters or restricts the applicable version of this License or the + recipients' rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. +

      3.2. Availability of Source Code.
      Any Modification which You + create or to which You contribute must be made available in Source Code form + under the terms of this License either on the same media as an Executable + version or via an accepted Electronic Distribution Mechanism to anyone to whom + you made an Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) months + after the date it initially became available, or at least six (6) months after + a subsequent version of that particular Modification has been made available + to such recipients. You are responsible for ensuring that the Source Code + version remains available even if the Electronic Distribution Mechanism is + maintained by a third party. +

      3.3. Description of Modifications.
      You must cause all Covered + Code to which You contribute to contain a file documenting the changes You + made to create that Covered Code and the date of any change. You must include + a prominent statement that the Modification is derived, directly or + indirectly, from Original Code provided by the Initial Developer and including + the name of the Initial Developer in (a) the Source Code, and (b) in any + notice in an Executable version or related documentation in which You describe + the origin or ownership of the Covered Code. +

      3.4. Intellectual Property Matters +

        (a) Third Party Claims.
        If Contributor has knowledge that a + license under a third party's intellectual property rights is required to + exercise the rights granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code distribution + titled "LEGAL'' which describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If Contributor + obtains such knowledge after the Modification is made available as described + in Section 3.2, Contributor shall promptly modify the LEGAL file in all + copies Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) reasonably + calculated to inform those who received the Covered Code that new knowledge + has been obtained. +

        (b) Contributor APIs.
        If Contributor's Modifications include + an application programming interface and Contributor has knowledge of patent + licenses which are reasonably necessary to implement that API, Contributor + must also include this information in the LEGAL file. +
         

                + (c)    Representations. +
        Contributor represents that, except as disclosed pursuant to Section + 3.4(a) above, Contributor believes that Contributor's Modifications are + Contributor's original creation(s) and/or Contributor has sufficient rights + to grant the rights conveyed by this License.
      +


      3.5. Required Notices.
      You must duplicate the notice in + Exhibit A in each file of the Source Code.  If it is not possible + to put such notice in a particular Source Code file due to its structure, then + You must include such notice in a location (such as a relevant directory) + where a user would be likely to look for such a notice.  If You created + one or more Modification(s) You may add your name as a Contributor to the + notice described in Exhibit A.  You must also duplicate this + License in any documentation for the Source Code where You describe + recipients' rights or ownership rights relating to Covered Code.  You may + choose to offer, and to charge a fee for, warranty, support, indemnity or + liability obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial Developer + or any Contributor. You must make it absolutely clear than any such warranty, + support, indemnity or liability obligation is offered by You alone, and You + hereby agree to indemnify the Initial Developer and every Contributor for any + liability incurred by the Initial Developer or such Contributor as a result of + warranty, support, indemnity or liability terms You offer. +

      3.6. Distribution of Executable Versions.
      You may distribute + Covered Code in Executable form only if the requirements of Section + 3.1-3.5 have been met for that Covered Code, and if You include a + notice stating that the Source Code version of the Covered Code is available + under the terms of this License, including a description of how and where You + have fulfilled the obligations of Section 3.2. The notice must be + conspicuously included in any notice in an Executable version, related + documentation or collateral in which You describe recipients' rights relating + to the Covered Code. You may distribute the Executable version of Covered Code + or ownership rights under a license of Your choice, which may contain terms + different from this License, provided that You are in compliance with the + terms of this License and that the license for the Executable version does not + attempt to limit or alter the recipient's rights in the Source Code version + from the rights set forth in this License. If You distribute the Executable + version under a different license You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by the + Initial Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of any such terms You offer. + +

      3.7. Larger Works.
      You may create a Larger Work by combining + Covered Code with other code not governed by the terms of this License and + distribute the Larger Work as a single product. In such a case, You must make + sure the requirements of this License are fulfilled for the Covered +Code.

    4. Inability to Comply Due to Statute or Regulation. +
      If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute, + judicial order, or regulation then You must: (a) comply with the terms of this + License to the maximum extent possible; and (b) describe the limitations and + the code they affect. Such description must be included in the LEGAL file + described in Section 3.4 and must be included with all distributions of + the Source Code. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it.
    5. Application of this License. +
      This License applies to code to which the Initial Developer has attached + the notice in Exhibit A and to related Covered Code.
    6. Versions +of the License. +
      6.1. New Versions.
      Netscape Communications Corporation + (''Netscape'') may publish revised and/or new versions of the License from + time to time. Each version will be given a distinguishing version number. +

      6.2. Effect of New Versions.
      Once Covered Code has been + published under a particular version of the License, You may always continue + to use it under the terms of that version. You may also choose to use such + Covered Code under the terms of any subsequent version of the License + published by Netscape. No one other than Netscape has the right to modify the + terms applicable to Covered Code created under this License. +

      6.3. Derivative Works.
      If You create or use a modified version + of this License (which you may only do in order to apply it to code which is + not already Covered Code governed by this License), You must (a) rename Your + license so that the phrases ''Mozilla'', ''MOZILLAPL'', ''MOZPL'', + ''Netscape'', "MPL", ''NPL'' or any confusingly similar phrase do not appear + in your license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license contains + terms which differ from the Mozilla Public License and Netscape Public + License. (Filling in the name of the Initial Developer, Original Code or + Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.)

    7. +DISCLAIMER OF WARRANTY. +
      COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, + FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE + QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED + CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY + OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR + CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS + LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER.
    8. TERMINATION. +
      8.1.  This License and the rights granted hereunder will + terminate automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall survive any + termination of this License. Provisions which, by their nature, must remain in + effect beyond the termination of this License shall survive. +

      8.2.  If You initiate litigation by asserting a patent + infringement claim (excluding declatory judgment actions) against Initial + Developer or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant")  alleging that: +

      (a)  such Participant's Contributor Version directly or + indirectly infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively, unless if within 60 + days after receipt of notice You either: (i)  agree in writing to pay + Participant a mutually agreeable reasonable royalty for Your past and future + use of Modifications made by such Participant, or (ii) withdraw Your + litigation claim with respect to the Contributor Version against such + Participant.  If within 60 days of notice, a reasonable royalty and + payment arrangement are not mutually agreed upon in writing by the parties or + the litigation claim is not withdrawn, the rights granted by Participant to + You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. +

      (b)  any software, hardware, or device, other than such + Participant's Contributor Version, directly or indirectly infringes any + patent, then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that Participant. +

      8.3.  If You assert a patent infringement claim against + Participant alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as by + license or settlement) prior to the initiation of patent infringement + litigation, then the reasonable value of the licenses granted by such + Participant under Sections 2.1 or 2.2 shall be taken into account in + determining the amount or value of any payment or license. +

      8.4.  In the event of termination under Sections 8.1 or 8.2 + above,  all end user license agreements (excluding distributors and + resellers) which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination.

    9. LIMITATION OF +LIABILITY. +
      UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING + NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY + OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY + OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, + INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT + LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR + MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH + PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS + LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR + LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND + LIMITATION MAY NOT APPLY TO YOU.
    10. U.S. GOVERNMENT END USERS. +
      The Covered Code is a ''commercial item,'' as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and + ''commercial computer software documentation,'' as such terms are used in 48 + C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. + 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users + acquire Covered Code with only those rights set forth herein.
    11. +MISCELLANEOUS. +
      This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by California law provisions + (except to the extent applicable law, if any, provides otherwise), excluding + its conflict-of-law provisions. With respect to disputes in which at least one + party is a citizen of, or an entity chartered or registered to do business in + the United States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with the + losing party responsible for costs, including without limitation, court costs + and reasonable attorneys' fees and expenses. The application of the United + Nations Convention on Contracts for the International Sale of Goods is + expressly excluded. Any law or regulation which provides that the language of + a contract shall be construed against the drafter shall not apply to this + License.
    12. RESPONSIBILITY FOR CLAIMS. +
      As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out of its + utilization of rights under this License and You agree to work with Initial + Developer and Contributors to distribute such responsibility on an equitable + basis. Nothing herein is intended or shall be deemed to constitute any + admission of liability.
    13. MULTIPLE-LICENSED CODE. +
      Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed".  "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under Your + choice of the MPL or the alternative licenses, if any, specified by the + Initial Developer in the file described in Exhibit A.
    +


    EXHIBIT A -Mozilla Public License. +

      The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at +
      http://www.mozilla.org/MPL/ +

      Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF
      ANY KIND, either express or implied. See the License + for the specific language governing rights and
      limitations under the + License. +

      The Original Code is Javassist. +

      The Initial Developer of the Original Code is Shigeru Chiba. + Portions created by the Initial Developer are
        + Copyright (C) 1999- Shigeru Chiba. All Rights Reserved. +

      Contributor(s): __Bill Burke, Jason T. Greene______________. + +

      Alternatively, the contents of this software may be used under the +terms of the GNU Lesser General Public License Version 2.1 or later +(the "LGPL"), or the Apache License Version 2.0 (the "AL"), +in which case the provisions of the LGPL or the AL are applicable +instead of those above. If you wish to allow use of your version of +this software only under the terms of either the LGPL or the AL, and not to allow others to +use your version of this software under the terms of the MPL, indicate +your decision by deleting the provisions above and replace them with +the notice and other provisions required by the LGPL or the AL. If you do not +delete the provisions above, a recipient may use your version of this +software under the terms of any one of the MPL, the LGPL or the AL. + +

    + + diff --git a/intermax/2208.06_type3/jspd/license/logback_LICENSE.txt b/intermax/2208.06_type3/jspd/license/logback_LICENSE.txt new file mode 100755 index 0000000..af39fcb --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/logback_LICENSE.txt @@ -0,0 +1,15 @@ +Logback LICENSE +--------------- + +Logback: the reliable, generic, fast and flexible logging framework. +Copyright (C) 1999-2015, QOS.ch. All rights reserved. + +This program and the accompanying materials are dual-licensed under +either the terms of the Eclipse Public License v1.0 as published by +the Eclipse Foundation + + or (per the licensee's choosing) + +under the terms of the GNU Lesser General Public License version 2.1 +as published by the Free Software Foundation. + diff --git a/intermax/2208.06_type3/jspd/license/netty_LICENSE.txt b/intermax/2208.06_type3/jspd/license/netty_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/netty_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type3/jspd/license/slf4j_LICENSE.txt b/intermax/2208.06_type3/jspd/license/slf4j_LICENSE.txt new file mode 100755 index 0000000..315bd49 --- /dev/null +++ b/intermax/2208.06_type3/jspd/license/slf4j_LICENSE.txt @@ -0,0 +1,24 @@ +Copyright (c) 2004-2017 QOS.ch +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + diff --git a/intermax/2208.06_type3/jspd/log/imx/imxosm.log b/intermax/2208.06_type3/jspd/log/imx/imxosm.log new file mode 100644 index 0000000..422ebea --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/imx/imxosm.log @@ -0,0 +1,4031 @@ +[29 09:43:52][8807][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[29 09:43:52][8807][INFO][check_double_execution] write pid. 8807 +[29 09:43:52][8807][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[29 09:43:52][8807][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 09:43:52][8807][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[29 09:43:52][8807][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 09:43:52][8807][INFO][read_properties_common] imx.prop CPU100:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 09:43:52][8807][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 09:43:52][8807][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[29 09:43:52][8807][INFO][check_os_info] OS Name : Linux +[29 09:43:52][8807][INFO][check_os_info] Nodename : kkam +[29 09:43:52][8807][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[29 09:43:52][8807][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[29 09:43:52][8807][INFO][check_os_info] Machine : x86_64 +[29 09:43:52][8807][INFO][MAIN] initialize resources. +[29 09:43:52][8807][INFO][osm_module_init] common.immf open success. +[29 09:43:52][8807][INFO][initialize_offset] initialize offset success! d67ab000 d67ab050 d67bb060 +[29 09:43:52][8807][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[29 09:43:52][8807][INFO][read_properties] jspd.prop TXN_IP= +[29 09:43:52][8807][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[29 09:43:52][8807][INFO][read_properties] jspd.prop UTS_IP= +[29 09:43:52][8807][INFO][run_thread] create success. THR_DGCONN (0) +[29 09:43:52][8807][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 09:43:52][8807][INFO][thr_DGConn] dg=100007f:1314 +[29 09:43:52][8807][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 09:43:52][8807][INFO][get_Hostname] Hostname:[kkam] +[29 09:43:52][8807][INFO][get_xm_sys_hostkey] xm_sys_hostkey:58D9286D +[29 09:43:52][8807][INFO][get_HostKey] Hostkey:[58D9286D] +[29 09:43:52][8807][INFO][thr_DGConn] connection success. +[29 09:43:52][8807][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 09:43:52][8807][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 09:43:52][8807][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 09:43:52][8807][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[29 09:43:52][8807][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 09:43:52][8807][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[29 09:43:52][8807][INFO][thread_docker_stat] thread terminate. +[29 09:43:52][8807][INFO][run_thread] create success. THR_JVMALERT (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_WASSTAT (0) +[29 09:44:01][8807][INFO][process_msg] timesync diff:-765 +[29 09:45:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 09:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 09:55:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:00:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:00:09][8807][INFO][process_msg] timesync diff:-762 +[29 10:05:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 10:10:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:11:00][8807][ERRO][processing_socket] get packet data failed(-1) +[29 10:11:00][8807][INFO][DisconnectDGServer] sock:3 +[29 10:11:05][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:10][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:15][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:20][8807][INFO][thr_DGConn] connection success. +[29 10:11:20][8807][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 10:11:20][8807][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 10:11:20][8807][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 10:11:29][8807][INFO][process_msg] timesync diff:-341 +[29 10:13:56][8807][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=2575 module_type=1001 jvmtype=JSPD +[29 10:13:56][8807][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:2575 module_type:1001] +[29 10:13:57][8807][ERRO][MFJ-OSM-00020090] File open failed. FileName:/app/tmax/intermax/2208.06/jspd/data/agent/imxtxn (2) +[29 10:13:57][8807][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[29 10:13:59][8807][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=2575 prev_jvmpid=2575 +[29 10:13:59][8807][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:2575 module_type:1001] +[29 10:14:17][8807][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=2861 module_type=1001 jvmtype=JSPD +[29 10:14:17][8807][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:2861 module_type:1001] +[29 10:15:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:20:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:25:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:35:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:40:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:45:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:50:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:55:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:00:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:00:09][8807][INFO][process_msg] timesync diff:-753 +[29 11:05:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 11:10:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:15:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:20:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:25:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:35:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 11:40:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:45:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:55:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:00:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 12:00:09][8807][INFO][process_msg] timesync diff:-281 +[29 12:05:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:10:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:15:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:20:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 12:25:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:35:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:40:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:45:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:55:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:00:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:00:09][8807][INFO][process_msg] timesync diff:-174 +[29 13:05:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:10:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:15:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:20:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:25:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:30:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:35:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 13:40:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:45:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 13:50:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:50:50][8807][INFO][send_was_alert] (200102) alert_name:JVM Down pid:2575 +[29 13:50:50][8807][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=2575 +[29 13:50:50][8807][INFO][send_was_alert] (200102) alert_name:JVM Down pid:2861 +[29 13:50:50][8807][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=2861 +[29 13:50:50][8807][INFO][thread_wasstat] ALL JVM Down. 2(2) +[29 13:50:57][8807][INFO][thr_jvm_alert] finish normally. +[29 13:50:57][8807][INFO][thr_osm_module] finish normally. +[29 13:50:57][8807][INFO][thread_filesystem] finish normally. +[29 13:50:57][8807][INFO][process_main] finished. +[29 13:50:57][8807][INFO][thread_osstat_proclist] finish normally. +[29 13:50:57][8807][INFO][thread_shellcmd] finish normally. +[29 13:50:57][8807][INFO][DisconnectDGServer] sock:3 +[29 13:50:57][8807][INFO][thd_DGConn] finish normally. +[29 13:50:57][8807][INFO][thr_DGConn_sender] finish normally. +[29 13:50:59][8807][INFO][MAIN] imxosm terminated normally. +[29 13:51:00][8807][INFO][exit_handler] terminated. +[29 13:55:08][29962][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[29 13:55:08][29962][INFO][check_double_execution] write pid. 29962 +[29 13:55:08][29962][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[29 13:55:08][29962][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 13:55:08][29962][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[29 13:55:08][29962][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 13:55:08][29962][INFO][read_properties_common] imx.prop CPU100:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 13:55:08][29962][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 13:55:08][29962][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[29 13:55:08][29962][INFO][check_os_info] OS Name : Linux +[29 13:55:08][29962][INFO][check_os_info] Nodename : kkam +[29 13:55:08][29962][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[29 13:55:08][29962][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[29 13:55:08][29962][INFO][check_os_info] Machine : x86_64 +[29 13:55:08][29962][INFO][MAIN] initialize resources. +[29 13:55:08][29962][INFO][osm_module_init] common.immf open success. +[29 13:55:08][29962][INFO][initialize_offset] initialize offset success! 3ce84000 3ce84050 3ce94060 +[29 13:55:08][29962][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[29 13:55:08][29962][INFO][read_properties] jspd.prop TXN_IP= +[29 13:55:08][29962][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[29 13:55:08][29962][INFO][read_properties] jspd.prop UTS_IP= +[29 13:55:08][29962][INFO][run_thread] create success. THR_DGCONN (0) +[29 13:55:08][29962][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 13:55:08][29962][INFO][thr_DGConn] dg=100007f:1314 +[29 13:55:08][29962][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 13:55:08][29962][INFO][get_Hostname] Hostname:[kkam] +[29 13:55:08][29962][INFO][get_xm_sys_hostkey] xm_sys_hostkey:58D9286D +[29 13:55:08][29962][INFO][get_HostKey] Hostkey:[58D9286D] +[29 13:55:08][29962][INFO][thr_DGConn] connection success. +[29 13:55:08][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 13:55:08][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 13:55:08][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 13:55:09][29962][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[29 13:55:09][29962][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_JVMALERT (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_WASSTAT (0) +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=2575 module_type=0 jvmtype=JVM +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=2861 module_type=0 jvmtype=JVM +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=29847 module_type=1001 jvmtype=JSPD +[29 13:55:09][29962][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=2575 +[29 13:55:09][29962][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=2861 +[29 13:55:09][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 13:55:09][29962][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[29 13:55:09][29962][INFO][thread_docker_stat] thread terminate. +[29 13:55:12][29962][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[29 13:55:18][29962][INFO][process_msg] timesync diff:-192 +[29 13:55:26][29962][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=1001 jvmtype=JSPD +[29 13:55:26][29962][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:30137 module_type:1001] +[29 13:58:35][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:30137 +[29 13:58:35][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=30137 +[29 14:00:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:00:09][29962][INFO][process_msg] timesync diff:-675 +[29 14:05:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:05:35][29962][ERRO][processing_socket] get packet data failed(-1) +[29 14:05:35][29962][INFO][DisconnectDGServer] sock:3 +[29 14:05:38][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=29847 +[29 14:05:40][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 14:05:45][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 14:05:50][29962][INFO][thr_DGConn] connection success. +[29 14:05:50][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 14:05:50][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 14:05:50][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 14:05:50][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=29847 prev_jvmpid=29847 +[29 14:05:50][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 14:05:50][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 14:06:00][29962][INFO][process_msg] timesync diff:-456 +[29 14:06:35][29962][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=1001 jvmtype=JSPD +[29 14:06:35][29962][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:6823 module_type:1001] +[29 14:06:38][29962][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=6823 prev_jvmpid=6823 +[29 14:06:38][29962][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:6823 module_type:1001] +[29 14:07:20][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:6823 +[29 14:07:20][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=8 jvmpid=6823 +[29 14:10:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:11:02][29962][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=9985 module_type=1001 jvmtype=JSPD +[29 14:11:02][29962][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:9985 module_type:1001] +[29 14:11:29][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9985 +[29 14:11:29][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=9 jvmpid=9985 +[29 14:11:50][29962][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=10666 prev_jvmpid=0 +[29 14:11:50][29962][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:10666 module_type:1001] +[29 14:15:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:25:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:30:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:35:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:40:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:45:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:50:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:55:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:00:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:00:09][29962][INFO][process_msg] timesync diff:-796 +[29 15:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:15:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:20:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 15:25:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:30:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:35:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:40:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:45:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:50:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:55:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 16:00:00][29962][INFO][info_log] current tcp_queue[4] skip[0] +[29 16:00:09][29962][INFO][process_msg] timesync diff:-458 +[29 16:02:25][29962][ERRO][processing_socket] get packet data failed(-1) +[29 16:02:25][29962][INFO][DisconnectDGServer] sock:3 +[29 16:02:26][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=29847 +[29 16:02:26][29962][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=0 prev_jvmpid=10666 +[29 16:02:30][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:02:35][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:02:40][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:06:40][29962][INFO][thr_DGConn] connection success. +[29 16:06:40][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 16:06:40][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 16:06:41][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[29 16:06:44][29962][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=10666 prev_jvmpid=0 +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:44][29962][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=29847 prev_jvmpid=0 +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:47][29962][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=10666 prev_jvmpid=10666 +[29 16:06:47][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:47][29962][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=29847 prev_jvmpid=29847 +[29 16:06:47][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:49][29962][INFO][process_msg] timesync diff:-226 +[29 16:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:15:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:25:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:30:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:35:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:40:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:45:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:50:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:55:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:00:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:00:09][29962][INFO][process_msg] timesync diff:-403 +[29 17:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:15:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:25:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:30:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 17:35:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:40:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:43:00][29962][INFO][get_dn_process] get_process_stat() has failed.[pid:32250] +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:45:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:50:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:55:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 18:00:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 18:00:09][29962][INFO][process_msg] timesync diff:-521 +[29 18:01:50][29962][ERRO][MFJ-OSM-00040050] SIGTERM sig caught. +[29 18:01:50][29962][ERRO][xm_debug_logging] main_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/main.c][575] +[29 18:01:50][29962][ERRO][xm_debug_logging] dgconn_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][963] +[29 18:01:50][29962][ERRO][xm_debug_logging] dgconn_sender_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][315] +[29 18:01:50][29962][ERRO][xm_debug_logging] os_stat_proc_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][349] +[29 18:01:50][29962][ERRO][xm_debug_logging] docker_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][527] +[29 18:01:50][29962][ERRO][xm_debug_logging] shellcmd_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_shellcmd.c][312] +[29 18:01:50][29962][ERRO][xm_debug_logging] filesystem_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_fs.c][82] +[29 18:01:50][29962][ERRO][xm_debug_logging] osm_module_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][913] +[29 18:01:50][29962][ERRO][xm_debug_logging] was_jvm_alert_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][817] +[29 18:01:50][29962][ERRO][xm_debug_logging] was_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][661] +[29 18:01:50][29962][ERRO][MFJ-OSM-00040040] SIGHUP sig caught +[29 18:01:50][29962][INFO][exit_handler] terminated. +[06 17:05:15][9278][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[06 17:05:15][9278][INFO][check_double_execution] write pid. 9278 +[06 17:05:15][9278][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[06 17:05:15][9278][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[06 17:05:15][9278][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[06 17:05:15][9278][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop DGADDR_LIST= +[06 17:05:15][9278][INFO][read_properties_common] imx.prop CPU100:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[06 17:05:15][9278][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[06 17:05:15][9278][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[06 17:05:15][9278][INFO][check_os_info] OS Name : Linux +[06 17:05:15][9278][INFO][check_os_info] Nodename : kkam +[06 17:05:15][9278][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[06 17:05:15][9278][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[06 17:05:15][9278][INFO][check_os_info] Machine : x86_64 +[06 17:05:15][9278][INFO][MAIN] initialize resources. +[06 17:05:15][9278][INFO][osm_module_init] common.immf open success. +[06 17:05:15][9278][INFO][initialize_offset] initialize offset success! 27608000 27608050 27618060 +[06 17:05:15][9278][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[06 17:05:15][9278][INFO][read_properties] jspd.prop TXN_IP= +[06 17:05:15][9278][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[06 17:05:15][9278][INFO][read_properties] jspd.prop UTS_IP= +[06 17:05:15][9278][INFO][run_thread] create success. THR_DGCONN (0) +[06 17:05:15][9278][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[06 17:05:15][9278][INFO][thr_DGConn] dg=100007f:1314 +[06 17:05:15][9278][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[06 17:05:15][9278][INFO][get_Hostname] Hostname:[kkam] +[06 17:05:15][9278][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BEA19574 +[06 17:05:15][9278][INFO][get_HostKey] Hostkey:[BEA19574] +[06 17:05:15][9278][INFO][thr_DGConn] connection success. +[06 17:05:15][9278][INFO][send_identity_unite]host_key[BEA19574],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[06 17:05:15][9278][INFO][thr_DGConn] sock(3),data gather connect(1) +[06 17:05:15][9278][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[06 17:05:15][9278][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[06 17:05:15][9278][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_SHELLCMD (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_FILESYSTEM (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_OSM_MODULE (0) +[06 17:05:15][9278][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[06 17:05:15][9278][INFO][thread_docker_stat] thread terminate. +[06 17:05:15][9278][INFO][run_thread] create success. THR_JVMALERT (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_WASSTAT (0) +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=10666 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=9167 module_type=1001 jvmtype=JSPD +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=0 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=0 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=10666 +[06 17:05:15][9278][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:9167 module_type:1001] +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=30137 +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=6823 +[06 17:05:18][9278][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[06 17:05:24][9278][INFO][process_msg] timesync diff:-957 +[06 17:05:38][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=9511 prev_jvmpid=0 +[06 17:05:38][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:9511 module_type:1001] +[06 17:05:38][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:9511 module_type:1001] +[06 17:06:00][9278][INFO][get_dn_process] get_process_stat() has failed.[pid:9872] +[06 17:07:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:10:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:14:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:15:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:20:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:25:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:28:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:30:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:35:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:40:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:45:00][9278][INFO][info_log] current tcp_queue[4] skip[0] +[06 17:50:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:55:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 18:00:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:00:09][9278][INFO][process_msg] timesync diff:-572 +[06 18:05:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:10:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:15:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:16:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 18:20:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 18:25:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:30:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:35:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:40:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:45:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:50:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:55:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:58:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:00:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 19:00:09][9278][INFO][process_msg] timesync diff:-729 +[06 19:04:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:05:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 19:09:59][9278][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9167 +[06 19:09:59][9278][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=9167 +[06 19:10:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:02][9278][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9511 +[06 19:10:02][9278][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=9511 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:14:35][9278][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=4310 prev_jvmpid=0 +[06 19:14:35][9278][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:4310 module_type:1001] +[06 19:14:59][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=4620 prev_jvmpid=0 +[06 19:14:59][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[06 19:15:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 19:15:02][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=4620 prev_jvmpid=4620 +[06 19:15:02][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[06 19:20:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 19:25:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 19:27:07][9278][ERRO][MFJ-OSM-00040050] SIGTERM sig caught. +[06 19:27:07][9278][ERRO][xm_debug_logging] main_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/main.c][575] +[06 19:27:07][9278][ERRO][xm_debug_logging] dgconn_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][963] +[06 19:27:07][9278][ERRO][xm_debug_logging] dgconn_sender_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][315] +[06 19:27:07][9278][ERRO][xm_debug_logging] os_stat_proc_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][349] +[06 19:27:07][9278][ERRO][xm_debug_logging] docker_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][527] +[06 19:27:07][9278][ERRO][xm_debug_logging] shellcmd_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_shellcmd.c][312] +[06 19:27:07][9278][ERRO][xm_debug_logging] filesystem_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_fs.c][82] +[06 19:27:07][9278][ERRO][xm_debug_logging] osm_module_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][913] +[06 19:27:07][9278][ERRO][xm_debug_logging] was_jvm_alert_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][817] +[06 19:27:07][9278][ERRO][xm_debug_logging] was_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][661] +[06 19:27:07][9278][INFO][thr_DGConn_sender] finish normally. +[06 19:27:08][9278][INFO][thread_osstat_proclist] finish normally. +[06 19:27:08][9278][INFO][thread_filesystem] finish normally. +[06 19:27:08][9278][INFO][thr_jvm_alert] finish normally. +[06 19:27:08][9278][INFO][thr_osm_module] finish normally. +[06 19:27:08][9278][INFO][thread_shellcmd] finish normally. +[06 19:27:08][9278][INFO][exit_handler] terminated. +[03 10:00:17][20428][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 10:00:17][20428][INFO][check_double_execution] write pid. 20428 +[03 10:00:17][20428][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 10:00:17][20428][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 10:00:17][20428][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 10:00:17][20428][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 10:00:17][20428][INFO][read_properties_common] imx.prop CPU100:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 10:00:17][20428][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 10:00:17][20428][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 10:00:17][20428][INFO][check_os_info] OS Name : Linux +[03 10:00:17][20428][INFO][check_os_info] Nodename : kkam +[03 10:00:17][20428][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 10:00:17][20428][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 10:00:17][20428][INFO][check_os_info] Machine : x86_64 +[03 10:00:17][20428][INFO][MAIN] initialize resources. +[03 10:00:17][20428][INFO][osm_module_init] common.immf open success. +[03 10:00:17][20428][INFO][initialize_offset] initialize offset success! fe89c000 fe89c050 fe8ac060 +[03 10:00:17][20428][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 10:00:17][20428][INFO][read_properties] jspd.prop TXN_IP= +[03 10:00:17][20428][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 10:00:17][20428][INFO][read_properties] jspd.prop UTS_IP= +[03 10:00:17][20428][INFO][run_thread] create success. THR_DGCONN (0) +[03 10:00:17][20428][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 10:00:17][20428][INFO][thr_DGConn] dg=100007f:1314 +[03 10:00:17][20428][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 10:00:17][20428][INFO][get_Hostname] Hostname:[kkam] +[03 10:00:17][20428][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 10:00:17][20428][INFO][get_HostKey] Hostkey:[BA589C71] +[03 10:00:17][20428][INFO][thr_DGConn] connection success. +[03 10:00:17][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:00:17][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:00:17][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:00:18][20428][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 10:00:18][20428][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 10:00:18][20428][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 10:00:18][20428][INFO][thread_docker_stat] thread terminate. +[03 10:00:18][20428][INFO][run_thread] create success. THR_JVMALERT (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_WASSTAT (0) +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=20294 module_type=1001 jvmtype=JSPD +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=0 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[03 10:00:18][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:20294 module_type:1001] +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=30137 +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=6823 +[03 10:00:21][20428][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 10:00:26][20428][INFO][process_msg] timesync diff:-40 +[03 10:00:29][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=20544 prev_jvmpid=0 +[03 10:00:29][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:00:29][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:00:32][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=20544 prev_jvmpid=20544 +[03 10:00:32][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:05:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:10:00][20428][INFO][info_log] current tcp_queue[2] skip[0] +[03 10:15:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:15:00][20428][INFO][info_log] current tcp_queue[5] skip[0] +[03 10:20:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:24:56][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:20294 +[03 10:24:56][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=20294 +[03 10:24:59][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:20544 +[03 10:24:59][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=20544 +[03 10:25:00][20428][INFO][info_log] current tcp_queue[3] skip[0] +[03 10:25:00][20428][INFO][get_dn_process] get_process_stat() has failed.[pid:5824] +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:28:47][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=8724 prev_jvmpid=0 +[03 10:28:47][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:8724 module_type:1001] +[03 10:28:50][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=8724 prev_jvmpid=8724 +[03 10:28:50][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:8724 module_type:1001] +[03 10:28:59][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=8924 prev_jvmpid=0 +[03 10:28:59][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:8924 module_type:1001] +[03 10:29:02][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=8924 prev_jvmpid=8924 +[03 10:29:02][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:8924 module_type:1001] +[03 10:30:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:30:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:34:20][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8724 +[03 10:34:20][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=8724 +[03 10:34:23][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8924 +[03 10:34:23][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=8924 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][info_log] current tcp_queue[12] skip[0] +[03 10:36:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=0 +[03 10:36:41][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:36:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=0 +[03 10:36:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:40:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:42:39][20428][ERRO][processing_socket] get packet data failed(-1) +[03 10:42:39][20428][INFO][DisconnectDGServer] sock:3 +[03 10:42:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=14890 +[03 10:42:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=0 prev_jvmpid=15118 +[03 10:42:44][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:42:49][20428][INFO][thr_DGConn] connection success. +[03 10:42:49][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:42:49][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:42:49][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:42:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=14890 +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:42:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=15118 +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:42:58][20428][INFO][process_msg] timesync diff:-427 +[03 10:45:00][20428][INFO][info_log] current tcp_queue[4] skip[0] +[03 10:47:17][20428][ERRO][processing_socket] get packet data failed(-1) +[03 10:47:17][20428][INFO][DisconnectDGServer] sock:3 +[03 10:47:20][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=14890 +[03 10:47:20][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=0 prev_jvmpid=15118 +[03 10:47:22][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:47:27][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:47:32][20428][INFO][thr_DGConn] connection success. +[03 10:47:32][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:47:32][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:47:32][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:47:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=14890 +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:47:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=15118 +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:47:41][20428][INFO][process_msg] timesync diff:-214 +[03 10:49:26][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:14890 +[03 10:49:26][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=14890 +[03 10:49:29][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15118 +[03 10:49:29][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=15118 +[03 10:50:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:54:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=29251 prev_jvmpid=0 +[03 10:54:38][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:38][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=29251 prev_jvmpid=29251 +[03 10:54:41][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:50][20428][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=29448 prev_jvmpid=0 +[03 10:54:50][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:54:50][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:54:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=29448 prev_jvmpid=29448 +[03 10:54:53][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:55:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:57:23][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:29251 +[03 10:57:23][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=8 jvmpid=29251 +[03 10:57:26][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:29448 +[03 10:57:26][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=9 jvmpid=29448 +[03 10:57:26][20428][INFO][thread_wasstat] ALL JVM Down. 6(6) +[03 10:57:33][20428][INFO][thr_osm_module] finish normally. +[03 10:57:33][20428][INFO][thread_osstat_proclist] finish normally. +[03 10:57:33][20428][INFO][thr_jvm_alert] finish normally. +[03 10:57:33][20428][INFO][process_main] finished. +[03 10:57:33][20428][INFO][thread_filesystem] finish normally. +[03 10:57:33][20428][INFO][thread_shellcmd] finish normally. +[03 10:57:33][20428][INFO][thr_DGConn_sender] finish normally. +[03 10:57:33][20428][INFO][DisconnectDGServer] sock:3 +[03 10:57:33][20428][INFO][thd_DGConn] finish normally. +[03 10:57:35][20428][INFO][MAIN] imxosm terminated normally. +[03 10:57:36][20428][INFO][exit_handler] terminated. +[03 11:03:53][4565][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 11:03:53][4565][INFO][check_double_execution] write pid. 4565 +[03 11:03:53][4565][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 11:03:53][4565][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:03:53][4565][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 11:03:53][4565][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 11:03:53][4565][INFO][read_properties_common] imx.prop CPU100:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 11:03:53][4565][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 11:03:53][4565][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 11:03:53][4565][INFO][check_os_info] OS Name : Linux +[03 11:03:53][4565][INFO][check_os_info] Nodename : kkam +[03 11:03:53][4565][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 11:03:53][4565][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 11:03:53][4565][INFO][check_os_info] Machine : x86_64 +[03 11:03:53][4565][INFO][MAIN] initialize resources. +[03 11:03:53][4565][INFO][osm_module_init] common.immf open success. +[03 11:03:53][4565][INFO][initialize_offset] initialize offset success! 4889e000 4889e050 488ae060 +[03 11:03:53][4565][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 11:03:53][4565][INFO][read_properties] jspd.prop TXN_IP= +[03 11:03:53][4565][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 11:03:53][4565][INFO][read_properties] jspd.prop UTS_IP= +[03 11:03:53][4565][INFO][run_thread] create success. THR_DGCONN (0) +[03 11:03:53][4565][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 11:03:53][4565][INFO][thr_DGConn] dg=100007f:1314 +[03 11:03:53][4565][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 11:03:53][4565][INFO][get_Hostname] Hostname:[kkam] +[03 11:03:53][4565][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 11:03:53][4565][INFO][get_HostKey] Hostkey:[BA589C71] +[03 11:03:53][4565][INFO][thr_DGConn] connection success. +[03 11:03:53][4565][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 11:03:53][4565][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 11:03:53][4565][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 11:03:53][4565][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 11:03:53][4565][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_JVMALERT (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_WASSTAT (0) +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=1001 jvmtype=JSPD +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=1001 jvmtype=JSPD +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[03 11:03:53][4565][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:4310 module_type:1001] +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[03 11:03:53][4565][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:4418 module_type:1001] +[03 11:03:53][4565][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 11:03:53][4565][INFO][thread_docker_stat] thread terminate. +[03 11:03:54][4565][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 11:04:00][4565][INFO][get_dn_process] get_process_stat() has failed.[pid:4714] +[03 11:04:02][4565][INFO][process_msg] timesync diff:-732 +[03 11:04:02][4565][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=1001 jvmtype=JSPD +[03 11:04:02][4565][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:4665 module_type:1001] +[03 11:04:05][4565][INFO][read_all_jvm_pids] modified jvm pid idx=7 wasid=11 jvmpid=4665 prev_jvmpid=4665 +[03 11:04:05][4565][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:4665 module_type:1001] +[03 11:05:00][4565][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:05:00][4565][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:05:00][4565][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4310 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=4310 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4418 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=10 jvmpid=4418 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4665 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=11 jvmpid=4665 +[03 11:05:11][4565][INFO][thread_wasstat] ALL JVM Down. 8(8) +[03 11:05:18][4565][INFO][thread_osstat_proclist] finish normally. +[03 11:05:18][4565][INFO][thr_osm_module] finish normally. +[03 11:05:18][4565][INFO][process_main] finished. +[03 11:05:18][4565][INFO][thread_filesystem] finish normally. +[03 11:05:18][4565][INFO][thr_jvm_alert] finish normally. +[03 11:05:18][4565][INFO][thr_DGConn_sender] finish normally. +[03 11:05:18][4565][INFO][DisconnectDGServer] sock:3 +[03 11:05:18][4565][INFO][thd_DGConn] finish normally. +[03 11:05:18][4565][INFO][thread_shellcmd] finish normally. +[03 11:05:20][4565][INFO][MAIN] imxosm terminated normally. +[03 11:05:21][4565][INFO][exit_handler] terminated. +[03 11:08:43][8480][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 11:08:43][8480][INFO][check_double_execution] write pid. 8480 +[03 11:08:43][8480][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 11:08:43][8480][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:08:43][8480][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 11:08:43][8480][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 11:08:43][8480][INFO][read_properties_common] imx.prop CPU100:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 11:08:43][8480][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 11:08:43][8480][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 11:08:43][8480][INFO][check_os_info] OS Name : Linux +[03 11:08:43][8480][INFO][check_os_info] Nodename : kkam +[03 11:08:43][8480][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 11:08:43][8480][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 11:08:43][8480][INFO][check_os_info] Machine : x86_64 +[03 11:08:43][8480][INFO][MAIN] initialize resources. +[03 11:08:43][8480][INFO][osm_module_init] common.immf open success. +[03 11:08:43][8480][INFO][initialize_offset] initialize offset success! 57fd1000 57fd1050 57fe1060 +[03 11:08:43][8480][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 11:08:43][8480][INFO][read_properties] jspd.prop TXN_IP= +[03 11:08:43][8480][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 11:08:43][8480][INFO][read_properties] jspd.prop UTS_IP= +[03 11:08:43][8480][INFO][run_thread] create success. THR_DGCONN (0) +[03 11:08:43][8480][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 11:08:43][8480][INFO][thr_DGConn] dg=100007f:1314 +[03 11:08:43][8480][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 11:08:43][8480][INFO][get_Hostname] Hostname:[kkam] +[03 11:08:43][8480][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 11:08:43][8480][INFO][get_HostKey] Hostkey:[BA589C71] +[03 11:08:43][8480][INFO][thr_DGConn] connection success. +[03 11:08:43][8480][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 11:08:43][8480][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 11:08:43][8480][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 11:08:43][8480][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 11:08:43][8480][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 11:08:43][8480][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 11:08:43][8480][INFO][thread_docker_stat] thread terminate. +[03 11:08:43][8480][INFO][run_thread] create success. THR_JVMALERT (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_WASSTAT (0) +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=1001 jvmtype=JSPD +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=8334 module_type=1001 jvmtype=JSPD +[03 11:08:43][8480][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[03 11:08:43][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:8334 module_type:1001] +[03 11:08:45][8480][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 11:08:52][8480][INFO][process_msg] timesync diff:-575 +[03 11:08:53][8480][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=8563 module_type=1001 jvmtype=JSPD +[03 11:08:53][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:8563 module_type:1001] +[03 11:08:56][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=8563 prev_jvmpid=8563 +[03 11:08:56][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:8563 module_type:1001] +[03 11:09:17][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8334 +[03 11:09:17][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=8334 +[03 11:09:20][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8563 +[03 11:09:20][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=8563 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][info_log] current tcp_queue[9] skip[0] +[03 11:10:53][8480][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=10400 prev_jvmpid=0 +[03 11:10:53][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:10400 module_type:1001] +[03 11:11:11][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=10663 prev_jvmpid=0 +[03 11:11:11][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:10663 module_type:1001] +[03 11:11:14][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=10663 prev_jvmpid=10663 +[03 11:11:14][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:10663 module_type:1001] +[03 11:12:56][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:10400 +[03 11:12:56][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=10400 +[03 11:12:59][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:10663 +[03 11:12:59][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=10663 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:26][8480][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=13281 prev_jvmpid=0 +[03 11:14:26][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:13281 module_type:1001] +[03 11:14:38][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=13475 prev_jvmpid=0 +[03 11:14:38][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:13475 module_type:1001] +[03 11:14:41][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=13475 prev_jvmpid=13475 +[03 11:14:41][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:13475 module_type:1001] +[03 11:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:20:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:25:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 11:27:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:30:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 11:35:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 11:40:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 11:45:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 11:50:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 11:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 12:00:09][8480][INFO][process_msg] timesync diff:-602 +[03 12:05:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 12:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:25:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:30:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:36:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 12:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:45:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:45:00][8480][INFO][get_dn_process] get_process_stat() has failed.[pid:13329] +[03 12:46:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 12:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:57:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 13:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:00:09][8480][INFO][process_msg] timesync diff:-788 +[03 13:05:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 13:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 13:15:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:25:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 13:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 13:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 13:55:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 14:00:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 14:00:09][8480][INFO][process_msg] timesync diff:-175 +[03 14:05:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:15:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:25:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:27:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 14:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 14:33:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 14:35:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:40:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:00:09][8480][INFO][process_msg] timesync diff:-313 +[03 15:05:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 15:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:12:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 15:15:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 15:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 15:24:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 15:25:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:30:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 15:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 15:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:55:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:59:59][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 16:00:09][8480][INFO][process_msg] timesync diff:-522 +[03 16:01:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:05:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:07:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 16:25:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 16:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:35:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:40:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:55:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 17:00:09][8480][INFO][process_msg] timesync diff:-775 +[03 17:05:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:15:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 17:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 17:31:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 17:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 17:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 17:42:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 17:45:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 17:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:00:09][8480][INFO][process_msg] timesync diff:-532 +[03 18:05:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 18:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 18:40:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:55:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 19:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 19:00:09][8480][INFO][process_msg] timesync diff:-696 +[03 19:01:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 19:05:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:10:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:15:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 19:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 19:33:00][8480][INFO][get_dn_process] get_process_stat() has failed.[pid:13402] +[03 19:34:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 19:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[15 09:45:22][7599][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 09:45:22][7599][INFO][check_double_execution] write pid. 7599 +[15 09:45:22][7599][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 09:45:22][7599][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 09:45:22][7599][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 09:45:22][7599][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 09:45:22][7599][INFO][read_properties_common] imx.prop CPU100:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 09:45:22][7599][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 09:45:22][7599][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 09:45:22][7599][INFO][check_os_info] OS Name : Linux +[15 09:45:22][7599][INFO][check_os_info] Nodename : kkam +[15 09:45:22][7599][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 09:45:22][7599][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 09:45:22][7599][INFO][check_os_info] Machine : x86_64 +[15 09:45:22][7599][INFO][MAIN] initialize resources. +[15 09:45:22][7599][INFO][osm_module_init] common.immf open success. +[15 09:45:22][7599][INFO][initialize_offset] initialize offset success! a58a4000 a58a4050 a58b4060 +[15 09:45:22][7599][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 09:45:22][7599][INFO][read_properties] jspd.prop TXN_IP= +[15 09:45:22][7599][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 09:45:22][7599][INFO][read_properties] jspd.prop UTS_IP= +[15 09:45:22][7599][INFO][run_thread] create success. THR_DGCONN (0) +[15 09:45:22][7599][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 09:45:22][7599][INFO][thr_DGConn] dg=100007f:1314 +[15 09:45:22][7599][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 09:45:22][7599][INFO][get_Hostname] Hostname:[kkam] +[15 09:45:22][7599][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 09:45:22][7599][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 09:45:22][7599][INFO][thr_DGConn] connection success. +[15 09:45:22][7599][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 09:45:22][7599][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 09:45:22][7599][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 09:45:22][7599][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 09:45:22][7599][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_JVMALERT (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_WASSTAT (0) +[15 09:45:23][7599][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 09:45:23][7599][INFO][thread_docker_stat] thread terminate. +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:4418 module_type:1001] +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:5103 module_type:1001] +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:5282 module_type:1001] +[15 09:45:24][7599][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 09:45:26][7599][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=5103 prev_jvmpid=5103 +[15 09:45:26][7599][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:5103 module_type:1001] +[15 09:45:31][7599][INFO][process_msg] timesync diff:-68 +[15 09:50:00][7599][INFO][info_log] current tcp_queue[2] skip[0] +[15 09:55:00][7599][INFO][info_log] current tcp_queue[1] skip[0] +[15 09:56:00][7599][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 09:56:00][7599][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 09:58:08][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:5103 +[15 09:58:08][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=5103 +[15 09:58:14][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:5282 +[15 09:58:14][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=5282 +[15 09:58:23][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4620 +[15 09:58:23][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=4620 +[15 09:58:23][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4418 +[15 09:58:23][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=10 jvmpid=4418 +[15 09:58:23][7599][INFO][thread_wasstat] ALL JVM Down. 10(10) +[15 09:58:30][7599][INFO][thread_osstat_proclist] finish normally. +[15 09:58:30][7599][INFO][process_main] finished. +[15 09:58:30][7599][INFO][thread_filesystem] finish normally. +[15 09:58:30][7599][INFO][thr_jvm_alert] finish normally. +[15 09:58:30][7599][INFO][thr_osm_module] finish normally. +[15 09:58:30][7599][INFO][thr_DGConn_sender] finish normally. +[15 09:58:30][7599][INFO][DisconnectDGServer] sock:3 +[15 09:58:30][7599][INFO][thd_DGConn] finish normally. +[15 09:58:30][7599][INFO][thread_shellcmd] finish normally. +[15 09:58:32][7599][INFO][MAIN] imxosm terminated normally. +[15 09:58:33][7599][INFO][exit_handler] terminated. +[15 11:25:45][15238][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 11:25:45][15238][INFO][check_double_execution] write pid. 15238 +[15 11:25:45][15238][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 11:25:45][15238][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:25:45][15238][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 11:25:45][15238][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 11:25:45][15238][INFO][read_properties_common] imx.prop CPU100:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 11:25:45][15238][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 11:25:45][15238][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 11:25:45][15238][INFO][check_os_info] OS Name : Linux +[15 11:25:45][15238][INFO][check_os_info] Nodename : kkam +[15 11:25:45][15238][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 11:25:45][15238][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 11:25:45][15238][INFO][check_os_info] Machine : x86_64 +[15 11:25:45][15238][INFO][MAIN] initialize resources. +[15 11:25:45][15238][INFO][osm_module_init] common.immf open success. +[15 11:25:45][15238][INFO][initialize_offset] initialize offset success! d0522000 d0522050 d0532060 +[15 11:25:45][15238][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 11:25:45][15238][INFO][read_properties] jspd.prop TXN_IP= +[15 11:25:45][15238][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 11:25:45][15238][INFO][read_properties] jspd.prop UTS_IP= +[15 11:25:45][15238][INFO][run_thread] create success. THR_DGCONN (0) +[15 11:25:45][15238][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 11:25:45][15238][INFO][thr_DGConn] dg=100007f:1314 +[15 11:25:45][15238][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 11:25:45][15238][INFO][get_Hostname] Hostname:[kkam] +[15 11:25:45][15238][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 11:25:45][15238][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 11:25:45][15238][INFO][thr_DGConn] connection success. +[15 11:25:45][15238][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:25:45][15238][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:25:45][15238][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:25:46][15238][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 11:25:46][15238][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_JVMALERT (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_WASSTAT (0) +[15 11:25:46][15238][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 11:25:46][15238][INFO][thread_docker_stat] thread terminate. +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=15132 module_type=1001 jvmtype=JSPD +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=21640 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 11:25:46][15238][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:15132 module_type:1001] +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=21640 +[15 11:25:48][15238][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 11:25:54][15238][INFO][process_msg] timesync diff:-26 +[15 11:26:11][15238][INFO][read_all_jvm_pids] modified jvm pid idx=11 wasid=15 jvmpid=15495 prev_jvmpid=0 +[15 11:26:11][15238][INFO][send_osm_license_info] send license data [server_id:15 agent_pid:15495 module_type:1001] +[15 11:26:11][15238][INFO][send_osm_license_info] send license data [server_id:15 agent_pid:15495 module_type:1001] +[15 11:30:00][15238][INFO][info_log] current tcp_queue[2] skip[0] +[15 11:35:00][15238][INFO][info_log] current tcp_queue[1] skip[0] +[15 11:39:47][15238][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15132 +[15 11:39:47][15238][INFO][thread_wasstat-PC] send JVM Down. wasid=14 jvmpid=15132 +[15 11:39:50][15238][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15495 +[15 11:39:50][15238][INFO][thread_wasstat-PC] send JVM Down. wasid=15 jvmpid=15495 +[15 11:39:50][15238][INFO][thread_wasstat] ALL JVM Down. 12(12) +[15 11:39:57][15238][INFO][process_main] finished. +[15 11:39:57][15238][INFO][thread_filesystem] finish normally. +[15 11:39:57][15238][INFO][thread_osstat_proclist] finish normally. +[15 11:39:57][15238][INFO][thr_jvm_alert] finish normally. +[15 11:39:57][15238][INFO][thr_osm_module] finish normally. +[15 11:39:57][15238][INFO][thr_DGConn_sender] finish normally. +[15 11:39:57][15238][INFO][DisconnectDGServer] sock:3 +[15 11:39:57][15238][INFO][thd_DGConn] finish normally. +[15 11:39:57][15238][INFO][thread_shellcmd] finish normally. +[15 11:39:59][15238][INFO][MAIN] imxosm terminated normally. +[15 11:40:00][15238][INFO][exit_handler] terminated. +[15 11:42:38][27281][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 11:42:38][27281][INFO][check_double_execution] write pid. 27281 +[15 11:42:38][27281][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 11:42:38][27281][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:42:38][27281][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 11:42:38][27281][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 11:42:38][27281][INFO][read_properties_common] imx.prop CPU100:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 11:42:38][27281][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 11:42:38][27281][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 11:42:38][27281][INFO][check_os_info] OS Name : Linux +[15 11:42:38][27281][INFO][check_os_info] Nodename : kkam +[15 11:42:38][27281][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 11:42:38][27281][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 11:42:38][27281][INFO][check_os_info] Machine : x86_64 +[15 11:42:38][27281][INFO][MAIN] initialize resources. +[15 11:42:38][27281][INFO][osm_module_init] common.immf open success. +[15 11:42:38][27281][INFO][initialize_offset] initialize offset success! fae0000 fae0050 faf0060 +[15 11:42:38][27281][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 11:42:38][27281][INFO][read_properties] jspd.prop TXN_IP= +[15 11:42:38][27281][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 11:42:38][27281][INFO][read_properties] jspd.prop UTS_IP= +[15 11:42:38][27281][INFO][run_thread] create success. THR_DGCONN (0) +[15 11:42:38][27281][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 11:42:38][27281][INFO][thr_DGConn] dg=100007f:1314 +[15 11:42:38][27281][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 11:42:38][27281][INFO][get_Hostname] Hostname:[kkam] +[15 11:42:38][27281][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 11:42:38][27281][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 11:42:38][27281][INFO][thr_DGConn] connection success. +[15 11:42:38][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:42:38][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:42:38][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:42:38][27281][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 11:42:38][27281][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 11:42:38][27281][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 11:42:38][27281][INFO][thread_docker_stat] thread terminate. +[15 11:42:38][27281][INFO][run_thread] create success. THR_JVMALERT (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_WASSTAT (0) +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=27178 module_type=1001 jvmtype=JSPD +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=15495 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 11:42:38][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=15495 +[15 11:42:39][27281][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 11:42:47][27281][INFO][process_msg] timesync diff:-800 +[15 11:43:05][27281][INFO][read_all_jvm_pids] new jvm info idx=12 wasid=16 jvmpid=27583 module_type=1001 jvmtype=JSPD +[15 11:43:05][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:43:08][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:43:08][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:44:57][27281][ERRO][processing_socket] get packet data failed(-1) +[15 11:44:57][27281][INFO][DisconnectDGServer] sock:3 +[15 11:44:59][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=0 prev_jvmpid=27178 +[15 11:44:59][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=0 prev_jvmpid=27583 +[15 11:45:00][27281][INFO][info_log] current tcp_queue[2] skip[0] +[15 11:45:00][27281][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 11:45:00][27281][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 11:45:02][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:45:07][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:45:12][27281][INFO][thr_DGConn] connection success. +[15 11:45:12][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:45:12][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:45:12][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:45:17][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=27178 prev_jvmpid=27178 +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:45:17][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:45:21][27281][INFO][process_msg] timesync diff:-555 +[15 11:48:28][27281][ERRO][processing_socket] get packet data failed(-1) +[15 11:48:28][27281][INFO][DisconnectDGServer] sock:3 +[15 11:48:29][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=0 prev_jvmpid=27178 +[15 11:48:29][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=0 prev_jvmpid=27583 +[15 11:48:33][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:38][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:43][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:48][27281][INFO][thr_DGConn] connection success. +[15 11:48:48][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:48:48][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:48:49][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:48:58][27281][INFO][process_msg] timesync diff:-415 +[15 11:49:02][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=27178 prev_jvmpid=27178 +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:49:02][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:50:00][27281][INFO][info_log] current tcp_queue[2] skip[0] +[15 12:03:57][14447][NOTI]g_imx_home[/app/tmax/intermax/2208.06_type3/jspd] +[15 12:03:57][14447][INFO][check_double_execution] write pid. 14447 +[15 12:03:57][14447][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 12:03:57][14447][INFO][MAIN] HOME: /app/tmax/intermax/2208.06_type3/jspd +[15 12:03:57][14447][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:03:57][14447][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 12:03:57][14447][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 12:03:57][14447][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 12:03:57][14447][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 12:03:57][14447][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 12:03:57][14447][INFO][read_properties_common] imx.prop CPU100:1 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 12:03:57][14447][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 12:03:57][14447][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 12:03:57][14447][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 12:03:57][14447][INFO][check_os_info] OS Name : Linux +[15 12:03:57][14447][INFO][check_os_info] Nodename : kkam +[15 12:03:57][14447][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 12:03:57][14447][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 12:03:57][14447][INFO][check_os_info] Machine : x86_64 +[15 12:03:57][14447][INFO][MAIN] initialize resources. +[15 12:03:57][14447][INFO][osm_module_init] common.immf open success. +[15 12:03:57][14447][INFO][initialize_offset] initialize offset success! c35d2000 c35d2050 c35e2060 +[15 12:03:57][14447][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[15 12:03:57][14447][INFO][read_properties] jspd.prop TXN_IP= +[15 12:03:57][14447][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[15 12:03:57][14447][INFO][read_properties] jspd.prop UTS_IP= +[15 12:03:57][14447][INFO][run_thread] create success. THR_DGCONN (0) +[15 12:03:57][14447][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 12:03:57][14447][INFO][thr_DGConn] dg=100007f:1314 +[15 12:03:57][14447][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 12:03:57][14447][INFO][get_Hostname] Hostname:[kkam] +[15 12:03:57][14447][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 12:03:57][14447][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 12:03:57][14447][INFO][thr_DGConn] connection success. +[15 12:03:57][14447][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06_type3/jspd] +[15 12:03:57][14447][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 12:03:57][14447][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 12:03:57][14447][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 12:03:57][14447][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 12:03:57][14447][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 12:03:57][14447][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 12:03:57][14447][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 12:03:57][14447][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 12:03:57][14447][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 12:03:57][14447][INFO][thread_docker_stat] thread terminate. +[15 12:03:57][14447][INFO][run_thread] create success. THR_JVMALERT (0) +[15 12:03:57][14447][INFO][run_thread] create success. THR_WASSTAT (0) +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=27178 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=15495 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=12 wasid=16 jvmpid=27583 module_type=0 jvmtype=JVM +[15 12:03:57][14447][INFO][read_all_jvm_pids] new jvm info idx=13 wasid=17 jvmpid=14295 module_type=1001 jvmtype=JSPD +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=14 jvmpid=27178 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=15495 +[15 12:03:57][14447][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=16 jvmpid=27583 +[15 12:03:57][14447][INFO][send_osm_license_info] send license data [server_id:17 agent_pid:14295 module_type:1001] +[15 12:04:00][14447][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06_type3/jspd imxtxn 64) +[15 12:04:06][14447][INFO][process_msg] timesync diff:-237 +[15 12:05:00][14447][INFO][info_log] current tcp_queue[2] skip[0] +[15 12:05:00][14447][INFO][get_dn_process] get_process_stat() has failed.[pid:15472] +[15 12:06:00][14447][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:06:00][14447][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:08:59][14447][INFO][read_all_jvm_pids] modified jvm pid idx=13 wasid=17 jvmpid=14295 prev_jvmpid=14295 +[15 12:08:59][14447][INFO][send_osm_license_info] send license data [server_id:17 agent_pid:14295 module_type:1001] +[15 12:09:00][14447][INFO][send_jvm_exception_alert] send alert (17:XM_JVM_OUTOFMEMORYERROR) +[15 12:09:00][14447][ERRO][MFJ-OSM-00020090] File open failed. FileName:/app/tmax/intermax/2208.06_type3/jspd/data/agent/imxtxn (2) +[15 12:09:00][14447][INFO][process_main] imxosm process stopped. +[15 12:09:00][14447][INFO][thread_shellcmd] finish normally. +[15 12:09:00][14447][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06_type3/jspd imxtxn 64) +[15 12:09:00][14447][INFO][thr_osm_module] finish normally. +[15 12:09:00][14447][INFO][thread_osstat_proclist] finish normally. +[15 12:09:01][14447][INFO][thread_filesystem] finish normally. +[15 12:09:01][14447][INFO][thr_jvm_alert] finish normally. +[15 12:09:01][14447][INFO][thr_DGConn_sender] finish normally. +[15 12:09:01][14447][INFO][DisconnectDGServer] sock:3 +[15 12:09:01][14447][INFO][thd_DGConn] finish normally. +[15 12:09:02][14447][INFO][thread_wasstat] finish normally. +[15 12:09:03][14447][INFO][process_main] finished. +[15 12:09:05][14447][INFO][MAIN] imxosm terminated normally. +[15 12:09:06][14447][INFO][exit_handler] terminated. +[15 12:09:14][19003][NOTI]g_imx_home[/app/tmax/intermax/2208.06_type3/jspd] +[15 12:09:14][19003][ERRO][MFJ-OSM-00020070] File open failed. FileName:/app/tmax/intermax/2208.06_type3/jspd/data/agent/imxosm (2) +[15 12:11:46][21476][NOTI]g_imx_home[/app/tmax/intermax/2208.06_type3/jspd] +[15 12:11:46][21476][INFO][check_double_execution] write pid. 21476 +[15 12:11:46][21476][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 12:11:46][21476][INFO][MAIN] HOME: /app/tmax/intermax/2208.06_type3/jspd +[15 12:11:46][21476][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:11:46][21476][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 12:11:46][21476][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 12:11:46][21476][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 12:11:46][21476][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 12:11:46][21476][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 12:11:46][21476][INFO][read_properties_common] imx.prop CPU100:1 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 12:11:46][21476][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 12:11:46][21476][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 12:11:46][21476][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 12:11:46][21476][INFO][check_os_info] OS Name : Linux +[15 12:11:46][21476][INFO][check_os_info] Nodename : kkam +[15 12:11:46][21476][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 12:11:46][21476][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 12:11:46][21476][INFO][check_os_info] Machine : x86_64 +[15 12:11:46][21476][INFO][MAIN] initialize resources. +[15 12:11:46][21476][INFO][osm_module_init] common.immf open success. +[15 12:11:46][21476][INFO][initialize_offset] initialize offset success! e1044000 e1044050 e1054060 +[15 12:11:46][21476][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[15 12:11:46][21476][INFO][read_properties] jspd.prop TXN_IP= +[15 12:11:46][21476][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[15 12:11:46][21476][INFO][read_properties] jspd.prop UTS_IP= +[15 12:11:46][21476][INFO][run_thread] create success. THR_DGCONN (0) +[15 12:11:46][21476][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 12:11:46][21476][INFO][thr_DGConn] dg=100007f:1314 +[15 12:11:46][21476][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 12:11:46][21476][INFO][get_Hostname] Hostname:[kkam] +[15 12:11:46][21476][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 12:11:46][21476][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 12:11:46][21476][INFO][thr_DGConn] connection success. +[15 12:11:46][21476][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06_type3/jspd] +[15 12:11:46][21476][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 12:11:46][21476][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 12:11:46][21476][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 12:11:46][21476][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_JVMALERT (0) +[15 12:11:46][21476][INFO][run_thread] create success. THR_WASSTAT (0) +[15 12:11:47][21476][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 12:11:47][21476][INFO][thread_docker_stat] thread terminate. +[15 12:11:47][21476][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=21366 module_type=1001 jvmtype=JSPD +[15 12:11:47][21476][INFO][send_osm_license_info] send license data [server_id:17 agent_pid:21366 module_type:1001] +[15 12:11:48][21476][ERRO][MFJ-OSM-00020090] File open failed. FileName:/app/tmax/intermax/2208.06_type3/jspd/data/agent/imxtxn (2) +[15 12:11:48][21476][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06_type3/jspd imxtxn 64) +[15 12:11:55][21476][INFO][process_msg] timesync diff:-113 +[15 12:13:00][21476][INFO][get_dn_process] get_process_stat() has failed.[pid:22670] +[15 12:14:01][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:14:01][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:14:01][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:14:01][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:15:00][21476][INFO][info_log] current tcp_queue[1] skip[0] +[15 12:20:00][21476][INFO][info_log] current tcp_queue[1] skip[0] +[15 12:25:00][21476][INFO][info_log] current tcp_queue[1] skip[0] +[15 12:29:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:30:00][21476][INFO][info_log] current tcp_queue[4] skip[0] +[15 12:31:04][21476][ERRO][processing_socket] get packet data failed(-1) +[15 12:31:04][21476][INFO][DisconnectDGServer] sock:3 +[15 12:31:05][21476][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=17 jvmpid=0 prev_jvmpid=21366 +[15 12:31:09][21476][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:31:14][21476][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:31:19][21476][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21476][INFO][send_was_alert] (200102) alert_name:java pid:0 +[07 05:14:23][56][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[07 05:14:23][56][INFO][check_double_execution] write pid. 56 +[07 05:14:23][56][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[07 05:14:23][56][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[07 05:14:23][56][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[07 05:14:23][56][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[07 05:14:23][56][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[07 05:14:23][56][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[07 05:14:23][56][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[07 05:14:23][56][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[07 05:14:23][56][INFO][read_properties_common] imx.prop DGADDR_LIST= +[07 05:14:23][56][INFO][read_properties_common] imx.prop CPU100:1 +[07 05:14:23][56][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[07 05:14:23][56][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[07 05:14:23][56][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[07 05:14:23][56][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[07 05:14:23][56][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[07 05:14:23][56][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[07 05:14:23][56][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[07 05:14:23][56][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[07 05:14:23][56][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[07 05:14:23][56][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[07 05:14:23][56][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[07 05:14:23][56][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[07 05:14:23][56][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[07 05:14:23][56][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[07 05:14:23][56][INFO][check_os_info] OS Name : Linux +[07 05:14:23][56][INFO][check_os_info] Nodename : c09fe2504527 +[07 05:14:23][56][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[07 05:14:23][56][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[07 05:14:23][56][INFO][check_os_info] Machine : x86_64 +[07 05:14:23][56][INFO][MAIN] initialize resources. +[07 05:14:23][56][INFO][osm_module_init] common.immf open success. +[07 05:14:23][56][INFO][initialize_offset] initialize offset success! a6c82000 a6c82050 a6c92060 +[07 05:14:23][56][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[07 05:14:23][56][INFO][read_properties] jspd.prop TXN_IP= +[07 05:14:23][56][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[07 05:14:23][56][INFO][read_properties] jspd.prop UTS_IP= +[07 05:14:23][56][INFO][run_thread] create success. THR_DGCONN (0) +[07 05:14:23][56][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[07 05:14:23][56][INFO][thr_DGConn] dg=f02000a:1314 +[07 05:14:23][56][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[07 05:14:23][56][INFO][get_Hostname] Hostname:[c09fe2504527] +[07 05:14:23][56][INFO][get_xm_sys_hostkey] xm_sys_hostkey:010826BD +[07 05:14:23][56][INFO][get_HostKey] Hostkey:[010826BD] +[07 05:14:23][56][INFO][thr_DGConn] connection success. +[07 05:14:23][56][INFO][send_identity_unite]host_key[010826BD],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[07 05:14:23][56][INFO][thr_DGConn] sock(3),data gather connect(1) +[07 05:14:23][56][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[07 05:14:23][56][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[07 05:14:23][56][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[07 05:14:23][56][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[07 05:14:23][56][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[07 05:14:23][56][INFO][run_thread] create success. THR_SHELLCMD (0) +[07 05:14:23][56][INFO][thread_docker_stat] thread terminate. +[07 05:14:23][56][INFO][run_thread] create success. THR_FILESYSTEM (0) +[07 05:14:23][56][INFO][run_thread] create success. THR_OSM_MODULE (0) +[07 05:14:23][56][INFO][run_thread] create success. THR_JVMALERT (0) +[07 05:14:23][56][INFO][run_thread] create success. THR_WASSTAT (0) +[07 05:14:23][56][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[07 05:14:23][56][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[07 05:14:23][56][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[07 05:14:24][56][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[07 05:14:32][56][INFO][process_msg] timesync diff:-289 +[07 05:15:00][56][INFO][info_log] current tcp_queue[0] skip[0] +[07 05:20:00][56][INFO][info_log] current tcp_queue[3] skip[0] +[07 05:25:00][56][INFO][info_log] current tcp_queue[3] skip[0] +[07 23:51:38][57][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[07 23:51:38][57][INFO][check_double_execution] write pid. 57 +[07 23:51:38][57][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[07 23:51:38][57][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[07 23:51:38][57][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[07 23:51:38][57][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[07 23:51:38][57][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[07 23:51:38][57][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[07 23:51:38][57][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[07 23:51:38][57][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[07 23:51:38][57][INFO][read_properties_common] imx.prop DGADDR_LIST= +[07 23:51:38][57][INFO][read_properties_common] imx.prop CPU100:1 +[07 23:51:38][57][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[07 23:51:38][57][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[07 23:51:38][57][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[07 23:51:38][57][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[07 23:51:38][57][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[07 23:51:38][57][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[07 23:51:38][57][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[07 23:51:38][57][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[07 23:51:38][57][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[07 23:51:38][57][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[07 23:51:38][57][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[07 23:51:38][57][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[07 23:51:38][57][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[07 23:51:38][57][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[07 23:51:38][57][INFO][check_os_info] OS Name : Linux +[07 23:51:38][57][INFO][check_os_info] Nodename : c09fe2504527 +[07 23:51:38][57][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[07 23:51:38][57][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[07 23:51:38][57][INFO][check_os_info] Machine : x86_64 +[07 23:51:38][57][INFO][MAIN] initialize resources. +[07 23:51:38][57][INFO][osm_module_init] common.immf open success. +[07 23:51:38][57][INFO][initialize_offset] initialize offset success! f7825000 f7825050 f7835060 +[07 23:51:38][57][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[07 23:51:38][57][INFO][read_properties] jspd.prop TXN_IP= +[07 23:51:38][57][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[07 23:51:38][57][INFO][read_properties] jspd.prop UTS_IP= +[07 23:51:38][57][INFO][run_thread] create success. THR_DGCONN (0) +[07 23:51:38][57][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[07 23:51:38][57][INFO][thr_DGConn] dg=f02000a:1314 +[07 23:51:38][57][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[07 23:51:38][57][INFO][get_Hostname] Hostname:[c09fe2504527] +[07 23:51:38][57][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[07 23:51:38][57][INFO][get_HostKey] Hostkey:[4327C677] +[07 23:51:38][57][INFO][thr_DGConn] connection success. +[07 23:51:38][57][INFO][send_identity_unite]host_key[4327C677],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[07 23:51:38][57][INFO][thr_DGConn] sock(3),data gather connect(1) +[07 23:51:38][57][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[07 23:51:38][57][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[07 23:51:38][57][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[07 23:51:38][57][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[07 23:51:38][57][INFO][run_thread] create success. THR_SHELLCMD (0) +[07 23:51:38][57][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[07 23:51:38][57][INFO][thread_docker_stat] thread terminate. +[07 23:51:38][57][INFO][run_thread] create success. THR_FILESYSTEM (0) +[07 23:51:38][57][INFO][run_thread] create success. THR_OSM_MODULE (0) +[07 23:51:38][57][INFO][run_thread] create success. THR_JVMALERT (0) +[07 23:51:38][57][INFO][run_thread] create success. THR_WASSTAT (0) +[07 23:51:38][57][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[07 23:51:38][57][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[07 23:51:38][57][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=11 jvmpid=1 module_type=1001 jvmtype=JSPD +[07 23:51:38][57][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[07 23:51:38][57][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:1 module_type:1001] +[07 23:51:39][57][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[07 23:51:48][57][INFO][process_msg] timesync diff:-418 +[07 23:55:00][57][INFO][info_log] current tcp_queue[0] skip[0] +[08 00:00:00][57][INFO][info_log] current tcp_queue[1] skip[0] +[08 00:00:09][57][INFO][process_msg] timesync diff:-825 +[08 00:05:00][57][INFO][info_log] current tcp_queue[3] skip[0] +[08 00:10:00][57][INFO][info_log] current tcp_queue[0] skip[0] +[08 00:11:29][140][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[08 00:11:29][140][INFO][check_double_execution] write pid. 140 +[08 00:11:29][140][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[08 00:11:29][140][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[08 00:11:29][140][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:29][140][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[08 00:11:29][140][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[08 00:11:29][140][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[08 00:11:29][140][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[08 00:11:29][140][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[08 00:11:29][140][INFO][read_properties_common] imx.prop DGADDR_LIST= +[08 00:11:29][140][INFO][read_properties_common] imx.prop CPU100:1 +[08 00:11:29][140][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[08 00:11:29][140][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[08 00:11:29][140][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[08 00:11:29][140][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[08 00:11:29][140][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[08 00:11:29][140][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[08 00:11:29][140][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[08 00:11:29][140][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[08 00:11:29][140][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[08 00:11:29][140][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[08 00:11:29][140][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:29][140][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[08 00:11:29][140][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[08 00:11:29][140][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:29][140][INFO][check_os_info] OS Name : Linux +[08 00:11:29][140][INFO][check_os_info] Nodename : c09fe2504527 +[08 00:11:29][140][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[08 00:11:29][140][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[08 00:11:29][140][INFO][check_os_info] Machine : x86_64 +[08 00:11:29][140][INFO][MAIN] initialize resources. +[08 00:11:29][140][INFO][osm_module_init] common.immf open success. +[08 00:11:29][140][INFO][initialize_offset] initialize offset success! 8924d000 8924d050 8925d060 +[08 00:11:29][140][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[08 00:11:29][140][INFO][read_properties] jspd.prop TXN_IP= +[08 00:11:29][140][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[08 00:11:29][140][INFO][read_properties] jspd.prop UTS_IP= +[08 00:11:29][140][INFO][run_thread] create success. THR_DGCONN (0) +[08 00:11:29][140][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[08 00:11:29][140][INFO][thr_DGConn] dg=f02000a:1314 +[08 00:11:29][140][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[08 00:11:29][140][INFO][get_Hostname] Hostname:[c09fe2504527] +[08 00:11:29][140][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[08 00:11:29][140][INFO][get_HostKey] Hostkey:[4327C677] +[08 00:11:29][140][INFO][thr_DGConn] connection success. +[08 00:11:29][140][INFO][send_identity_unite]host_key[4327C677],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[08 00:11:29][140][INFO][thr_DGConn] sock(3),data gather connect(1) +[08 00:11:29][140][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[08 00:11:29][140][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[08 00:11:29][140][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[08 00:11:29][140][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[08 00:11:29][140][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[08 00:11:29][140][INFO][thread_docker_stat] thread terminate. +[08 00:11:29][140][INFO][run_thread] create success. THR_SHELLCMD (0) +[08 00:11:29][140][INFO][run_thread] create success. THR_FILESYSTEM (0) +[08 00:11:29][140][INFO][run_thread] create success. THR_OSM_MODULE (0) +[08 00:11:29][140][INFO][run_thread] create success. THR_JVMALERT (0) +[08 00:11:29][140][INFO][run_thread] create success. THR_WASSTAT (0) +[08 00:11:29][140][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[08 00:11:29][140][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 00:11:29][140][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=11 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 00:11:29][140][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[08 00:11:29][140][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:1 module_type:1001] +[08 00:11:30][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:33][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:36][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:39][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:39][140][INFO][process_msg] timesync diff:-936 +[08 00:11:42][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:45][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:48][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:51][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:54][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:11:57][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:12:00][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:12:03][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:12:06][140][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:12:33][66][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[08 00:12:33][66][INFO][check_double_execution] write pid. 66 +[08 00:12:33][66][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[08 00:12:33][66][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[08 00:12:33][66][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:12:33][66][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[08 00:12:33][66][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[08 00:12:33][66][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[08 00:12:33][66][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[08 00:12:33][66][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[08 00:12:33][66][INFO][read_properties_common] imx.prop DGADDR_LIST= +[08 00:12:33][66][INFO][read_properties_common] imx.prop CPU100:1 +[08 00:12:33][66][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[08 00:12:33][66][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[08 00:12:33][66][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[08 00:12:33][66][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[08 00:12:33][66][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[08 00:12:33][66][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[08 00:12:33][66][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[08 00:12:33][66][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[08 00:12:33][66][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[08 00:12:33][66][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[08 00:12:33][66][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:12:33][66][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[08 00:12:33][66][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[08 00:12:33][66][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[08 00:12:33][66][INFO][check_os_info] OS Name : Linux +[08 00:12:33][66][INFO][check_os_info] Nodename : c09fe2504527 +[08 00:12:33][66][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[08 00:12:33][66][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[08 00:12:33][66][INFO][check_os_info] Machine : x86_64 +[08 00:12:33][66][INFO][MAIN] initialize resources. +[08 00:12:33][66][INFO][osm_module_init] common.immf open success. +[08 00:12:33][66][INFO][initialize_offset] initialize offset success! 7ed10000 7ed10050 7ed20060 +[08 00:12:33][66][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[08 00:12:33][66][INFO][read_properties] jspd.prop TXN_IP= +[08 00:12:33][66][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[08 00:12:33][66][INFO][read_properties] jspd.prop UTS_IP= +[08 00:12:33][66][INFO][run_thread] create success. THR_DGCONN (0) +[08 00:12:33][66][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[08 00:12:33][66][INFO][thr_DGConn] dg=f02000a:1314 +[08 00:12:33][66][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[08 00:12:33][66][INFO][get_Hostname] Hostname:[c09fe2504527] +[08 00:12:33][66][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[08 00:12:33][66][INFO][get_HostKey] Hostkey:[4327C677] +[08 00:12:33][66][INFO][thr_DGConn] connection success. +[08 00:12:33][66][INFO][send_identity_unite]host_key[4327C677],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[08 00:12:33][66][INFO][thr_DGConn] sock(3),data gather connect(1) +[08 00:12:33][66][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[08 00:12:33][66][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[08 00:12:33][66][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[08 00:12:33][66][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[08 00:12:33][66][INFO][run_thread] create success. THR_SHELLCMD (0) +[08 00:12:33][66][INFO][run_thread] create success. THR_FILESYSTEM (0) +[08 00:12:33][66][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[08 00:12:33][66][INFO][thread_docker_stat] thread terminate. +[08 00:12:33][66][INFO][run_thread] create success. THR_OSM_MODULE (0) +[08 00:12:33][66][INFO][run_thread] create success. THR_JVMALERT (0) +[08 00:12:33][66][INFO][run_thread] create success. THR_WASSTAT (0) +[08 00:12:33][66][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[08 00:12:33][66][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 00:12:33][66][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=11 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 00:12:33][66][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[08 00:12:33][66][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:1 module_type:1001] +[08 00:12:36][66][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 00:12:43][66][INFO][process_msg] timesync diff:-165 +[08 00:15:00][66][INFO][info_log] current tcp_queue[1] skip[0] +[08 09:15:30][65][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[08 09:15:30][65][INFO][check_double_execution] write pid. 65 +[08 09:15:30][65][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[08 09:15:30][65][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[08 09:15:30][65][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 09:15:30][65][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[08 09:15:30][65][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[08 09:15:30][65][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[08 09:15:30][65][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[08 09:15:30][65][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[08 09:15:30][65][INFO][read_properties_common] imx.prop DGADDR_LIST= +[08 09:15:30][65][INFO][read_properties_common] imx.prop CPU100:1 +[08 09:15:30][65][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[08 09:15:30][65][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[08 09:15:30][65][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[08 09:15:30][65][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[08 09:15:30][65][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[08 09:15:30][65][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[08 09:15:30][65][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[08 09:15:30][65][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[08 09:15:30][65][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[08 09:15:30][65][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[08 09:15:30][65][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 09:15:30][65][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[08 09:15:30][65][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[08 09:15:30][65][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[08 09:15:30][65][INFO][check_os_info] OS Name : Linux +[08 09:15:30][65][INFO][check_os_info] Nodename : c09fe2504527 +[08 09:15:30][65][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[08 09:15:30][65][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[08 09:15:30][65][INFO][check_os_info] Machine : x86_64 +[08 09:15:30][65][INFO][MAIN] initialize resources. +[08 09:15:30][65][INFO][osm_module_init] common.immf open success. +[08 09:15:30][65][INFO][initialize_offset] initialize offset success! b77cd000 b77cd050 b77dd060 +[08 09:15:30][65][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[08 09:15:30][65][INFO][read_properties] jspd.prop TXN_IP= +[08 09:15:30][65][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[08 09:15:30][65][INFO][read_properties] jspd.prop UTS_IP= +[08 09:15:30][65][INFO][run_thread] create success. THR_DGCONN (0) +[08 09:15:30][65][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[08 09:15:30][65][INFO][thr_DGConn] dg=f02000a:1314 +[08 09:15:30][65][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[08 09:15:30][65][INFO][get_Hostname] Hostname:[c09fe2504527] +[08 09:15:30][65][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[08 09:15:30][65][INFO][get_HostKey] Hostkey:[4327C677] +[08 09:15:30][65][INFO][thr_DGConn] connection success. +[08 09:15:30][65][INFO][send_identity_unite]host_key[4327C677],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[08 09:15:30][65][INFO][thr_DGConn] sock(3),data gather connect(1) +[08 09:15:30][65][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[08 09:15:31][65][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[08 09:15:31][65][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[08 09:15:31][65][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[08 09:15:31][65][INFO][run_thread] create success. THR_SHELLCMD (0) +[08 09:15:31][65][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[08 09:15:31][65][INFO][thread_docker_stat] thread terminate. +[08 09:15:31][65][INFO][run_thread] create success. THR_FILESYSTEM (0) +[08 09:15:31][65][INFO][run_thread] create success. THR_OSM_MODULE (0) +[08 09:15:31][65][INFO][run_thread] create success. THR_JVMALERT (0) +[08 09:15:31][65][INFO][run_thread] create success. THR_WASSTAT (0) +[08 09:15:31][65][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[08 09:15:31][65][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 09:15:31][65][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=11 jvmpid=1 module_type=1001 jvmtype=JSPD +[08 09:15:31][65][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[08 09:15:31][65][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:1 module_type:1001] +[08 09:15:33][65][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[08 09:15:40][65][INFO][process_msg] timesync diff:-57 +[08 09:20:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[08 09:25:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[08 09:30:00][65][INFO][info_log] current tcp_queue[3] skip[0] +[08 09:35:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[08 09:40:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[08 09:45:00][65][INFO][info_log] current tcp_queue[3] skip[0] +[08 09:50:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[08 09:55:00][65][INFO][info_log] current tcp_queue[1] skip[0] +[08 10:00:00][65][INFO][info_log] current tcp_queue[1] skip[0] +[08 10:00:09][65][INFO][process_msg] timesync diff:-239 +[08 10:05:00][65][INFO][info_log] current tcp_queue[3] skip[0] +[08 10:10:00][65][INFO][info_log] current tcp_queue[3] skip[0] +[08 15:35:00][65][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:18:19][59][NOTI]g_imx_home[/usr/local/intermax/2208.06_type3/jspd] +[28 10:18:19][59][INFO][check_double_execution] write pid. 59 +[28 10:18:19][59][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[28 10:18:19][59][INFO][MAIN] HOME: /usr/local/intermax/2208.06_type3/jspd +[28 10:18:19][59][INFO][read_properties_common] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:19][59][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[28 10:18:19][59][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[28 10:18:19][59][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[28 10:18:19][59][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[28 10:18:19][59][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[28 10:18:19][59][INFO][read_properties_common] imx.prop DGADDR_LIST= +[28 10:18:19][59][INFO][read_properties_common] imx.prop CPU100:1 +[28 10:18:19][59][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[28 10:18:19][59][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[28 10:18:19][59][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[28 10:18:19][59][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[28 10:18:19][59][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[28 10:18:19][59][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[28 10:18:19][59][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[28 10:18:19][59][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[28 10:18:19][59][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[28 10:18:19][59][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[28 10:18:19][59][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:19][59][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[28 10:18:19][59][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[28 10:18:19][59][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:19][59][INFO][check_os_info] OS Name : Linux +[28 10:18:19][59][INFO][check_os_info] Nodename : 8d9d58c23ac9 +[28 10:18:19][59][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[28 10:18:19][59][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[28 10:18:19][59][INFO][check_os_info] Machine : x86_64 +[28 10:18:19][59][INFO][MAIN] initialize resources. +[28 10:18:19][59][INFO][osm_module_init] common.immf open success. +[28 10:18:19][59][INFO][initialize_offset] initialize offset success! fe1cb000 fe1cb050 fe1db060 +[28 10:18:19][59][INFO][read_properties] jspd.prop TXN_ADDR=8404 +[28 10:18:19][59][INFO][read_properties] jspd.prop TXN_IP= +[28 10:18:19][59][INFO][read_properties] jspd.prop UTS_ADDR=8504 +[28 10:18:19][59][INFO][read_properties] jspd.prop UTS_IP= +[28 10:18:19][59][INFO][run_thread] create success. THR_DGCONN (0) +[28 10:18:19][59][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[28 10:18:19][59][INFO][thr_DGConn] dg=f02000a:1314 +[28 10:18:19][59][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[28 10:18:19][59][INFO][get_Hostname] Hostname:[8d9d58c23ac9] +[28 10:18:19][59][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[28 10:18:19][59][INFO][get_HostKey] Hostkey:[4327C677] +[28 10:18:19][59][INFO][thr_DGConn] connection success. +[28 10:18:19][59][INFO][send_identity_unite]host_key[4327C677],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/usr/local/intermax/2208.06_type3/jspd] +[28 10:18:19][59][INFO][thr_DGConn] sock(3),data gather connect(1) +[28 10:18:19][59][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[28 10:18:19][59][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[28 10:18:19][59][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[28 10:18:19][59][INFO][run_thread] create success. THR_SHELLCMD (0) +[28 10:18:19][59][INFO][run_thread] create success. THR_FILESYSTEM (0) +[28 10:18:19][59][INFO][run_thread] create success. THR_OSM_MODULE (0) +[28 10:18:19][59][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[28 10:18:19][59][INFO][thread_docker_stat] thread terminate. +[28 10:18:19][59][INFO][run_thread] create success. THR_JVMALERT (0) +[28 10:18:19][59][INFO][run_thread] create success. THR_WASSTAT (0) +[28 10:18:19][59][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=10 jvmpid=1 module_type=1001 jvmtype=JSPD +[28 10:18:19][59][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=11 jvmpid=1 module_type=1001 jvmtype=JSPD +[28 10:18:19][59][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=17 jvmpid=0 module_type=0 jvmtype=JVM +[28 10:18:19][59][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=8 jvmpid=1 module_type=1001 jvmtype=JSPD +[28 10:18:19][59][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:1 module_type:1001] +[28 10:18:19][59][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:1 module_type:1001] +[28 10:18:19][59][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:1 module_type:1001] +[28 10:18:19][59][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20230418 +[28 10:18:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:50][59][INFO][process_msg] timesync diff:-482 +[28 10:18:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:18:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:20][59][ERRO][processing_socket] get packet data failed(-1) +[28 10:19:20][59][INFO][DisconnectDGServer] sock:3 +[28 10:19:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:23][59][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=8 jvmpid=0 prev_jvmpid=1 +[28 10:19:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:25][59][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[28 10:19:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:30][59][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[28 10:19:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:35][59][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[28 10:19:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:19:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:20:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:20:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:21:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:22:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:23:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:24:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:25:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:25:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:26:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:27:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:28:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:29:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:30:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:30:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:31:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:32:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:33:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:34:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:35:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:35:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:36:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:37:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:38:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:39:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:40:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:40:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:41:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:42:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:43:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:44:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:45:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:45:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:46:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:47:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:48:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:49:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:50:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:50:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:51:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:52:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:53:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:54:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 10:55:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:55:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:56:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:57:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:58:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 10:59:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:00:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:00:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:01:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:02:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:03:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:04:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:05:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:05:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:06:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:07:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:08:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:09:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:10:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:10:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:11:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:12:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:13:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:14:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:15:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:15:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:16:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:17:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:18:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:19:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:20:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:20:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:21:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:22:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:23:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:24:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:25:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:25:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:26:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:27:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:28:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:29:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:30:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:30:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:31:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:32:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:33:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:34:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:35:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:35:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:36:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:37:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:38:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:39:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:40:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:40:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:41:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:42:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:43:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:44:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:45:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:45:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:46:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:47:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:48:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:49:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:50:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:50:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:51:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:52:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:53:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:54:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:00][59][INFO][info_log] current tcp_queue[0] skip[0] +[28 11:55:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:55:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:56:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:45][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:48][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:51][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:54][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:57:57][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:00][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:03][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:06][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:09][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:12][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:15][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:18][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:21][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:24][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:27][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:30][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:33][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:36][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:39][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) +[28 11:58:42][59][INFO][runprocess] execute process. (/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh /usr/local/intermax/2208.06_type3/jspd imxtxn 64) diff --git a/intermax/2208.06_type3/jspd/log/imx/imxtxn.log b/intermax/2208.06_type3/jspd/log/imx/imxtxn.log new file mode 100644 index 0000000..e0a3960 --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/imx/imxtxn.log @@ -0,0 +1,93809 @@ +[29 10:13:57][2671][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[29 10:13:57][2671][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 10:13:57][2671][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[29 10:13:57][2671][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 10:13:57][2671][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[29 10:13:57][2671][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 10:13:57][2671][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[29 10:13:57][2671][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 10:13:57][2671][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 10:13:57][2671][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 10:13:57][2671][INFO][MAIN] hostname[kkam] +[29 10:13:57][2671][INFO][check_double_execution] write pid. 2671 +[29 10:13:57][2671][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[29 10:13:57][2671][INFO][create_new_dg_connection] thread create: -1522166016 +[29 10:13:57][2671][INFO][add_thread_handle] idx[0],handle[0xa5459700] +[29 10:13:57][2671][INFO][add_thread_handle] idx[1],handle[0xa4a58700] +[29 10:13:57][2671][INFO][create_new_dg_connection] thread create: -1532655872 +[29 10:13:57][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:13:57][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:13:57][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:13:57][2671][INFO]thr_udp_wasconn pthread_create created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[2],handle[0x9fdec700] +[29 10:13:57][2671][INFO]thr_udp_wasconn pthread_create created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[3],handle[0x9f3eb700] +[29 10:13:57][2671][INFO][CollectStart] log thread id (start_collect2_thread) : -1633769728 created +[29 10:13:57][2671][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[4],handle[0x9dfe9700] +[29 10:13:57][2671][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[5],handle[0x9d30c700] +[29 10:13:57][2671][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 10:13:57][2671][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 10:13:57][2671][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 10:14:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:14:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:14:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:14:58][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:14:58][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:15:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:15:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:15:00][2671][INFO][info_log] [0] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 10:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:15:00][2671][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 10:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:15:03][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:15:03][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:15:03][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:16:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:16:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:16:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:16:04][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:16:04][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:16:09][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:16:09][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:16:09][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:17:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:17:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:17:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:17:10][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:17:10][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:17:15][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:17:15][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:17:15][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:18:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:18:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:18:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:18:16][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:18:16][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:18:21][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:18:21][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:18:21][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:19:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:19:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:19:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:19:22][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:19:22][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:19:27][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:19:27][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:19:27][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:20:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:20:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:20:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:20:28][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:20:28][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:20:33][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:20:33][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:20:33][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:21:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:21:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:21:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:21:35][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:21:35][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:21:40][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:21:40][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:21:40][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:22:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:22:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:22:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:22:41][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:22:41][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:22:46][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:22:46][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:22:46][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:23:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:23:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:23:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:23:47][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:23:47][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:23:52][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:23:52][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:23:52][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:24:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:24:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:24:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:24:53][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:24:53][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:24:58][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:24:58][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:24:58][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:25:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:25:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:25:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:25:59][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:25:59][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:26:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:26:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:26:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:26:04][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:26:04][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:26:04][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:27:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:27:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:27:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:27:05][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:27:05][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:27:10][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:27:10][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:27:10][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:28:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:28:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:28:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:28:11][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:28:11][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:28:16][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:28:16][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:28:16][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:29:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:29:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:29:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:29:17][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:29:17][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:29:22][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:29:22][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:29:22][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:30:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:30:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:30:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:30:23][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:30:23][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:30:28][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:30:28][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:30:28][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:31:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:31:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:31:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:31:29][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:31:29][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:31:34][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:31:34][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:31:34][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:32:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:32:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:32:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:32:35][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:32:35][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:32:40][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:32:40][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:32:41][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:33:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:33:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:33:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:33:42][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:33:42][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:33:47][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:33:47][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:33:47][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:34:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:34:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:34:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:34:48][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:34:48][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:34:53][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:34:53][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:34:53][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:35:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:35:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:35:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:35:54][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:35:54][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:35:59][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:35:59][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:35:59][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:36:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:36:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:36:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:37:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:37:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:37:00][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:37:00][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:37:05][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:37:05][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:37:05][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:38:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:38:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:38:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:38:06][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:38:06][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:38:11][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:38:11][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:38:11][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:39:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:39:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:39:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:39:12][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:39:12][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:39:17][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:39:17][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:39:17][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:40:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:40:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:40:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:40:18][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:40:18][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:40:23][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:40:23][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:40:23][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:41:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:41:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:41:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:41:24][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:41:24][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:41:29][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:41:29][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:41:29][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:42:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:42:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:42:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:42:30][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:42:30][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:42:35][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:42:35][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:42:35][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:43:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:43:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:43:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:43:37][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:43:37][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:43:42][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:43:42][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:43:42][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:44:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:44:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:44:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1647, skip_count: 0 bind_count:0 +[29 10:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:45:00][2671][INFO][info_log] [0] udp recv(572.00b) 22 0 | 22 0 | 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 10:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:48:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 10:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:50:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:51:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:52:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:54:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:55:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:56:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:57:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:58:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:59:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:00:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:01:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:02:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:03:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:05:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:06:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:09:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:10:00][2671][INFO][info_log] [0] udp recv(1.01k) 39 0 | 40 0 | 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:10:00][2671][INFO][info_log] wasid:4, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:10:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[0/0] +[29 11:10:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(0), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3396, skip_count: 0 bind_count:0 +[29 11:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:11:00][2671][INFO][info_log] [0] udp recv(1.65k) 51 0 | 51 0 | 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:11:00][2671][INFO][info_log] wasid:4, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:11:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[6/6] +[29 11:11:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(6), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:11:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:11:00][2671][INFO][info_log] wasid:5, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:11:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[5/5] +[29 11:11:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(5), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:12:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:13:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:14:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:15:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:16:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:17:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:18:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:19:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:20:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:21:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:22:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:23:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:24:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:26:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:27:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:28:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:29:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:30:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:32:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:33:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:34:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:35:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:36:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:37:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:38:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:39:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:40:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:41:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:42:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:43:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 11:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:44:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:45:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:49:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:50:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:51:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:52:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:54:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:55:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:56:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:57:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 11:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:58:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:59:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:00:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:01:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:02:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:03:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:05:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:06:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:09:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:10:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:11:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:12:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:13:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:14:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:15:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:16:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:17:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:18:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:19:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:20:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:21:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:22:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:23:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:24:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:26:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:27:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:28:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:29:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:30:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:32:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:33:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:34:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:35:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:36:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:37:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:38:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:39:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:40:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:41:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:42:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:43:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:44:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:45:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:47:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:50:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:51:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:52:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:54:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:55:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:56:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:57:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:58:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:59:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:00:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:01:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:02:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:03:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(2)(1) +[29 13:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:05:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:06:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:09:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:10:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:11:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:12:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:13:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:14:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:15:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:16:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:17:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:18:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:19:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:20:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:21:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:22:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:23:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:24:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:26:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:27:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:28:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:29:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:30:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:32:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:33:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:34:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:35:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:36:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:37:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:38:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:39:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:40:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:41:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:42:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:43:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:44:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:45:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:50:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:51:00][2671][INFO][info_log] [0] udp recv(884.00b) 34 0 | 34 0 | 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:51:01][2671][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[29 13:51:01][2671][INFO][MAIN] imxosm is wrong. +[29 13:51:01][2671][INFO][thread_tcpconn] end +[29 13:51:04][2671][INFO][wait_all_thread_stop] all thread terminated. +[29 13:55:12][30036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[29 13:55:12][30036][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 13:55:12][30036][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[29 13:55:12][30036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 13:55:12][30036][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[29 13:55:12][30036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 13:55:12][30036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[29 13:55:12][30036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 13:55:12][30036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 13:55:12][30036][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 13:55:12][30036][INFO][MAIN] hostname[kkam] +[29 13:55:12][30036][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[29 13:55:12][30036][INFO][check_double_execution] write pid. 30036 +[29 13:55:12][30036][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[29 13:55:12][30036][INFO][create_new_dg_connection] thread create: -457029888 +[29 13:55:12][30036][INFO][add_thread_handle] idx[0],handle[0xe4c24700] +[29 13:55:12][30036][INFO][add_thread_handle] idx[1],handle[0xe4223700] +[29 13:55:12][30036][INFO][create_new_dg_connection] thread create: -467519744 +[29 13:55:12][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 13:55:12][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 13:55:12][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 13:55:12][30036][INFO]thr_udp_wasconn pthread_create created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[2],handle[0xe360f700] +[29 13:55:12][30036][INFO]thr_udp_wasconn pthread_create created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[3],handle[0xe2c0e700] +[29 13:55:12][30036][INFO][CollectStart] log thread id (start_collect2_thread) : -501164288 created +[29 13:55:12][30036][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 13:55:12][30036][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[4],handle[0xe0ff2700] +[29 13:55:12][30036][INFO][add_thread_handle] idx[4],handle[0xcffff700] +[29 13:55:12][30036][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 13:55:12][30036][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 13:55:12][30036][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 13:56:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2025, skip_count: 0 bind_count:0 +[29 13:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:56:00][30036][INFO][info_log] [0] udp recv(718.00b) 28 0 | 28 0 | 0 0 | 0 +[29 13:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:56:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 13:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:58:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:59:00][30036][INFO][info_log] [0] udp recv(832.00b) 32 0 | 32 0 | 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:00:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:01:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:02:00][30036][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:03:00][30036][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:04:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:05:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:05:35][30036][ERRO][processing_socket] get packet data failed(-1) +[29 14:05:35][30036][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 14:05:50][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 14:05:50][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 14:05:50][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 14:06:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2430, skip_count: 0 bind_count:0 +[29 14:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:06:00][30036][INFO][info_log] [0] udp recv(390.00b) 15 0 | 15 0 | 0 0 | 0 +[29 14:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:3780, skip_count: 0 bind_count:0 +[29 14:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:07:00][30036][INFO][info_log] [0] udp recv(718.00b) 28 0 | 28 0 | 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:07:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:08:00][30036][INFO][info_log] [0] udp recv(702.00b) 27 0 | 27 0 | 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:09:00][30036][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:10:00][30036][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:11:00][30036][INFO][info_log] [0] udp recv(536.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:11:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6345, skip_count: 0 bind_count:0 +[29 14:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:12:00][30036][INFO][info_log] [0] udp recv(848.00b) 33 0 | 33 0 | 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:12:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:13:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:14:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6636, skip_count: 0 bind_count:0 +[29 14:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:15:00][30036][INFO][info_log] [0] udp recv(1.68k) 50 0 | 51 0 | 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:15:00][30036][INFO][info_log] wasid:6, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:15:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[7/6] +[29 14:15:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(7), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:15:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:15:00][30036][INFO][info_log] wasid:9, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:15:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[4/3] +[29 14:15:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:16:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:16:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:17:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:20:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 14:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:22:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 39 0 | 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:23:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:24:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:25:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:26:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:27:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:28:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:29:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:31:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:32:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:33:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:34:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:36:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:37:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:38:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:39:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:40:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:41:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:42:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] tcp send queue count: 5 (127.0.0.1:1314), send size:6714, skip_count: 0 bind_count:0 +[29 14:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:44:00][30036][INFO][info_log] [0] udp recv(1.96k) 57 0 | 57 0 | 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:44:00][30036][INFO][info_log] wasid:6, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:44:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[9/9] +[29 14:44:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(9), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:44:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:44:00][30036][INFO][info_log] wasid:9, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:44:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(2), lazy[8/8] +[29 14:44:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(8), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:45:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6519, skip_count: 0 bind_count:0 +[29 14:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:45:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:46:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:49:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:51:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:52:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:54:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:55:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:56:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:59:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:00:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:02:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:03:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:04:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:05:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:06:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:07:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:08:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:09:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:10:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:11:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:12:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:13:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:14:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:15:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:16:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:17:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:20:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:21:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:22:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:23:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:24:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:25:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:26:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:27:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:28:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:29:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:30:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:31:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:32:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:33:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:34:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:35:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:36:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:37:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:38:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:40:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:41:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:44:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:45:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:46:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:48:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:49:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:50:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:51:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:52:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:54:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:55:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:56:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:58:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:00:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:01:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:02:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:02:25][30036][ERRO][processing_socket] get packet data failed(-1) +[29 16:02:25][30036][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 16:03:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:2808, skip_count: 0 bind_count:0 +[29 16:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:03:00][30036][INFO][info_log] [0] udp recv(468.00b) 18 0 | 18 0 | 0 0 | 0 +[29 16:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:04:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:05:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:06:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:06:40][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 16:06:40][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 16:06:41][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 16:07:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:2592, skip_count: 0 bind_count:0 +[29 16:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:07:00][30036][INFO][info_log] [0] udp recv(260.00b) 10 0 | 10 0 | 0 0 | 0 +[29 16:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:08:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:09:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:10:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:11:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:12:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:13:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:14:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:15:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:16:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:17:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:19:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:20:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:22:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:23:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:24:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:25:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:26:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:27:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:28:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:29:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:31:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:32:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:33:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:34:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:36:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:37:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:38:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:40:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:41:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:44:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:45:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:46:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:49:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:51:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:52:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:54:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:55:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:56:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:57:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:00:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:02:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:03:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:04:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:05:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:06:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:07:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:08:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:09:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:10:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:11:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:12:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:13:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:14:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:15:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:16:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:17:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:18:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:20:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:22:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:23:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:24:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:25:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:26:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:27:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:28:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:29:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:31:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:32:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:33:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:34:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:36:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:37:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:38:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:40:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:41:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:44:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:45:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:46:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:47:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:49:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:51:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:52:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 17:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:53:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 39 0 | 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:54:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:55:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:56:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:57:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 18:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 18:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:00:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 18:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 18:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:01:50][30036][INFO][exit_handler] SIGTERM sig caught +[29 18:01:50][30036][INFO][SIGNAL_HANDLER] SIGHUP sig caught +[29 18:01:50][30036][ERRO][xm_debug_logging] main_thr [source/main.c][916] +[29 18:01:50][30036][ERRO][xm_debug_logging] tcpconn_thr [source/thrcomm.c][912] +[29 18:01:50][30036][ERRO][xm_debug_logging] tcpsender_thr [source/thrcomm.c][412] +[29 18:01:50][30036][ERRO][xm_debug_logging] udp_recv_thr[0] [source/thr_udp.c][732] +[29 18:01:50][30036][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[0][0] [source/thr_udp.c][678] +[29 18:01:50][30036][ERRO][xm_debug_logging] udp_recv_thr[1] [source/thr_udp.c][732] +[29 18:01:50][30036][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[1][0] [source/thr_udp.c][678] +[29 18:01:50][30036][ERRO][xm_debug_logging] collect2_thr [source/collect.c][1161] +[29 18:01:50][30036][ERRO][xm_debug_logging] lazy_txn_delete_thr [source/collect.c][607] +[29 18:01:50][30036][ERRO][xm_debug_logging] lazy_txn_sql_delete_thr [source/collect.c][706] +[29 18:01:50][30036][ERRO][xm_debug_logging] udpsender_thr [source/collect.c][2437] +[06 17:05:18][9336][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[06 17:05:18][9336][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[06 17:05:18][9336][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[06 17:05:18][9336][INFO]XM_LOG_OPT: 0 [opt_num:0] +[06 17:05:18][9336][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[06 17:05:18][9336][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[06 17:05:18][9336][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[06 17:05:18][9336][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[06 17:05:18][9336][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[06 17:05:18][9336][INFO][read_properties] imx.prop AGENT_MODE:2 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[06 17:05:18][9336][INFO][MAIN] hostname[kkam] +[06 17:05:18][9336][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[06 17:05:18][9336][INFO][check_double_execution] write pid. 9336 +[06 17:05:18][9336][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[06 17:05:18][9336][INFO][create_new_dg_connection] thread create: -1239005440 +[06 17:05:18][9336][INFO][add_thread_handle] idx[0],handle[0xb6264700] +[06 17:05:18][9336][INFO][add_thread_handle] idx[1],handle[0xb5863700] +[06 17:05:18][9336][INFO][create_new_dg_connection] thread create: -1249495296 +[06 17:05:18][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:05:18][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:05:18][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:05:18][9336][INFO]thr_udp_wasconn pthread_create created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[2],handle[0xb4c4f700] +[06 17:05:18][9336][INFO]thr_udp_wasconn pthread_create created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[3],handle[0xaffff700] +[06 17:05:18][9336][INFO][CollectStart] log thread id (start_collect2_thread) : -1352669440 created +[06 17:05:18][9336][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[4],handle[0xaebfd700] +[06 17:05:18][9336][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[5],handle[0xae1fc700] +[06 17:05:18][9336][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[06 17:05:18][9336][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[06 17:05:18][9336][INFO][collect_initialize] thread_udpsender pthread_create created. +[06 17:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:06:00][9336][INFO][info_log] [0] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[06 17:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:06:00][9336][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[06 17:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:06:19][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:06:19][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:06:24][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:06:24][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:06:24][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:07:25][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:07:25][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:07:30][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:07:30][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:07:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:08:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:08:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:08:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:08:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:08:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:09:38][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:09:38][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:09:43][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:09:43][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:09:43][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:10:44][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:10:44][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:10:49][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:10:49][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:10:49][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:11:50][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:11:50][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:11:55][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:11:55][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:11:55][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:12:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:12:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:13:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:13:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:13:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:14:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:14:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:14:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:14:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:14:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:15:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:15:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:15:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:15:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:15:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:15:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:15:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:15:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:15:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:16:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:16:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:16:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:16:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:16:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:16:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:16:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:16:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:17:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:17:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:17:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:17:20][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:17:20][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:17:25][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:17:25][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:17:25][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:18:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:18:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:18:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:18:26][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:18:26][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:18:31][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:18:31][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:18:31][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:19:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:19:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:19:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:19:32][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:19:32][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:19:37][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:19:37][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:19:37][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:20:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:20:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:20:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:20:39][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:20:39][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:20:44][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:20:44][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:20:44][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:21:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:21:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:21:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:21:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:21:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:21:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:21:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:21:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:22:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:22:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:22:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:22:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:22:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:22:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:22:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:22:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:23:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:23:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:23:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:23:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:23:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:24:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:24:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:24:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:24:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:24:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:24:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:25:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:25:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:25:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:25:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:25:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:25:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:25:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:25:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:26:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:26:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:26:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:26:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:26:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:26:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:26:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:26:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:27:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:27:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:27:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:27:15][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:27:15][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:27:20][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:27:20][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:27:20][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:28:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:28:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:28:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:28:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:28:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:28:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:28:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:28:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:28:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:28:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:28:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:28:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:28:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:28:21][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:28:21][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:28:26][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:28:26][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:28:26][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:29:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:29:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:29:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:29:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:29:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:29:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:29:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:29:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:29:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:29:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:29:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:29:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:29:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:29:27][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:29:27][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:29:32][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:29:32][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:29:32][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:30:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:30:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:30:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:30:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:30:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:30:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:30:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:30:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:30:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:30:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:30:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:30:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:30:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:30:33][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:30:33][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:30:38][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:30:38][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:30:38][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:31:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:31:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:31:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:31:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:31:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:31:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:31:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:31:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:31:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:31:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:31:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:31:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:31:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:31:40][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:31:40][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:31:45][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:31:45][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:31:45][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:32:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:32:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:32:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:32:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:32:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:32:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:32:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:32:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:32:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:32:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:32:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:32:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:32:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:32:46][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:32:46][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:32:51][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:32:51][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:32:51][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:33:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:33:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:33:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:33:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:33:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:33:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:33:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:33:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:33:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:33:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:33:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:33:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:33:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:33:52][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:33:52][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:33:57][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:33:57][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:33:57][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:34:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:34:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:34:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:34:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:34:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:34:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:34:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:34:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:34:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:34:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:34:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:34:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:34:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:34:58][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:34:58][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:35:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:35:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:35:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:35:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:35:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:35:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:35:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:35:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:35:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:35:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:35:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:35:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:35:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:35:03][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:35:03][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:35:03][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:36:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:36:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:36:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:36:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:36:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:36:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:36:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:36:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:36:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:36:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:36:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:36:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:36:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:36:04][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:36:04][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:36:09][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:36:09][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:36:09][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:37:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:37:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:37:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:37:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:37:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:37:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:37:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:37:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:37:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:37:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:37:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:37:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:37:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:37:10][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:37:10][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:37:15][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:37:15][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:37:15][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:38:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:38:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:38:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:38:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:38:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:38:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:38:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:38:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:38:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:38:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:38:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:38:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:38:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:38:16][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:38:16][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:38:21][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:38:21][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:38:21][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:39:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:39:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:39:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:39:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:39:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:39:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:39:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:39:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:39:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:39:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:39:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:39:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:39:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:39:22][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:39:22][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:39:27][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:39:27][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:39:27][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:40:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:40:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:40:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:40:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:40:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:40:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:40:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:40:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:40:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:40:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:40:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:40:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:40:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:40:29][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:40:29][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:40:34][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:40:34][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:40:34][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:41:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:41:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:41:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:41:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:41:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:41:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:41:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:41:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:41:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:41:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:41:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:41:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:41:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:41:35][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:41:35][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:41:40][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:41:40][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:41:40][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:42:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:42:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:42:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:42:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:42:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:42:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:42:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:42:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:42:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:42:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:42:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:42:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:42:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:42:41][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:42:41][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:42:46][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:42:46][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:42:46][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:43:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:43:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:43:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:43:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:43:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:43:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:43:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:43:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:43:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:43:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:43:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:43:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:43:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:43:47][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:43:47][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:43:52][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:43:52][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:43:52][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:44:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:44:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:44:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:44:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:44:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:44:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:44:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:44:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:44:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:44:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:44:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:44:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:44:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:44:53][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:44:53][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:44:58][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:44:58][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:44:58][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:45:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:45:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:45:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:45:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:45:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:45:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:45:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:45:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:45:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:45:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:45:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:45:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:45:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:45:59][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:45:59][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:46:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:46:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:46:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:46:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:46:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:46:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:46:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:46:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:46:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:46:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:46:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:46:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:46:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:46:04][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:46:04][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:46:04][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:47:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:47:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:47:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:47:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:47:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:47:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:47:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:47:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:47:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:47:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:47:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:47:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:47:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:47:05][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:47:05][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:47:10][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:47:10][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:47:10][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:48:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:48:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:48:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:48:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:48:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:48:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:48:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:48:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:48:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:48:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:48:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:48:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:48:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:48:11][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:48:11][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:48:16][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:48:16][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:48:16][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:49:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:49:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:49:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:49:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:49:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:49:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:49:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:49:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:49:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:49:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:49:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:49:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:49:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:49:17][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:49:17][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:49:22][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:49:22][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:49:22][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:50:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:50:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:50:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:50:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:50:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:50:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:50:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:50:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:50:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:50:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:50:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:50:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:50:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:50:23][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:50:23][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:50:28][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:50:28][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:50:28][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:51:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:51:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:51:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:51:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:51:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:51:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:51:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:51:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:51:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:51:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:51:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:51:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:51:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:51:30][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:51:30][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:51:35][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:51:35][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:51:35][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:52:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:52:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:52:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:52:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:52:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:52:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:52:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:52:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:52:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:52:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:52:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:52:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:52:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:52:36][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:52:36][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:52:41][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:52:41][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:52:41][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:53:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:53:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:53:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:53:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:53:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:53:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:53:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:53:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:53:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:53:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:53:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:53:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:53:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:53:42][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:53:42][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:53:47][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:53:47][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:53:47][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:54:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:54:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:54:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:54:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:54:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:54:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:54:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:54:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:54:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:54:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:54:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:54:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:54:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:54:48][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:54:48][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:54:53][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:54:53][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:54:53][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:55:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:55:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:55:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:55:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:55:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:55:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:55:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:55:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:55:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:55:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:55:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:55:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:55:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:55:54][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:55:54][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:55:59][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:55:59][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:55:59][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:56:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:56:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:56:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:56:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:56:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:56:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:56:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:56:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:56:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:56:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:56:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:56:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:56:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:57:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:57:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:57:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:57:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:57:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:57:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:57:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:57:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:57:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:57:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:57:00][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:57:00][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:57:05][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:57:05][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:57:05][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:58:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:58:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:58:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:58:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:58:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:58:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:58:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:58:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:58:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:58:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:58:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:58:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:58:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:58:06][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:58:06][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:58:11][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:58:11][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:58:11][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:59:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:59:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:59:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:59:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:59:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:59:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:59:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:59:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:59:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:59:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:59:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:59:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:59:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:59:12][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:59:12][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:59:17][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:59:17][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:59:17][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:00:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:00:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:00:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:00:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:00:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:00:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:00:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:00:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:00:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:00:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:00:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:00:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:00:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:00:18][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:00:18][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:00:23][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:00:23][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:00:23][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:01:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:01:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:01:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:01:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:01:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:01:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:01:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:01:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:01:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:01:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:01:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:01:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:01:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:01:24][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:01:24][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:01:29][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:01:29][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:01:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:02:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:02:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:02:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:02:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:02:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:02:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:02:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:02:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:02:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:02:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:02:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:02:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:02:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:02:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:02:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:02:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:02:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:02:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:03:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:03:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:03:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:03:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:03:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:03:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:03:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:03:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:03:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:03:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:03:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:03:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:03:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:03:37][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:03:37][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:03:42][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:03:42][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:03:42][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:04:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:04:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:04:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:04:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:04:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:04:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:04:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:04:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:04:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:04:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:04:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:04:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:04:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:04:43][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:04:43][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:04:48][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:04:48][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:04:48][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:05:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:05:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:05:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:05:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:05:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:05:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:05:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:05:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:05:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:05:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:05:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:05:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:05:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:05:49][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:05:49][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:05:54][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:05:54][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:05:54][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:06:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:06:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:06:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:06:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:07:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:07:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:07:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:08:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:08:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:08:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:08:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:08:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:09:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:09:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:09:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:09:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:09:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:10:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:10:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:10:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:10:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:10:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:11:21][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:11:21][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:11:26][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:11:26][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:11:26][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:12:27][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:12:27][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:12:32][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:12:32][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:12:32][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:13:33][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:13:33][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:13:38][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:13:38][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:13:38][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:14:39][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:14:39][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:14:44][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:14:44][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:14:44][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:15:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:15:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:15:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:15:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:15:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:15:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:15:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:15:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:15:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:16:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:16:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:16:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:16:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:16:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:16:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:16:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:16:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:17:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:17:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:17:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:17:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:17:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:18:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:18:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:18:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:18:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:18:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:18:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:19:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:19:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:19:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:19:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:19:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:19:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:19:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:19:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:20:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:20:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:20:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:20:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:20:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:20:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:20:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:20:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:21:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:21:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:21:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:21:16][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:21:16][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:21:21][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:21:21][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:21:21][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:22:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:22:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:22:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:22:22][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:22:22][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:22:27][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:22:27][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:22:27][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:23:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:23:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:23:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:23:28][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:23:28][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:23:33][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:23:33][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:23:33][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:24:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:24:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:24:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:24:34][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:24:34][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:24:39][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:24:39][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:24:39][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:25:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:25:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:25:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:25:40][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:25:40][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:25:45][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:25:45][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:25:45][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:26:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:26:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:26:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:26:46][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:26:46][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:26:51][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:26:51][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:26:51][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:27:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:27:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:27:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:27:52][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:27:52][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:27:57][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:27:57][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:27:57][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:28:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:28:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:28:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:28:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:28:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:28:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:28:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:28:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:28:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:28:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:28:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:28:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:28:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:28:59][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:28:59][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:29:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:29:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:29:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:29:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:29:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:29:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:29:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:29:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:29:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:29:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:29:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:29:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:29:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:29:04][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:29:04][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:29:04][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:30:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:30:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:30:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:30:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:30:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:30:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:30:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:30:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:30:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:30:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:30:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:30:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:30:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:30:05][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:30:05][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:30:10][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:30:10][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:30:10][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:31:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:31:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:31:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:31:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:31:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:31:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:31:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:31:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:31:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:31:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:31:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:31:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:31:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:31:11][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:31:11][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:31:16][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:31:16][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:31:16][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:32:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:32:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:32:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:32:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:32:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:32:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:32:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:32:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:32:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:32:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:32:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:32:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:32:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:32:17][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:32:17][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:32:22][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:32:22][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:32:22][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:33:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:33:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:33:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:33:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:33:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:33:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:33:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:33:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:33:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:33:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:33:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:33:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:33:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:33:23][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:33:23][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:33:28][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:33:28][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:33:28][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:34:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:34:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:34:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:34:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:34:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:34:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:34:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:34:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:34:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:34:29][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:34:29][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:34:34][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:34:34][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:34:34][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:34:59][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:34:59][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:34:59][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:34:59][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:34:59][9336][INFO][info_log] udp recv list by wasid [] +[06 18:34:59][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:59][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:34:59][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:59][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:59][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:34:59][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:59][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:34:59][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:35:35][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:35:35][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:35:40][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:35:40][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:35:40][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:36:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:36:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:36:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:36:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:36:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:36:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:36:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:36:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:36:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:36:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:36:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:36:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:36:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:36:41][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:36:41][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:36:46][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:36:46][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:36:46][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:37:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:37:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:37:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:37:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:37:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:37:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:37:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:37:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:37:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:37:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:37:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:37:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:37:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:37:48][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:37:48][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:37:53][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:37:53][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:37:53][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:38:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:38:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:38:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:38:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:38:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:38:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:38:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:38:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:38:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:38:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:38:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:38:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:38:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:38:54][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:38:54][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:38:59][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:38:59][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:38:59][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:39:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:39:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:39:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:39:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:39:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:39:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:39:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:39:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:39:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:39:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:39:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:39:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:39:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:40:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:40:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:40:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:40:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:40:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:40:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:40:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:40:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:40:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:40:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:40:00][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:40:00][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:40:05][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:40:05][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:40:05][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:41:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:41:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:41:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:41:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:41:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:41:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:41:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:41:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:41:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:41:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:41:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:41:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:41:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:41:06][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:41:06][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:41:11][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:41:11][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:41:11][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:42:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:42:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:42:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:42:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:42:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:42:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:42:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:42:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:42:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:42:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:42:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:42:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:42:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:42:12][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:42:12][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:42:17][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:42:17][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:42:17][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:43:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:43:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:43:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:43:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:43:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:43:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:43:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:43:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:43:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:43:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:43:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:43:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:43:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:43:18][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:43:18][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:43:23][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:43:23][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:43:23][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:44:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:44:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:44:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:44:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:44:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:44:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:44:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:44:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:44:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:44:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:44:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:44:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:44:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:44:24][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:44:24][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:44:29][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:44:29][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:44:29][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:45:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:45:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:45:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:45:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:45:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:45:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:45:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:45:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:45:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:45:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:45:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:45:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:45:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:45:30][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:45:30][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:45:35][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:45:35][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:45:35][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:46:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:46:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:46:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:46:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:46:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:46:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:46:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:46:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:46:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:46:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:46:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:46:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:46:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:46:36][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:46:36][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:46:41][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:46:41][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:46:41][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:47:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:47:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:47:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:47:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:47:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:47:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:47:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:47:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:47:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:47:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:47:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:47:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:47:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:47:42][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:47:42][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:47:47][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:47:47][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:47:47][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:48:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:48:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:48:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:48:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:48:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:48:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:48:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:48:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:48:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:48:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:48:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:48:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:48:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:48:49][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:48:49][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:48:54][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:48:54][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:48:54][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:49:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:49:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:49:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:49:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:49:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:49:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:49:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:49:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:49:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:49:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:49:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:49:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:49:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:49:55][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:49:55][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:50:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:50:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:50:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:50:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:50:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:50:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:50:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:50:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:50:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:50:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:50:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:50:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:50:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:50:00][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:50:00][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:50:00][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:51:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:51:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:51:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:51:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:51:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:51:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:51:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:51:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:51:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:51:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:51:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:51:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:51:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:51:01][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:51:01][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:51:06][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:51:06][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:51:06][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:52:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:52:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:52:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:52:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:52:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:52:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:52:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:52:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:52:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:52:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:52:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:52:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:52:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:52:07][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:52:07][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:52:12][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:52:12][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:52:12][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:53:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:53:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:53:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:53:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:53:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:53:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:53:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:53:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:53:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:53:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:53:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:53:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:53:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:53:13][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:53:13][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:53:18][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:53:18][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:53:18][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:54:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:54:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:54:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:54:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:54:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:54:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:54:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:54:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:54:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:54:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:54:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:54:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:54:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:54:19][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:54:19][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:54:24][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:54:24][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:54:24][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:55:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:55:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:55:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:55:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:55:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:55:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:55:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:55:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:55:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:55:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:55:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:55:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:55:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:55:25][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:55:25][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:55:30][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:55:30][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:55:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:56:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:56:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:56:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:56:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:56:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:56:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:56:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:56:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:56:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:56:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:56:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:56:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:56:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:56:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:56:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:56:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:56:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:56:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:57:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:57:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:57:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:57:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:57:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:57:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:57:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:57:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:57:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:57:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:57:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:57:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:57:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:57:37][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:57:37][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:57:42][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:57:42][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:57:42][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:58:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:58:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:58:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:58:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:58:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:58:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:58:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:58:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:58:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:58:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:58:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:58:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:58:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:58:43][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:58:43][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:58:48][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:58:48][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:58:48][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:59:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:59:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:59:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:59:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:59:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:59:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:59:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:59:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:59:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:59:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:59:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:59:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:59:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:59:50][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:59:50][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:59:55][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:59:55][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:59:55][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:00:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:00:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:00:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:00:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:00:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:00:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:00:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:00:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:00:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:00:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:00:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:00:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:00:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:00:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:00:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:01:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:01:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:01:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:01:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:01:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:01:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:01:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:01:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:01:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:01:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:01:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:01:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:01:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:01:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:01:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:01:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:02:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:02:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:02:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:02:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:02:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:02:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:02:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:02:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:02:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:02:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:02:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:02:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:02:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:02:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:02:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:02:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:02:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:02:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:03:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:03:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:03:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:03:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:03:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:03:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:03:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:03:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:03:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:03:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:03:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:03:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:03:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:03:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:03:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:03:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:03:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:03:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:04:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:04:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:04:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:04:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:04:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:04:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:04:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:04:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:04:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:04:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:04:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:04:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:04:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:04:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:04:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:04:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:04:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:04:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:05:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:05:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:05:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:05:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:05:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:05:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:05:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:05:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:05:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:05:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:05:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:05:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:05:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:05:20][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:05:20][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:05:25][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:05:25][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:05:25][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:06:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:06:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:06:26][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:06:26][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:06:31][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:06:31][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:06:31][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:07:32][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:07:32][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:07:37][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:07:37][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:07:37][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:08:38][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:08:38][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:08:43][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:08:43][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:08:43][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:09:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:09:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:09:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:09:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:09:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:10:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:10:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:10:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:10:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:10:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:11:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:11:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:12:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:12:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:12:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:13:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:13:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:13:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:13:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:13:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:14:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:14:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:14:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:14:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:14:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:15:00][9336][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:594, skip_count: 0 bind_count:0 +[06 19:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:15:00][9336][INFO][info_log] udp recv list by wasid [5/] +[06 19:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:15:00][9336][INFO][info_log] [0] udp recv(240.00b) 10 0 | 10 0 | 0 0 | 0 +[06 19:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:15:00][9336][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[06 19:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3159, skip_count: 0 bind_count:0 +[06 19:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:16:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:16:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:17:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:17:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:18:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:18:00][9336][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:19:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:19:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:20:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:20:00][9336][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:21:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:21:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:22:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:22:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:23:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:23:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:24:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[06 19:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:24:00][9336][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:25:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:25:00][9336][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:26:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:26:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:27:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:27:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:27:07][9336][INFO][exit_handler] SIGTERM sig caught +[06 19:27:07][9336][INFO][SIGNAL_HANDLER] SIGHUP sig caught +[06 19:27:07][9336][ERRO][xm_debug_logging] main_thr [source/main.c][916] +[06 19:27:07][9336][ERRO][xm_debug_logging] tcpconn_thr [source/thrcomm.c][912] +[06 19:27:07][9336][ERRO][xm_debug_logging] tcpsender_thr [source/thrcomm.c][416] +[06 19:27:07][9336][ERRO][xm_debug_logging] udp_recv_thr[0] [source/thr_udp.c][732] +[06 19:27:07][9336][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[0][0] [source/thr_udp.c][678] +[06 19:27:07][9336][ERRO][xm_debug_logging] udp_recv_thr[1] [source/thr_udp.c][732] +[06 19:27:07][9336][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[1][0] [source/thr_udp.c][678] +[06 19:27:07][9336][ERRO][xm_debug_logging] collect2_thr [source/collect.c][1275] +[06 19:27:07][9336][ERRO][xm_debug_logging] lazy_txn_delete_thr [source/collect.c][607] +[06 19:27:07][9336][ERRO][xm_debug_logging] lazy_txn_sql_delete_thr [source/collect.c][706] +[06 19:27:07][9336][ERRO][xm_debug_logging] udpsender_thr [source/collect.c][2437] +[03 10:00:21][20485][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 10:00:21][20485][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 10:00:21][20485][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 10:00:21][20485][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 10:00:21][20485][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 10:00:21][20485][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 10:00:21][20485][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 10:00:21][20485][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 10:00:21][20485][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 10:00:21][20485][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 10:00:21][20485][INFO][MAIN] hostname[kkam] +[03 10:00:21][20485][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 10:00:21][20485][INFO][check_double_execution] write pid. 20485 +[03 10:00:21][20485][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 10:00:21][20485][INFO][create_new_dg_connection] thread create: 458417920 +[03 10:00:21][20485][INFO][add_thread_handle] idx[0],handle[0x1b52e700] +[03 10:00:21][20485][INFO][add_thread_handle] idx[1],handle[0x1ab2d700] +[03 10:00:21][20485][INFO][create_new_dg_connection] thread create: 447928064 +[03 10:00:21][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:00:21][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:00:21][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:00:21][20485][INFO]thr_udp_wasconn pthread_create created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[2],handle[0x19f19700] +[03 10:00:21][20485][INFO]thr_udp_wasconn pthread_create created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[3],handle[0x19518700] +[03 10:00:21][20485][INFO][CollectStart] log thread id (start_collect2_thread) : 414283520 created +[03 10:00:21][20485][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[4],handle[0x13fff700] +[03 10:00:21][20485][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[5],handle[0x135fe700] +[03 10:00:23][20485][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 10:00:23][20485][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 10:00:23][20485][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 10:01:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1674, skip_count: 0 bind_count:0 +[03 10:01:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:01:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:01:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:01:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:01:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:01:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:01:00][20485][INFO][info_log] [0] udp recv(588.00b) 23 0 | 23 0 | 0 0 | 0 +[03 10:01:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:01:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:01:00][20485][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 10:01:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:01:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:02:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:02:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:02:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:02:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:02:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:02:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:02:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:02:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:02:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:02:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:03:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:03:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:03:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:03:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:03:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:03:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:03:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:03:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:03:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:03:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:04:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:04:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:04:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:04:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:04:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:04:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:04:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:04:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:04:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:04:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:05:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:05:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:05:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:05:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:05:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:05:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:05:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:05:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:05:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:05:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:06:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:06:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:06:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:06:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:06:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:06:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:06:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:06:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:06:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:06:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:07:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:07:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:07:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:07:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:07:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:07:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:07:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:07:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:07:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:07:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:08:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:08:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:08:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:08:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:08:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:08:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:08:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:08:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:08:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:08:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:09:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:09:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:09:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:09:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:09:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:09:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:09:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:09:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:09:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:09:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:10:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:10:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:10:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:10:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:10:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:10:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:10:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:10:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:10:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:10:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:11:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:11:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:11:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:11:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:11:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:11:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:11:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:11:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:11:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:11:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:12:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:12:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:12:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:12:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:12:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:12:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:12:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:12:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:12:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:12:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:13:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:13:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:13:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:13:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:13:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:13:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:13:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:13:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:13:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:13:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:14:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:14:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:14:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:14:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:14:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:14:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:14:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:14:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:14:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:14:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:15:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:15:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:15:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:15:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:15:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:15:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:15:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:15:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:15:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:15:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:16:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:16:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:16:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:16:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:16:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:16:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:16:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:16:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:16:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:16:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:17:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:17:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:17:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:17:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:17:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:17:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:17:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:17:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:17:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:17:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:18:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:18:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:18:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:18:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:18:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:18:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:18:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:18:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:18:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:18:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:19:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:19:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:19:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:19:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:19:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:19:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:19:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:19:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:19:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:19:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:20:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:20:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:20:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:20:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:20:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:20:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:20:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:20:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:20:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:20:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:21:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:21:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:21:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:21:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:21:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:21:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:21:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:21:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:21:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:21:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:22:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:22:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:22:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:22:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:22:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:22:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:22:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:22:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:22:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:22:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:23:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:23:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:23:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:23:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:23:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:23:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:23:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:23:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:23:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:23:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:24:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:24:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:24:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:24:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:24:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:24:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:24:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:24:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:24:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:24:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:25:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:25:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:25:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:25:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:25:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:25:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:25:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:25:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:25:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:25:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:26:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:26:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:26:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:26:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:26:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:26:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:26:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:26:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:26:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:26:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:27:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:27:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:27:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:27:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:27:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:27:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:27:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:27:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:27:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:27:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:28:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:28:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:28:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:28:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:28:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:28:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:28:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:28:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:28:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:28:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:29:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:29:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:29:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:29:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:29:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:29:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:29:00][20485][INFO][info_log] [0] udp recv(110.00b) 5 0 | 5 0 | 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:29:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:29:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:29:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:30:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:30:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:30:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:30:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:30:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:30:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:30:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:30:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:30:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:30:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:31:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:31:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:31:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:31:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:31:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:31:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:31:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:31:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:31:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:31:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:32:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:32:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:32:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:32:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:32:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:32:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:32:00][20485][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:32:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:32:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:32:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:33:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:33:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:33:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:33:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:33:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:33:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:33:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:33:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:33:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:33:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:34:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:34:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:34:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:34:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:34:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:34:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:34:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:34:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:34:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:34:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:35:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:35:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:35:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:35:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:35:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:35:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:35:00][20485][INFO][info_log] [0] udp recv(390.00b) 15 0 | 15 0 | 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:35:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:35:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:35:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:36:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:36:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:36:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:36:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:36:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:36:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:36:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:36:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:36:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:36:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:37:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:37:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:37:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:37:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:37:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:37:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:37:00][20485][INFO][info_log] [0] udp recv(240.00b) 10 0 | 10 0 | 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:37:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:37:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:37:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:38:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:38:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:38:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:38:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:38:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:38:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:38:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:38:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:38:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:38:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:39:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:39:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:39:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:39:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:39:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:39:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:39:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:39:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:39:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:39:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:40:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:40:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:40:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:40:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:40:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:40:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:40:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:40:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:40:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:40:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:41:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:41:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:41:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:41:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:41:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:41:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:41:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:41:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:41:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:41:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:42:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:42:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:42:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:42:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:42:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:42:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:42:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:42:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:42:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:42:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:42:39][20485][ERRO][processing_socket] get packet data failed(-1) +[03 10:42:39][20485][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[03 10:42:49][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:42:49][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:42:49][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:43:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2700, skip_count: 0 bind_count:0 +[03 10:43:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:43:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:43:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:43:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:43:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:43:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:43:00][20485][INFO][info_log] [0] udp recv(858.00b) 33 0 | 32 0 | 0 0 | 0 +[03 10:43:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:43:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:43:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:43:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:43:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:44:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:44:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:44:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:44:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:44:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:44:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:44:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:44:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:44:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:44:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:45:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:45:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:45:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:45:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:45:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:45:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:45:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:45:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:45:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:45:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:46:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:46:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:46:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:46:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:46:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:46:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:46:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:46:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:46:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:46:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:47:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:47:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:47:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:47:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:47:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:47:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:47:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:47:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:47:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:47:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:47:17][20485][ERRO][processing_socket] get packet data failed(-1) +[03 10:47:17][20485][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[03 10:47:32][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:47:32][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:47:32][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:48:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2430, skip_count: 0 bind_count:0 +[03 10:48:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:48:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:48:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:48:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:48:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:48:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:48:00][20485][INFO][info_log] [0] udp recv(702.00b) 27 0 | 27 0 | 0 0 | 0 +[03 10:48:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:48:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:48:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:48:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:48:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:49:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:49:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:49:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:49:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:49:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:49:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:49:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:49:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:49:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:49:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:50:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:50:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:50:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:50:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:50:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:50:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:50:00][20485][INFO][info_log] [0] udp recv(442.00b) 17 0 | 17 0 | 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:50:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:50:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:50:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:51:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:51:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:51:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:51:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:51:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:51:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:51:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:51:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:51:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:51:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:52:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:52:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:52:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:52:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:52:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:52:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:52:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:52:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:52:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:52:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:53:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:53:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:53:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:53:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:53:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:53:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:53:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:53:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:53:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:53:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:54:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:54:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:54:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:54:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:54:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:54:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:54:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:54:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:54:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:54:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:3888, skip_count: 0 bind_count:0 +[03 10:55:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:55:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:55:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:55:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:55:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:55:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:55:00][20485][INFO][info_log] [0] udp recv(292.00b) 12 0 | 12 0 | 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:55:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:55:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:55:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[03 10:56:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:56:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:56:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:56:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:56:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:56:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:56:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:56:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:56:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:56:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[03 10:57:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:57:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:57:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:57:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:57:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:57:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:57:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:57:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:57:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:57:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:57:36][20485][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 10:57:36][20485][INFO][MAIN] imxosm is wrong. +[03 10:57:37][20485][INFO][thread_tcpconn] end +[03 10:57:39][20485][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 10:57:39][20485][INFO][wait_all_thread_stop] all thread terminated. +[03 10:57:39][20485][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:03:54][4595][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 11:03:54][4595][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:03:54][4595][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 11:03:54][4595][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 11:03:54][4595][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 11:03:54][4595][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 11:03:54][4595][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 11:03:54][4595][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 11:03:54][4595][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:03:54][4595][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 11:03:54][4595][INFO][MAIN] hostname[kkam] +[03 11:03:54][4595][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:03:54][4595][INFO][check_double_execution] write pid. 4595 +[03 11:03:54][4595][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 11:03:54][4595][INFO][create_new_dg_connection] thread create: 1631655680 +[03 11:03:54][4595][INFO][add_thread_handle] idx[0],handle[0x61411700] +[03 11:03:54][4595][INFO][add_thread_handle] idx[1],handle[0x60a10700] +[03 11:03:54][4595][INFO][create_new_dg_connection] thread create: 1621165824 +[03 11:03:54][4595][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[1631655680] +[03 11:03:54][4595][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 11:03:54][4595][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 11:03:54][4595][INFO]thr_udp_wasconn pthread_create created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[2],handle[0x5bdec700] +[03 11:03:54][4595][INFO]thr_udp_wasconn pthread_create created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[3],handle[0x5b3eb700] +[03 11:03:54][4595][INFO][CollectStart] log thread id (start_collect2_thread) : 1520346880 created +[03 11:03:54][4595][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[4],handle[0x59fe9700] +[03 11:03:54][4595][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[5],handle[0x595e8700] +[03 11:03:54][4595][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 11:03:54][4595][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 11:03:54][4595][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 11:04:00][4595][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:108, skip_count: 0 bind_count:0 +[03 11:04:00][4595][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:04:00][4595][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:04:00][4595][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:04:00][4595][INFO][info_log] udp recv list by wasid [10/] +[03 11:04:00][4595][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:04:00][4595][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:04:00][4595][INFO][info_log] [0] udp recv(68.00b) 3 0 | 3 0 | 0 0 | 0 +[03 11:04:00][4595][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:04:00][4595][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:04:00][4595][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:04:00][4595][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:04:00][4595][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3051, skip_count: 0 bind_count:0 +[03 11:05:00][4595][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:05:00][4595][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:05:00][4595][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:05:00][4595][INFO][info_log] udp recv list by wasid [10/11/] +[03 11:05:00][4595][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:05:00][4595][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:05:00][4595][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:05:00][4595][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:05:00][4595][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:05:00][4595][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:05:21][4595][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:05:21][4595][INFO][MAIN] imxosm is wrong. +[03 11:05:22][4595][INFO][thread_tcpconn] end +[03 11:05:24][4595][INFO][wait_all_thread_stop] all thread terminated. +[03 11:05:24][4595][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:05:24][4595][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:08:45][8520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 11:08:45][8520][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:08:45][8520][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 11:08:45][8520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 11:08:45][8520][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 11:08:45][8520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 11:08:45][8520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 11:08:45][8520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 11:08:45][8520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:08:45][8520][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 11:08:45][8520][INFO][MAIN] hostname[kkam] +[03 11:08:45][8520][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:08:45][8520][INFO][check_double_execution] write pid. 8520 +[03 11:08:45][8520][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 11:08:45][8520][INFO][create_new_dg_connection] thread create: -1635588352 +[03 11:08:45][8520][INFO][add_thread_handle] idx[0],handle[0x9e82e700] +[03 11:08:45][8520][INFO][add_thread_handle] idx[1],handle[0x9de2d700] +[03 11:08:45][8520][INFO][create_new_dg_connection] thread create: -1646078208 +[03 11:08:45][8520][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1635588352] +[03 11:08:45][8520][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 11:08:45][8520][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 11:08:45][8520][INFO]thr_udp_wasconn pthread_create created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[2],handle[0x9d219700] +[03 11:08:45][8520][INFO]thr_udp_wasconn pthread_create created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[3],handle[0x97fff700] +[03 11:08:45][8520][INFO][CollectStart] log thread id (start_collect2_thread) : -1755322624 created +[03 11:08:45][8520][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 11:08:45][8520][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[4],handle[0x96bfd700] +[03 11:08:45][8520][INFO][add_thread_handle] idx[4],handle[0x961fc700] +[03 11:08:45][8520][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 11:08:45][8520][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 11:08:45][8520][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 11:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:459, skip_count: 0 bind_count:0 +[03 11:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:09:00][8520][INFO][info_log] [0] udp recv(198.00b) 8 0 | 8 0 | 0 0 | 0 +[03 11:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:09:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:10:00][8520][INFO][info_log] [0] udp recv(338.00b) 13 0 | 13 0 | 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:11:00][8520][INFO][info_log] [0] udp recv(68.00b) 3 0 | 3 0 | 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:11:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:12:00][8520][INFO][info_log] [0] udp recv(952.00b) 37 0 | 37 0 | 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:12:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:13:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:14:00][8520][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:15:00][8520][INFO][info_log] [0] udp recv(500.00b) 20 0 | 20 0 | 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:15:00][8520][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:19:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:20:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:21:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:22:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:29:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:33:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:34:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:37:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:42:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:43:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:44:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:47:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:54:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:56:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:58:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:00:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:01:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:03:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:09:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:12:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:15:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:16:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:18:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:23:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:26:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:29:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:32:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:33:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:34:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:36:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:37:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:42:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:43:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:50:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:51:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:54:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:55:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:56:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:58:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:59:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:00:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:01:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:01:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:01:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:01:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:01:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:01:59][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:01:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:01:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:08:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:10:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 13:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:14:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:16:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:18:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:21:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:22:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:24:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:25:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:26:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:27:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:34:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:34:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:34:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:34:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:34:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:34:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:34:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:34:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:45:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:46:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:55:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:58:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:59:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:03:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:08:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:11:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:17:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:18:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:22:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:23:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:27:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:31:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:32:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:34:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:41:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:42:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:43:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:44:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 41 0 | 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:58:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:59:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:00:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:02:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:03:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 15:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:10:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:11:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:12:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:13:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:16:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:20:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:21:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:22:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:23:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:24:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:30:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:31:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:31:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:31:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:31:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:31:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:31:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:31:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:31:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:31:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:33:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:35:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:37:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:38:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:40:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:41:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:43:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:44:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:45:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:47:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:51:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:52:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:53:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:54:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:56:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:57:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:58:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:59:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:02:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:03:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:04:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:08:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:16:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:17:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:25:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:26:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 16:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:28:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:29:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:32:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:34:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:38:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:39:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:41:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:42:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:51:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:52:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:54:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 16:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:55:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:58:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:00:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:01:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:09:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:15:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:17:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:30:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:31:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:35:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:36:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:37:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:38:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:39:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:40:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:41:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:42:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:43:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:48:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:51:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:54:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:55:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:57:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:58:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:03:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:06:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:09:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:10:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:14:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:16:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:21:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:22:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:25:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:26:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 18:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:30:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:31:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:52:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 18:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:58:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:59:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:01:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:02:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:08:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:10:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:10:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:10:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:10:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:10:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:10:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:10:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:10:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:13:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:14:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:16:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:17:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:19:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:19:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:19:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:19:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:19:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:19:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:19:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:19:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:22:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:23:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:25:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:29:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:31:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:32:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:33:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:45:24][7636][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 09:45:24][7636][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 09:45:24][7636][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 09:45:24][7636][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 09:45:24][7636][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 09:45:24][7636][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 09:45:24][7636][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 09:45:24][7636][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 09:45:24][7636][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 09:45:24][7636][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 09:45:24][7636][INFO][MAIN] hostname[kkam] +[15 09:45:24][7636][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 09:45:24][7636][INFO][check_double_execution] write pid. 7636 +[15 09:45:24][7636][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 09:45:24][7636][INFO][create_new_dg_connection] thread create: -1892092160 +[15 09:45:24][7636][INFO][add_thread_handle] idx[0],handle[0x8f38f700] +[15 09:45:24][7636][INFO][add_thread_handle] idx[1],handle[0x8e98e700] +[15 09:45:24][7636][INFO][create_new_dg_connection] thread create: -1902582016 +[15 09:45:24][7636][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1892092160] +[15 09:45:24][7636][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 09:45:24][7636][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 09:45:24][7636][INFO]thr_udp_wasconn pthread_create created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[2],handle[0x8dd7a700] +[15 09:45:24][7636][INFO]thr_udp_wasconn pthread_create created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[3],handle[0x8d379700] +[15 09:45:24][7636][INFO][CollectStart] log thread id (start_collect2_thread) : -2013268224 created +[15 09:45:24][7636][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[4],handle[0x875fe700] +[15 09:45:24][7636][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[5],handle[0x86bfd700] +[15 09:45:24][7636][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 09:45:24][7636][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 09:45:24][7636][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 09:46:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1836, skip_count: 0 bind_count:0 +[15 09:46:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:46:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:46:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:46:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:46:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:46:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:46:00][7636][INFO][info_log] [0] udp recv(650.00b) 25 0 | 25 0 | 0 0 | 0 +[15 09:46:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:46:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:46:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:46:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:46:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:47:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:47:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:47:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:47:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:47:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:47:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:47:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:47:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:47:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:47:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:48:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:48:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:48:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:48:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:48:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:48:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:48:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:48:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:48:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:48:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:49:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:49:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:49:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:49:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:49:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 09:49:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:49:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:49:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:49:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:49:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:50:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:50:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:50:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:50:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:50:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 09:50:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:50:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:50:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:50:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:50:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:51:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:51:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:51:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:51:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:51:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:51:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:51:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:51:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:51:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:51:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:52:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:52:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:52:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:52:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:52:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:52:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:52:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:52:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:52:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:52:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:53:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:53:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:53:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:53:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:53:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:53:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:53:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:53:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:53:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:53:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:54:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:54:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:54:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:54:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:54:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:54:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:54:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:54:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:54:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:54:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:55:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:55:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:55:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:55:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:55:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:55:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:55:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:55:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:55:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:55:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:56:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:56:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:56:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:56:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:56:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:56:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:56:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:56:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:56:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:56:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:57:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:57:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:57:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:57:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:57:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:57:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:57:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:57:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:57:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:57:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:58:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:58:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:58:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:58:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:58:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:58:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:58:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:58:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:58:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:58:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:58:33][7636][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 09:58:33][7636][INFO][MAIN] imxosm is wrong. +[15 09:58:35][7636][INFO][thread_tcpconn] end +[15 09:58:36][7636][INFO][wait_all_thread_stop] all thread terminated. +[15 11:25:48][15283][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 11:25:48][15283][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:25:48][15283][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 11:25:48][15283][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 11:25:48][15283][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 11:25:48][15283][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 11:25:48][15283][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 11:25:48][15283][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 11:25:48][15283][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:25:48][15283][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 11:25:48][15283][INFO][MAIN] hostname[kkam] +[15 11:25:48][15283][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:25:48][15283][INFO][check_double_execution] write pid. 15283 +[15 11:25:48][15283][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 11:25:48][15283][INFO][create_new_dg_connection] thread create: -1255958784 +[15 11:25:48][15283][INFO][add_thread_handle] idx[0],handle[0xb5239700] +[15 11:25:48][15283][INFO][add_thread_handle] idx[1],handle[0xb4838700] +[15 11:25:48][15283][INFO][create_new_dg_connection] thread create: -1266448640 +[15 11:25:48][15283][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1255958784] +[15 11:25:48][15283][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:25:48][15283][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:25:48][15283][INFO]thr_udp_wasconn pthread_create created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[2],handle[0xb3c24700] +[15 11:25:48][15283][INFO]thr_udp_wasconn pthread_create created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[3],handle[0xb3223700] +[15 11:25:48][15283][INFO][CollectStart] log thread id (start_collect2_thread) : -1300093184 created +[15 11:25:48][15283][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[4],handle[0xb1e21700] +[15 11:25:48][15283][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[5],handle[0xb1013700] +[15 11:25:49][15283][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 11:25:49][15283][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 11:25:49][15283][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 11:26:00][15283][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:216, skip_count: 0 bind_count:0 +[15 11:26:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:26:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:26:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:26:00][15283][INFO][info_log] udp recv list by wasid [14/] +[15 11:26:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:26:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:26:00][15283][INFO][info_log] [0] udp recv(104.00b) 4 0 | 4 0 | 0 0 | 0 +[15 11:26:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:26:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:26:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:26:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:26:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2862, skip_count: 0 bind_count:0 +[15 11:27:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:27:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:27:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:27:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:27:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:27:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:27:00][15283][INFO][info_log] [0] udp recv(952.00b) 37 0 | 37 0 | 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:27:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:27:00][15283][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:27:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:28:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:28:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:28:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:28:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:28:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:28:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:28:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:28:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:28:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:28:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:29:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:29:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:29:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:29:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:29:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:29:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:29:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:29:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:29:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:29:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:30:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:30:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:30:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:30:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:30:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:30:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:30:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:30:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:30:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:30:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:31:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:31:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:31:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:31:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:31:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:31:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:31:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:31:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:31:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:31:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:32:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:32:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:32:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:32:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:32:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:32:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:32:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:32:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:32:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:32:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:33:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:33:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:33:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:33:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:33:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:33:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:33:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:33:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:33:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:33:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:34:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:34:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:34:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:34:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:34:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:34:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:34:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:34:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:34:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:34:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:35:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:35:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:35:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:35:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:35:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:35:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:35:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:35:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:35:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:35:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:36:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:36:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:36:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:36:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:36:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:36:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:36:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:36:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:36:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:36:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:37:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:37:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:37:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:37:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:37:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:37:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:37:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:37:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:37:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:37:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:38:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:38:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:38:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:38:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:38:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:38:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:38:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:38:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:38:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:38:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:39:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:39:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:39:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:39:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:39:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:39:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:39:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:39:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:39:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:39:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:40:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:40:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:40:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:40:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:40:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:40:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:40:00][15283][INFO][info_log] [0] udp recv(832.00b) 32 0 | 33 0 | 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:40:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:40:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:40:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:40:01][15283][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:40:01][15283][INFO][MAIN] imxosm is wrong. +[15 11:40:01][15283][INFO][thread_tcpconn] end +[15 11:40:04][15283][INFO][wait_all_thread_stop] all thread terminated. +[15 11:42:39][27306][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 11:42:39][27306][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:42:39][27306][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 11:42:39][27306][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 11:42:39][27306][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 11:42:39][27306][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 11:42:39][27306][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 11:42:39][27306][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 11:42:39][27306][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:42:39][27306][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 11:42:39][27306][INFO][MAIN] hostname[kkam] +[15 11:42:39][27306][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:42:39][27306][INFO][check_double_execution] write pid. 27306 +[15 11:42:39][27306][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 11:42:39][27306][INFO][create_new_dg_connection] thread create: 616879872 +[15 11:42:39][27306][INFO][add_thread_handle] idx[0],handle[0x24c4d700] +[15 11:42:39][27306][INFO][add_thread_handle] idx[1],handle[0x2424c700] +[15 11:42:39][27306][INFO][create_new_dg_connection] thread create: 606390016 +[15 11:42:39][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:42:39][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:42:39][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:42:39][27306][INFO]thr_udp_wasconn pthread_create created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[2],handle[0x23638700] +[15 11:42:39][27306][INFO]thr_udp_wasconn pthread_create created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[3],handle[0x22c37700] +[15 11:42:39][27306][INFO][CollectStart] log thread id (start_collect2_thread) : 572745472 created +[15 11:42:39][27306][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[4],handle[0x21835700] +[15 11:42:39][27306][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[5],handle[0x20d40700] +[15 11:42:39][27306][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 11:42:39][27306][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 11:42:39][27306][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 11:43:00][27306][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:513, skip_count: 0 bind_count:0 +[15 11:43:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:43:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:43:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:43:00][27306][INFO][info_log] udp recv list by wasid [14/] +[15 11:43:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:43:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:43:00][27306][INFO][info_log] [0] udp recv(182.00b) 7 0 | 7 0 | 0 0 | 0 +[15 11:43:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:43:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:43:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:43:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:43:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2970, skip_count: 0 bind_count:0 +[15 11:44:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:44:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:44:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:44:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:44:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:44:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:44:00][27306][INFO][info_log] [0] udp recv(1004.00b) 39 0 | 38 0 | 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:44:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:44:00][27306][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:44:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:44:57][27306][ERRO][processing_socket] get packet data failed(-1) +[15 11:44:57][27306][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 11:45:00][27306][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:3132, skip_count: 0 bind_count:0 +[15 11:45:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:45:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:45:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:45:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:45:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:45:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:45:00][27306][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:45:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:45:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:45:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:45:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:45:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:45:12][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:45:12][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:45:12][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:46:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2538, skip_count: 0 bind_count:0 +[15 11:46:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:46:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:46:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:46:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:46:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:46:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:46:00][27306][INFO][info_log] [0] udp recv(728.00b) 28 0 | 28 0 | 0 0 | 0 +[15 11:46:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:46:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:46:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:46:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:46:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:47:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:47:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:47:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:47:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:47:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:47:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:47:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:47:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:47:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:47:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:48:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:48:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:48:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:48:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:48:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:48:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:48:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:48:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:48:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:48:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:48:28][27306][ERRO][processing_socket] get packet data failed(-1) +[15 11:48:28][27306][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 11:48:48][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:48:48][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:48:49][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:49:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2106, skip_count: 0 bind_count:0 +[15 11:49:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:49:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:49:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:49:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:49:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:49:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:49:00][27306][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[15 11:49:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:49:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:49:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:49:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:49:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:50:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:50:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:50:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:50:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:50:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:50:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:50:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:50:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:50:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:50:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:51:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:51:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:51:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:51:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:51:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:51:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:51:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:51:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:51:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:51:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:52:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:52:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:52:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:52:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:52:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:52:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:52:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:52:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:52:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:52:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:53:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:53:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:53:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:53:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:53:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:53:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:53:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:53:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:53:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:53:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:54:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:54:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:54:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:54:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:54:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:54:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:54:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:54:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:54:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:54:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:04:00][14490][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 12:04:00][14490][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:04:00][14490][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 12:04:00][14490][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 12:04:00][14490][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 12:04:00][14490][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 12:04:00][14490][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 12:04:00][14490][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 12:04:00][14490][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 12:04:00][14490][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 12:04:00][14490][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 12:04:00][14490][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 12:04:00][14490][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 12:04:00][14490][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 12:04:00][14490][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 12:04:00][14490][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:04:00][14490][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 12:04:00][14490][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 12:04:00][14490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 12:04:00][14490][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 12:04:00][14490][INFO][MAIN] hostname[kkam] +[15 12:04:00][14490][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 12:04:00][14490][INFO][check_double_execution] write pid. 14490 +[15 12:04:00][14490][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 12:04:00][14490][INFO][create_new_dg_connection] thread create: -304634112 +[15 12:04:00][14490][INFO][add_thread_handle] idx[0],handle[0xedd7a700] +[15 12:04:00][14490][INFO][add_thread_handle] idx[1],handle[0xed379700] +[15 12:04:00][14490][INFO][create_new_dg_connection] thread create: -315123968 +[15 12:04:00][14490][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-304634112] +[15 12:04:00][14490][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 12:04:00][14490][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 12:04:00][14490][INFO]thr_udp_wasconn pthread_create created. +[15 12:04:00][14490][INFO][add_thread_handle] idx[2],handle[0xe7fff700] +[15 12:04:00][14490][INFO]thr_udp_wasconn pthread_create created. +[15 12:04:00][14490][INFO][add_thread_handle] idx[3],handle[0xe75fe700] +[15 12:04:00][14490][INFO][CollectStart] log thread id (start_collect2_thread) : -423635200 created +[15 12:04:00][14490][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 12:04:00][14490][INFO][add_thread_handle] idx[4],handle[0xe61fc700] +[15 12:04:00][14490][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 12:04:00][14490][INFO][add_thread_handle] idx[5],handle[0xe57fb700] +[15 12:04:00][14490][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 12:04:00][14490][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 12:04:00][14490][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 12:05:00][14490][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1512, skip_count: 0 bind_count:0 +[15 12:05:00][14490][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:05:00][14490][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:05:00][14490][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:05:00][14490][INFO][info_log] udp recv list by wasid [17/] +[15 12:05:00][14490][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:05:00][14490][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:05:00][14490][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[15 12:05:00][14490][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:05:00][14490][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:05:00][14490][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:05:00][14490][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:05:00][14490][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:06:00][14490][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:06:00][14490][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:06:00][14490][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:06:00][14490][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:06:00][14490][INFO][info_log] udp recv list by wasid [17/] +[15 12:06:00][14490][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:00][14490][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:06:00][14490][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:06:00][14490][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:00][14490][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:06:00][14490][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:06:00][14490][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:06:00][14490][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:07:00][14490][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:07:00][14490][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:07:00][14490][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:07:00][14490][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:07:00][14490][INFO][info_log] udp recv list by wasid [17/] +[15 12:07:00][14490][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:07:00][14490][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:07:00][14490][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:07:00][14490][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:07:00][14490][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:07:00][14490][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:07:00][14490][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:07:00][14490][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:08:00][14490][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:08:00][14490][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:08:00][14490][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:08:00][14490][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:08:00][14490][INFO][info_log] udp recv list by wasid [17/] +[15 12:08:00][14490][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:08:00][14490][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:08:00][14490][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:08:00][14490][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:08:00][14490][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:08:00][14490][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:08:00][14490][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:08:00][14490][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:09:00][14490][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:09:00][14490][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:09:00][14490][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:09:00][14490][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:09:00][14490][INFO][info_log] udp recv list by wasid [17/] +[15 12:09:00][14490][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:09:00][14490][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:09:00][14490][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:09:00][14490][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:09:00][14490][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:09:00][14490][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:09:00][14490][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:09:00][14490][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:09:00][18779][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 12:09:00][18779][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:09:00][18779][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 12:09:00][18779][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 12:09:00][18779][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 12:09:00][18779][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 12:09:00][18779][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 12:09:00][18779][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 12:09:00][18779][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 12:09:00][18779][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 12:09:00][18779][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 12:09:00][18779][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 12:09:00][18779][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 12:09:00][18779][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 12:09:00][18779][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 12:09:00][18779][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:09:00][18779][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 12:09:00][18779][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 12:09:00][18779][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 12:09:00][18779][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 12:09:00][18779][INFO][MAIN] hostname[kkam] +[15 12:09:00][18779][INFO][check_double_execution] write pid. 18779 +[15 12:09:00][18779][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 12:09:00][18779][INFO][create_new_dg_connection] thread create: -1218468096 +[15 12:09:00][18779][INFO][add_thread_handle] idx[0],handle[0xb75fa700] +[15 12:09:00][18779][INFO][add_thread_handle] idx[1],handle[0xb6bf9700] +[15 12:09:00][18779][INFO][create_new_dg_connection] thread create: -1228957952 +[15 12:09:00][18779][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1218468096] +[15 12:09:00][18779][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 12:09:00][18779][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 12:09:00][18779][INFO]thr_udp_wasconn pthread_create created. +[15 12:09:00][18779][INFO][add_thread_handle] idx[2],handle[0xb5fe5700] +[15 12:09:00][18779][INFO]thr_udp_wasconn pthread_create created. +[15 12:09:00][18779][INFO][add_thread_handle] idx[3],handle[0xb55e4700] +[15 12:09:00][18779][INFO][CollectStart] log thread id (start_collect2_thread) : -1262602496 created +[15 12:09:00][18779][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 12:09:00][18779][INFO][add_thread_handle] idx[4],handle[0xaffff700] +[15 12:09:00][18779][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 12:09:00][18779][INFO][add_thread_handle] idx[5],handle[0xaf5fe700] +[15 12:09:00][18779][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 12:09:00][18779][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 12:09:00][18779][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 12:09:00][14490][INFO][MAIN] imxosm is wrong. +[15 12:09:02][14490][INFO][thread_tcpconn] end +[15 12:09:03][18779][INFO][MAIN] imxosm is wrong. +[15 12:09:03][14490][INFO][wait_all_thread_stop] all thread terminated. +[15 12:09:04][18779][INFO][thread_tcpconn] end +[15 12:09:06][18779][INFO][wait_all_thread_stop] all thread terminated. +[15 12:11:48][21509][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 12:11:48][21509][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:11:48][21509][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 12:11:48][21509][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 12:11:48][21509][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 12:11:48][21509][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 12:11:48][21509][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 12:11:48][21509][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 12:11:48][21509][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 12:11:48][21509][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 12:11:48][21509][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 12:11:48][21509][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 12:11:48][21509][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 12:11:48][21509][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 12:11:48][21509][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 12:11:48][21509][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:11:48][21509][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 12:11:48][21509][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 12:11:48][21509][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 12:11:48][21509][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 12:11:48][21509][INFO][MAIN] hostname[kkam] +[15 12:11:48][21509][INFO][check_double_execution] write pid. 21509 +[15 12:11:48][21509][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 12:11:48][21509][INFO][create_new_dg_connection] thread create: -140593408 +[15 12:11:48][21509][INFO][add_thread_handle] idx[0],handle[0xf79eb700] +[15 12:11:48][21509][INFO][add_thread_handle] idx[1],handle[0xf6fea700] +[15 12:11:48][21509][INFO][create_new_dg_connection] thread create: -151083264 +[15 12:11:48][21509][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-140593408] +[15 12:11:48][21509][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 12:11:48][21509][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 12:11:48][21509][INFO]thr_udp_wasconn pthread_create created. +[15 12:11:48][21509][INFO][add_thread_handle] idx[2],handle[0xf63d6700] +[15 12:11:48][21509][INFO]thr_udp_wasconn pthread_create created. +[15 12:11:48][21509][INFO][add_thread_handle] idx[3],handle[0xf59d5700] +[15 12:11:48][21509][INFO][CollectStart] log thread id (start_collect2_thread) : -184727808 created +[15 12:11:48][21509][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 12:11:48][21509][INFO][add_thread_handle] idx[4],handle[0xeffff700] +[15 12:11:48][21509][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 12:11:48][21509][INFO][add_thread_handle] idx[5],handle[0xef5fe700] +[15 12:11:49][21509][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 12:11:49][21509][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 12:11:49][21509][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 12:12:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:270, skip_count: 0 bind_count:0 +[15 12:12:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:12:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:12:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:12:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:12:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:12:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:12:00][21509][INFO][info_log] [0] udp recv(104.00b) 4 0 | 4 0 | 0 0 | 0 +[15 12:12:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:12:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:12:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:12:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:12:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:13:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:13:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:13:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:13:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:13:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:13:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:13:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:13:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:13:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:13:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:13:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:13:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:13:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:14:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:14:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:14:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:14:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:14:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:14:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:14:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:14:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:14:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:14:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:14:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:14:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:14:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:15:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:15:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:15:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:15:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:15:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:15:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:15:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:15:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:15:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:15:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:15:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:15:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:15:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:16:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:16:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:16:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:16:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:16:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:16:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:16:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:16:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:16:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:16:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:16:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:16:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:16:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:17:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:17:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:17:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:17:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:17:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:17:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:17:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:17:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:17:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:17:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:17:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:17:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:17:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:18:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:18:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:18:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:18:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:18:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:18:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:18:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:18:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:18:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:18:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:18:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:18:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:18:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:19:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:19:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:19:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:19:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:19:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:19:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:19:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:19:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:19:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:19:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:19:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:19:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:19:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:20:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:20:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:20:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:20:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:20:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:20:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:20:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:20:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:20:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:20:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:20:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:20:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:20:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:21:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:21:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:21:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:21:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:21:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:21:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:21:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:21:00][21509][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[15 12:21:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:21:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:21:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:21:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:21:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:22:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:22:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:22:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:22:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:22:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:22:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:22:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:22:00][21509][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[15 12:22:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:22:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:22:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:22:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:22:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:23:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:23:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:23:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:23:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:23:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:23:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:23:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:23:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:23:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:23:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:23:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:23:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:23:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:24:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:24:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:24:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:24:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:24:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:24:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:24:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:24:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:24:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:24:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:24:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:24:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:24:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:25:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:25:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:25:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:25:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:25:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:25:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:25:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:25:00][21509][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[15 12:25:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:25:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:25:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:25:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:25:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:26:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:26:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:26:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:26:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:26:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:26:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:26:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:26:00][21509][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[15 12:26:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:26:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:26:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:26:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:26:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:27:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:27:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:27:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:27:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:27:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:27:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:27:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:27:00][21509][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[15 12:27:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:27:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:27:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:27:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:27:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:28:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:28:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:28:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:28:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:28:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:28:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:28:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:28:00][21509][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[15 12:28:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:28:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:28:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:28:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:28:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:29:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:29:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:29:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:29:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:29:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:29:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:29:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:29:00][21509][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[15 12:29:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:29:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:29:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:29:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:29:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:30:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:30:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:30:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:30:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:30:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:30:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:30:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:30:00][21509][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[15 12:30:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:30:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:30:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:30:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:30:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:31:00][21509][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:31:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:31:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:31:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:31:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:31:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:31:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:31:00][21509][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[15 12:31:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:31:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:31:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:31:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:31:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:31:04][21509][ERRO][processing_socket] get packet data failed(-1) +[15 12:31:04][21509][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 12:32:00][21509][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:135, skip_count: 0 bind_count:0 +[15 12:32:00][21509][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:32:00][21509][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:32:00][21509][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:32:00][21509][INFO][info_log] udp recv list by wasid [17/] +[15 12:32:00][21509][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:32:00][21509][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:32:00][21509][INFO][info_log] [0] udp recv(52.00b) 2 0 | 2 0 | 0 0 | 0 +[15 12:32:00][21509][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:32:00][21509][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:32:00][21509][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:32:00][21509][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:32:00][21509][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:14:25][71][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[07 05:14:25][71][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[07 05:14:25][71][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[07 05:14:25][71][INFO]XM_LOG_OPT: 0 [opt_num:0] +[07 05:14:25][71][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[07 05:14:25][71][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[07 05:14:25][71][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[07 05:14:25][71][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[07 05:14:25][71][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[07 05:14:25][71][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[07 05:14:25][71][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[07 05:14:25][71][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[07 05:14:25][71][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[07 05:14:25][71][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[07 05:14:25][71][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[07 05:14:25][71][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[07 05:14:25][71][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[07 05:14:25][71][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[07 05:14:25][71][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[07 05:14:25][71][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[07 05:14:25][71][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[07 05:14:25][71][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[07 05:14:25][71][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[07 05:14:25][71][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[07 05:14:25][71][INFO][read_properties] imx.prop AGENT_MODE:2 +[07 05:14:25][71][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[07 05:14:25][71][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[07 05:14:25][71][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[07 05:14:25][71][INFO][MAIN] hostname[c09fe2504527] +[07 05:14:25][71][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[07 05:14:25][71][INFO][check_double_execution] write pid. 71 +[07 05:14:25][71][INFO][create_new_dg_connection] 10.0.2.15:1314 (0a00020f0522) +[07 05:14:25][71][INFO][create_new_dg_connection] thread create: -1962781120 +[07 05:14:25][71][INFO][add_thread_handle] idx[0],handle[0x8b025640] +[07 05:14:25][71][INFO][add_thread_handle] idx[1],handle[0x8a624640] +[07 05:14:25][71][INFO][create_new_dg_connection] thread create: -1973270976 +[07 05:14:25][71][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[-1962781120] +[07 05:14:25][71][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 05:14:25][71][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 05:14:25][71][INFO]thr_udp_wasconn pthread_create created. +[07 05:14:25][71][INFO][add_thread_handle] idx[2],handle[0x89c23640] +[07 05:14:25][71][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[07 05:14:25][71][INFO][add_thread_handle] idx[3],handle[0x89222640] +[07 05:14:25][71][INFO]thr_udp_wasconn pthread_create created. +[07 05:14:25][71][INFO][add_thread_handle] idx[4],handle[0x83fff640] +[07 05:14:25][71][INFO][CollectStart] log thread id (start_collect2_thread) : -2090867136 created +[07 05:14:25][71][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[07 05:14:25][71][INFO][add_thread_handle] idx[5],handle[0x82bfd640] +[07 05:14:25][71][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[07 05:14:25][71][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[07 05:14:25][71][INFO][collect_initialize] thread_udpsender pthread_create created. +[07 05:15:00][71][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 05:15:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:15:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 05:15:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:15:00][71][INFO][info_log] udp recv list by wasid [] +[07 05:15:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:15:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:15:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:15:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:15:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:15:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:15:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:15:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:15:26][71][ERRO][processing_socket] get packet data failed(-1) +[07 05:15:26][71][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 05:15:31][71][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[-1962781120] +[07 05:15:31][71][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 05:15:31][71][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 05:16:00][71][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 05:16:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:16:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 05:16:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:16:00][71][INFO][info_log] udp recv list by wasid [] +[07 05:16:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:16:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:16:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:16:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:16:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:16:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:16:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:16:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:16:33][71][ERRO][processing_socket] get packet data failed(-1) +[07 05:16:33][71][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 05:16:38][71][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[-1962781120] +[07 05:16:38][71][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 05:16:38][71][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 05:17:00][71][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 05:17:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:17:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 05:17:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:17:00][71][INFO][info_log] udp recv list by wasid [] +[07 05:17:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:17:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:17:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:17:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:17:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:17:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:17:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:17:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:17:39][71][ERRO][processing_socket] get packet data failed(-1) +[07 05:17:39][71][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 05:17:44][71][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[-1962781120] +[07 05:17:44][71][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 05:17:44][71][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 05:18:00][71][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 05:18:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:18:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 05:18:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:18:00][71][INFO][info_log] udp recv list by wasid [] +[07 05:18:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:18:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:18:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:18:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:18:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:18:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:18:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:18:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:19:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:846, skip_count: 0 bind_count:0 +[07 05:19:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:19:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:19:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:19:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:19:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:19:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:19:00][71][INFO][info_log] [0] udp recv(216.00b) 4 0 | 4 0 | 0 0 | 0 +[07 05:19:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:19:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:19:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:19:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:19:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:19:00][71][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[07 05:19:00][71][INFO][info_log] wasid:10, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[07 05:19:00][71][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[4/3] +[07 05:19:00][71][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[07 05:20:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:20:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:20:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:20:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:20:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:20:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:20:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:20:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:20:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:20:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:20:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:20:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:20:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:21:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:21:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:21:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:21:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:21:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:21:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:21:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:21:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:21:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:21:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:21:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:21:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:21:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:22:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:22:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:22:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:22:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:22:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:22:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:22:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:22:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:22:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:22:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:22:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:22:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:22:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:23:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:23:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:23:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:23:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:23:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:23:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:23:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:23:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:23:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:23:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:23:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:23:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:23:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:24:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:24:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:24:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:24:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:24:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:24:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:24:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:24:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:24:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:24:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:24:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:24:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:24:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:25:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:25:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:25:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:25:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:25:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:25:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:25:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:25:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:25:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:25:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:25:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:25:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:25:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 05:26:00][71][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[07 05:26:00][71][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 05:26:00][71][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[07 05:26:00][71][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 05:26:00][71][INFO][info_log] udp recv list by wasid [10/] +[07 05:26:00][71][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:26:00][71][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 05:26:00][71][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:26:00][71][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 05:26:00][71][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 05:26:00][71][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 05:26:00][71][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 05:26:00][71][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:51:40][72][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[07 23:51:40][72][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[07 23:51:40][72][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[07 23:51:40][72][INFO]XM_LOG_OPT: 0 [opt_num:0] +[07 23:51:40][72][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[07 23:51:40][72][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[07 23:51:40][72][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[07 23:51:40][72][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[07 23:51:40][72][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[07 23:51:40][72][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[07 23:51:40][72][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[07 23:51:40][72][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[07 23:51:40][72][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[07 23:51:40][72][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[07 23:51:40][72][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[07 23:51:40][72][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[07 23:51:40][72][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[07 23:51:40][72][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[07 23:51:40][72][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[07 23:51:40][72][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[07 23:51:40][72][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[07 23:51:40][72][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[07 23:51:40][72][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[07 23:51:40][72][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[07 23:51:40][72][INFO][read_properties] imx.prop AGENT_MODE:2 +[07 23:51:40][72][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[07 23:51:40][72][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[07 23:51:40][72][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[07 23:51:40][72][INFO][MAIN] hostname[c09fe2504527] +[07 23:51:40][72][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[07 23:51:40][72][INFO][check_double_execution] write pid. 72 +[07 23:51:40][72][INFO][create_new_dg_connection] 10.0.2.15:1314 (0a00020f0522) +[07 23:51:40][72][INFO][create_new_dg_connection] thread create: 957412928 +[07 23:51:40][72][INFO][add_thread_handle] idx[0],handle[0x3910f640] +[07 23:51:40][72][INFO][add_thread_handle] idx[1],handle[0x3870e640] +[07 23:51:40][72][INFO][create_new_dg_connection] thread create: 946923072 +[07 23:51:40][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:51:40][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:51:40][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:51:40][72][INFO]thr_udp_wasconn pthread_create created. +[07 23:51:40][72][INFO][add_thread_handle] idx[2],handle[0x37d0d640] +[07 23:51:40][72][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[07 23:51:40][72][INFO][add_thread_handle] idx[3],handle[0x3730c640] +[07 23:51:40][72][INFO]thr_udp_wasconn pthread_create created. +[07 23:51:40][72][INFO][add_thread_handle] idx[4],handle[0x3690b640] +[07 23:51:40][72][INFO][CollectStart] log thread id (start_collect2_thread) : 904963648 created +[07 23:51:40][72][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[07 23:51:40][72][INFO][add_thread_handle] idx[5],handle[0x35509640] +[07 23:51:40][72][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[07 23:51:40][72][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[07 23:51:40][72][INFO][collect_initialize] thread_udpsender pthread_create created. +[07 23:52:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:52:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:52:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:52:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:52:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:52:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:52:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:52:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:52:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:52:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:52:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:52:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:52:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:52:41][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:52:41][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:52:46][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:52:46][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:52:46][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:53:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:53:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:53:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:53:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:53:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:53:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:53:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:53:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:53:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:53:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:53:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:53:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:53:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:53:47][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:53:47][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:53:52][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:53:52][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:53:52][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:54:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:54:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:54:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:54:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:54:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:54:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:54:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:54:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:54:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:54:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:54:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:54:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:54:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:54:53][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:54:53][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:54:58][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:54:58][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:54:58][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:55:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:55:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:55:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:55:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:55:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:55:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:55:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:55:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:55:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:55:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:55:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:55:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:55:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:55:59][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:55:59][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:56:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:56:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:56:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:56:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:56:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:56:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:56:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:56:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:56:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:56:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:56:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:56:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:56:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:56:04][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:56:04][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:56:04][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:57:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:57:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:57:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:57:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:57:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:57:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:57:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:57:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:57:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:57:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:57:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:57:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:57:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:57:05][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:57:05][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:57:10][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:57:10][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:57:10][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:58:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:58:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:58:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:58:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:58:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:58:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:58:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:58:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:58:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:58:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:58:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:58:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:58:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:58:12][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:58:12][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:58:17][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:58:17][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:58:17][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[07 23:59:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[07 23:59:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[07 23:59:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[07 23:59:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[07 23:59:00][72][INFO][info_log] udp recv list by wasid [] +[07 23:59:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:59:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[07 23:59:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:59:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[07 23:59:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[07 23:59:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[07 23:59:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[07 23:59:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[07 23:59:18][72][ERRO][processing_socket] get packet data failed(-1) +[07 23:59:18][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[07 23:59:23][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[07 23:59:23][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[07 23:59:23][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:00:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[08 00:00:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:00:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[08 00:00:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:00:00][72][INFO][info_log] udp recv list by wasid [] +[08 00:00:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:00:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:00:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:00:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:00:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:00:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:00:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:00:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:00:24][72][ERRO][processing_socket] get packet data failed(-1) +[08 00:00:24][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[08 00:00:29][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[08 00:00:29][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 00:00:29][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:01:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[08 00:01:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:01:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[08 00:01:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:01:00][72][INFO][info_log] udp recv list by wasid [] +[08 00:01:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:01:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:01:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:01:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:01:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:01:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:01:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:01:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:01:30][72][ERRO][processing_socket] get packet data failed(-1) +[08 00:01:30][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[08 00:01:35][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[08 00:01:35][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 00:01:35][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:02:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[08 00:02:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:02:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[08 00:02:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:02:00][72][INFO][info_log] udp recv list by wasid [] +[08 00:02:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:02:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:02:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:02:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:02:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:02:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:02:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:02:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:02:36][72][ERRO][processing_socket] get packet data failed(-1) +[08 00:02:36][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[08 00:02:41][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[08 00:02:41][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 00:02:41][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:03:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[08 00:03:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:03:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[08 00:03:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:03:00][72][INFO][info_log] udp recv list by wasid [] +[08 00:03:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:03:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:03:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:03:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:03:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:03:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:03:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:03:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:03:42][72][ERRO][processing_socket] get packet data failed(-1) +[08 00:03:42][72][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[08 00:03:47][72][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[957412928] +[08 00:03:47][72][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 00:03:47][72][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:04:00][72][INFO][info_log] tcp send queue count: 0 (10.0.2.15:1314), send size:0, skip_count: 0 bind_count:0 +[08 00:04:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:04:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[08 00:04:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:04:00][72][INFO][info_log] udp recv list by wasid [] +[08 00:04:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:04:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:04:00][72][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:04:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:04:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:04:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:04:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:04:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:05:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:864, skip_count: 0 bind_count:0 +[08 00:05:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:05:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:05:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:05:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:05:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:05:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:05:00][72][INFO][info_log] [0] udp recv(312.00b) 12 0 | 12 0 | 0 0 | 0 +[08 00:05:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:05:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:05:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:05:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:05:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:06:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:06:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:06:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:06:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:06:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:06:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:06:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:06:00][72][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 00:06:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:06:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:06:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:06:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:06:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:07:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1659, skip_count: 0 bind_count:0 +[08 00:07:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:07:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:07:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:07:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:07:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:07:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:07:00][72][INFO][info_log] [0] udp recv(574.00b) 21 0 | 21 0 | 0 0 | 0 +[08 00:07:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:07:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:07:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:07:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:07:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:07:00][72][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[08 00:07:00][72][INFO][info_log] wasid:11, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[08 00:07:00][72][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[1/0] +[08 00:07:00][72][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(1), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[08 00:08:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:08:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:08:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:08:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:08:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:08:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:08:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:08:00][72][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:08:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:08:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:08:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:08:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:08:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:09:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:09:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:09:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:09:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:09:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:09:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:09:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:09:00][72][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:09:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:09:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:09:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:09:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:09:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:10:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:10:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:10:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:10:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:10:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:10:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:10:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:10:00][72][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:10:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:10:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:10:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:10:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:10:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:11:00][72][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:11:00][72][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:11:00][72][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:11:00][72][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:11:00][72][INFO][info_log] udp recv list by wasid [11/] +[08 00:11:00][72][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:11:00][72][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:11:00][72][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:11:00][72][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:11:00][72][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:11:00][72][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:11:00][72][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:11:00][72][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:11:31][159][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:31][159][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:31][159][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:31][159][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:31][159][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:31][159][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:31][159][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:31][159][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:31][159][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:31][159][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:31][159][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:31][159][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:31][159][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:31][159][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:31][159][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:31][159][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:31][159][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:31][159][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:31][159][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:31][159][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:31][159][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:31][159][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:31][159][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:31][159][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:31][159][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:31][159][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:31][159][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:31][159][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:31][159][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:31][159][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:31][159][INFO][MAIN] Duplicate execution. +[08 00:11:34][179][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:34][179][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:34][179][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:34][179][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:34][179][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:34][179][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:34][179][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:34][179][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:34][179][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:34][179][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:34][179][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:34][179][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:34][179][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:34][179][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:34][179][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:34][179][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:34][179][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:34][179][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:34][179][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:34][179][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:34][179][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:34][179][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:34][179][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:34][179][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:34][179][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:34][179][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:34][179][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:34][179][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:34][179][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:34][179][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:34][179][INFO][MAIN] Duplicate execution. +[08 00:11:37][185][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:37][185][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:37][185][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:37][185][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:37][185][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:37][185][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:37][185][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:37][185][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:37][185][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:37][185][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:37][185][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:37][185][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:37][185][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:37][185][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:37][185][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:37][185][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:37][185][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:37][185][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:37][185][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:37][185][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:37][185][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:37][185][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:37][185][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:37][185][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:37][185][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:37][185][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:37][185][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:37][185][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:37][185][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:37][185][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:37][185][INFO][MAIN] Duplicate execution. +[08 00:11:40][191][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:40][191][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:40][191][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:40][191][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:40][191][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:40][191][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:40][191][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:40][191][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:40][191][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:40][191][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:40][191][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:40][191][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:40][191][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:40][191][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:40][191][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:40][191][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:40][191][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:40][191][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:40][191][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:40][191][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:40][191][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:40][191][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:40][191][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:40][191][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:40][191][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:40][191][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:40][191][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:40][191][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:40][191][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:40][191][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:40][191][INFO][MAIN] Duplicate execution. +[08 00:11:43][197][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:43][197][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:43][197][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:43][197][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:43][197][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:43][197][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:43][197][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:43][197][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:43][197][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:43][197][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:43][197][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:43][197][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:43][197][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:43][197][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:43][197][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:43][197][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:43][197][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:43][197][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:43][197][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:43][197][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:43][197][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:43][197][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:43][197][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:43][197][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:43][197][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:43][197][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:43][197][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:43][197][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:43][197][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:43][197][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:43][197][INFO][MAIN] Duplicate execution. +[08 00:11:46][203][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:46][203][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:46][203][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:46][203][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:46][203][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:46][203][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:46][203][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:46][203][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:46][203][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:46][203][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:46][203][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:46][203][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:46][203][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:46][203][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:46][203][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:46][203][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:46][203][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:46][203][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:46][203][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:46][203][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:46][203][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:46][203][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:46][203][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:46][203][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:46][203][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:46][203][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:46][203][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:46][203][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:46][203][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:46][203][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:46][203][INFO][MAIN] Duplicate execution. +[08 00:11:49][209][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:49][209][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:49][209][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:49][209][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:49][209][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:49][209][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:49][209][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:49][209][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:49][209][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:49][209][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:49][209][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:49][209][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:49][209][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:49][209][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:49][209][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:49][209][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:49][209][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:49][209][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:49][209][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:49][209][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:49][209][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:49][209][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:49][209][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:49][209][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:49][209][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:49][209][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:49][209][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:49][209][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:49][209][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:49][209][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:49][209][INFO][MAIN] Duplicate execution. +[08 00:11:52][215][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:52][215][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:52][215][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:52][215][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:52][215][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:52][215][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:52][215][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:52][215][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:52][215][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:52][215][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:52][215][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:52][215][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:52][215][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:52][215][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:52][215][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:52][215][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:52][215][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:52][215][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:52][215][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:52][215][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:52][215][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:52][215][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:52][215][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:52][215][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:52][215][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:52][215][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:52][215][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:52][215][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:52][215][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:52][215][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:52][215][INFO][MAIN] Duplicate execution. +[08 00:11:55][221][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:55][221][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:55][221][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:55][221][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:55][221][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:55][221][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:55][221][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:55][221][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:55][221][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:55][221][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:55][221][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:55][221][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:55][221][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:55][221][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:55][221][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:55][221][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:55][221][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:55][221][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:55][221][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:55][221][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:55][221][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:55][221][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:55][221][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:55][221][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:55][221][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:55][221][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:55][221][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:55][221][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:55][221][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:55][221][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:55][221][INFO][MAIN] Duplicate execution. +[08 00:11:58][227][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:11:58][227][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:11:58][227][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:11:58][227][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:11:58][227][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:11:58][227][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:11:58][227][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:11:58][227][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:11:58][227][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:11:58][227][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:11:58][227][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:58][227][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:11:58][227][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:11:58][227][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:11:58][227][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:11:58][227][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:11:58][227][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:11:58][227][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:11:58][227][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:11:58][227][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:11:58][227][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:11:58][227][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:11:58][227][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:11:58][227][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:11:58][227][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:11:58][227][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:11:58][227][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:11:58][227][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:11:58][227][INFO][MAIN] hostname[c09fe2504527] +[08 00:11:58][227][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:11:58][227][INFO][MAIN] Duplicate execution. +[08 00:12:01][233][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:12:01][233][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:12:01][233][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:12:01][233][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:12:01][233][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:12:01][233][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:12:01][233][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:12:01][233][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:12:01][233][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:12:01][233][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:12:01][233][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:01][233][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:01][233][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:12:01][233][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:12:01][233][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:12:01][233][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:12:01][233][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:12:01][233][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:12:01][233][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:12:01][233][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:12:01][233][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:12:01][233][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:12:01][233][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:12:01][233][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:12:01][233][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:12:01][233][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:12:01][233][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:12:01][233][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:12:01][233][INFO][MAIN] hostname[c09fe2504527] +[08 00:12:01][233][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:12:01][233][INFO][MAIN] Duplicate execution. +[08 00:12:04][239][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:12:04][239][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:12:04][239][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:12:04][239][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:12:04][239][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:12:04][239][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:12:04][239][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:12:04][239][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:12:04][239][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:12:04][239][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:12:04][239][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:04][239][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:04][239][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:12:04][239][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:12:04][239][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:12:04][239][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:12:04][239][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:12:04][239][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:12:04][239][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:12:04][239][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:12:04][239][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:12:04][239][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:12:04][239][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:12:04][239][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:12:04][239][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:12:04][239][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:12:04][239][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:12:04][239][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:12:04][239][INFO][MAIN] hostname[c09fe2504527] +[08 00:12:04][239][ERRO][MFJ-OSM-00020080] Already exists. pid:72, ProcessName:imxtxn +[08 00:12:04][239][INFO][MAIN] Duplicate execution. +[08 00:12:37][81][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 00:12:37][81][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 00:12:37][81][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 00:12:37][81][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 00:12:37][81][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 00:12:37][81][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 00:12:37][81][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 00:12:37][81][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 00:12:37][81][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 00:12:37][81][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 00:12:37][81][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:37][81][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 00:12:37][81][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 00:12:37][81][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 00:12:37][81][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 00:12:37][81][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 00:12:37][81][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 00:12:37][81][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 00:12:37][81][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 00:12:37][81][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 00:12:37][81][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 00:12:37][81][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 00:12:37][81][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 00:12:37][81][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 00:12:37][81][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 00:12:37][81][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 00:12:37][81][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 00:12:37][81][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 00:12:37][81][INFO][MAIN] hostname[c09fe2504527] +[08 00:12:37][81][INFO][check_double_execution] write pid. 81 +[08 00:12:37][81][INFO][create_new_dg_connection] 10.0.2.15:1314 (0a00020f0522) +[08 00:12:37][81][INFO][create_new_dg_connection] thread create: -1428691392 +[08 00:12:37][81][INFO][add_thread_handle] idx[0],handle[0xaad7e640] +[08 00:12:37][81][INFO][add_thread_handle] idx[1],handle[0xaa37d640] +[08 00:12:37][81][INFO][create_new_dg_connection] thread create: -1439181248 +[08 00:12:37][81][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[3],thread_id[-1428691392] +[08 00:12:37][81][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 00:12:37][81][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 00:12:37][81][INFO]thr_udp_wasconn pthread_create created. +[08 00:12:37][81][INFO][add_thread_handle] idx[2],handle[0xa997c640] +[08 00:12:37][81][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[08 00:12:37][81][INFO][add_thread_handle] idx[3],handle[0xa8f7b640] +[08 00:12:37][81][INFO]thr_udp_wasconn pthread_create created. +[08 00:12:37][81][INFO][add_thread_handle] idx[4],handle[0xa3fff640] +[08 00:12:37][81][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[08 00:12:37][81][INFO][add_thread_handle] idx[5],handle[0xa35fe640] +[08 00:12:37][81][INFO][CollectStart] log thread id (start_collect2_thread) : -1564486080 created +[08 00:12:37][81][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[08 00:12:37][81][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[08 00:12:37][81][INFO][collect_initialize] thread_udpsender pthread_create created. +[08 00:13:00][81][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:540, skip_count: 0 bind_count:0 +[08 00:13:00][81][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:13:00][81][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:13:00][81][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:13:00][81][INFO][info_log] udp recv list by wasid [11/] +[08 00:13:00][81][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:13:00][81][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:13:00][81][INFO][info_log] [0] udp recv(182.00b) 7 0 | 7 0 | 0 0 | 0 +[08 00:13:00][81][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:13:00][81][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:13:00][81][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:13:00][81][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:13:00][81][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:14:00][81][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:14:00][81][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:14:00][81][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:14:00][81][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:14:00][81][INFO][info_log] udp recv list by wasid [11/] +[08 00:14:00][81][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:14:00][81][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:14:00][81][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:14:00][81][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:14:00][81][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:14:00][81][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:14:00][81][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:14:00][81][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 00:15:00][81][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 00:15:00][81][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 00:15:00][81][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 00:15:00][81][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 00:15:00][81][INFO][info_log] udp recv list by wasid [11/] +[08 00:15:00][81][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:15:00][81][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 00:15:00][81][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 00:15:00][81][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 00:15:00][81][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 00:15:00][81][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 00:15:00][81][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 00:15:00][81][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:15:34][80][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[08 09:15:34][80][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[08 09:15:34][80][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[08 09:15:34][80][INFO]XM_LOG_OPT: 0 [opt_num:0] +[08 09:15:34][80][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[08 09:15:34][80][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[08 09:15:34][80][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[08 09:15:34][80][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[08 09:15:34][80][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[08 09:15:34][80][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[08 09:15:34][80][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 09:15:34][80][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[08 09:15:34][80][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[08 09:15:34][80][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[08 09:15:34][80][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[08 09:15:34][80][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[08 09:15:34][80][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[08 09:15:34][80][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[08 09:15:34][80][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[08 09:15:34][80][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[08 09:15:34][80][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[08 09:15:34][80][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[08 09:15:34][80][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[08 09:15:34][80][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[08 09:15:34][80][INFO][read_properties] imx.prop AGENT_MODE:2 +[08 09:15:34][80][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[08 09:15:34][80][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[08 09:15:34][80][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[08 09:15:34][80][INFO][MAIN] hostname[c09fe2504527] +[08 09:15:34][80][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[08 09:15:34][80][INFO][check_double_execution] write pid. 80 +[08 09:15:34][80][INFO][create_new_dg_connection] 10.0.2.15:1314 (0a00020f0522) +[08 09:15:34][80][INFO][create_new_dg_connection] thread create: -73034176 +[08 09:15:34][80][INFO][add_thread_handle] idx[0],handle[0xfba59640] +[08 09:15:34][80][INFO][add_thread_handle] idx[1],handle[0xfb058640] +[08 09:15:34][80][INFO][create_new_dg_connection] thread create: -83524032 +[08 09:15:34][80][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[4],thread_id[-73034176] +[08 09:15:34][80][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 09:15:34][80][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 09:15:34][80][INFO]thr_udp_wasconn pthread_create created. +[08 09:15:34][80][INFO][add_thread_handle] idx[2],handle[0xfa657640] +[08 09:15:34][80][INFO]thr_udp_wasconn pthread_create created. +[08 09:15:34][80][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[08 09:15:34][80][INFO][add_thread_handle] idx[3],handle[0xf9255640] +[08 09:15:34][80][INFO][add_thread_handle] idx[3],handle[0xf9c56640] +[08 09:15:34][80][INFO][CollectStart] log thread id (start_collect2_thread) : -201329088 created +[08 09:15:34][80][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[08 09:15:34][80][INFO][add_thread_handle] idx[5],handle[0xf35fe640] +[08 09:15:34][80][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[08 09:15:34][80][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[08 09:15:34][80][INFO][collect_initialize] thread_udpsender pthread_create created. +[08 09:16:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:621, skip_count: 0 bind_count:0 +[08 09:16:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:16:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:16:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:16:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:16:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:16:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:16:00][80][INFO][info_log] [0] udp recv(208.00b) 8 0 | 8 0 | 0 0 | 0 +[08 09:16:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:16:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:16:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:16:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:16:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:17:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1659, skip_count: 0 bind_count:0 +[08 09:17:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:17:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:17:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:17:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:17:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:17:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:17:00][80][INFO][info_log] [0] udp recv(736.00b) 24 0 | 24 0 | 0 0 | 0 +[08 09:17:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:17:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:17:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:17:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:17:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:17:00][80][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[08 09:17:00][80][INFO][info_log] wasid:11, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[08 09:17:00][80][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[4/4] +[08 09:17:00][80][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[08 09:18:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:18:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:18:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:18:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:18:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:18:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:18:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:18:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:18:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:18:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:18:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:18:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:18:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:19:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:19:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:19:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:19:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:19:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:19:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:19:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:19:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:19:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:19:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:19:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:19:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:19:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:20:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:20:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:20:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:20:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:20:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:20:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:20:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:20:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:20:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:20:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:20:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:20:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:20:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:21:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:21:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:21:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:21:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:21:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:21:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:21:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:21:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:21:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:21:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:21:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:21:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:21:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:22:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:22:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:22:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:22:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:22:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:22:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:22:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:22:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:22:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:22:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:22:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:22:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:22:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:23:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:23:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:23:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:23:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:23:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:23:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:23:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:23:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:23:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:23:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:23:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:23:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:23:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:24:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:24:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:24:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:24:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:24:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:24:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:24:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:24:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:24:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:24:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:24:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:24:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:24:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:25:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:25:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:25:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:25:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:25:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:25:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:25:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:25:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:25:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:25:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:25:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:25:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:25:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:26:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:26:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:26:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:26:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:26:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:26:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:26:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:26:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:26:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:26:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:26:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:26:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:26:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:27:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:27:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:27:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:27:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:27:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:27:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:27:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:27:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:27:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:27:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:27:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:27:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:27:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:28:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:28:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:28:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:28:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:28:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:28:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:28:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:28:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:28:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:28:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:28:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:28:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:28:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:29:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:29:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:29:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:29:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:29:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:29:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:29:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:29:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:29:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:29:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:29:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:29:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:29:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:30:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:30:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:30:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:30:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:30:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:30:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:30:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:30:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:30:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:30:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:30:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:30:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:30:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:31:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:31:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:31:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:31:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:31:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:31:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:31:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:31:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:31:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:31:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:31:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:31:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:31:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:32:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:32:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:32:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:32:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:32:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:32:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:32:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:32:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:32:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:32:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:32:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:32:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:32:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:33:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:33:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:33:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:33:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:33:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:33:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:33:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:33:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:33:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:33:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:33:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:33:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:33:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:34:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:34:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:34:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:34:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:34:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:34:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:34:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:34:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:34:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:34:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:34:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:34:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:34:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:35:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:35:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:35:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:35:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:35:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:35:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[08 09:35:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:35:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[08 09:35:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:35:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:35:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:35:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:35:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:36:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:36:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:36:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:36:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:36:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:36:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:36:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:36:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[08 09:36:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:36:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:36:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:36:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:36:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:37:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:37:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:37:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:37:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:37:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:37:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:37:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:37:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:37:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:37:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:37:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:37:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:37:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:38:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:38:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:38:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:38:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:38:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:38:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:38:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:38:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:38:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:38:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:38:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:38:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:38:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:39:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:39:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:39:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:39:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:39:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:39:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:39:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:39:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[08 09:39:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:39:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:39:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:39:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:39:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:40:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:40:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:40:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:40:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:40:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:40:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:40:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:40:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 09:40:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:40:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:40:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:40:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:40:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:41:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:41:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:41:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:41:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:41:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:41:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:41:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:41:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[08 09:41:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:41:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:41:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:41:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:41:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:42:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:42:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:42:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:42:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:42:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:42:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:42:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:42:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 09:42:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:42:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:42:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:42:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:42:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:43:05][80][ERRO][MFJ-IMX-00040080] Detected 'thread_tcpsender' hang. 1683506585 - 1683506573 > 3000 +[08 09:44:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:2916, skip_count: 0 bind_count:0 +[08 09:44:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:44:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:44:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:44:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:44:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[08 09:44:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:44:00][80][INFO][info_log] [0] udp recv(988.00b) 38 0 | 37 0 | 0 0 | 0 +[08 09:44:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:44:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:44:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:44:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:44:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:45:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:45:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:45:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:45:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:45:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:45:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:45:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:45:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[08 09:45:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:45:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:45:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:45:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:45:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:46:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:46:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:46:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:46:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:46:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:46:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:46:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:46:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[08 09:46:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:46:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:46:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:46:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:46:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:47:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:47:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:47:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:47:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:47:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:47:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:47:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:47:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 09:47:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:47:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:47:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:47:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:47:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:48:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:48:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:48:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:48:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:48:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:48:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:48:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:48:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:48:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:48:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:48:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:48:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:48:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:49:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:49:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:49:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:49:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:49:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:49:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[08 09:49:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:49:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[08 09:49:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:49:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:49:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:49:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:49:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:50:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:50:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:50:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:50:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:50:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:50:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:50:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:50:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 21 0 | 0 0 | 0 +[08 09:50:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:50:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:50:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:50:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:50:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:51:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:51:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:51:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:51:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:51:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:51:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:51:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:51:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 09:51:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:51:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:51:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:51:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:51:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:52:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:52:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:52:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:52:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:52:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:52:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:52:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:52:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:52:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:52:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:52:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:52:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:52:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:53:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:53:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:53:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:53:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:53:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:53:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:53:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:53:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:53:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:53:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:53:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:53:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:53:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:54:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:54:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:54:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:54:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:54:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:54:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:54:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:54:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:54:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:54:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:54:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:54:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:54:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:55:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:55:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:55:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:55:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:55:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:55:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[08 09:55:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:55:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[08 09:55:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:55:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:55:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:55:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:55:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:56:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:56:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:56:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:56:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:56:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:56:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:56:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:56:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 21 0 | 0 0 | 0 +[08 09:56:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:56:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:56:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:56:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:56:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:57:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:57:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:57:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:57:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:57:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:57:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:57:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:57:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 09:57:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:57:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:57:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:57:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:57:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:58:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:58:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:58:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:58:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:58:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:58:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:58:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:58:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:58:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:58:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:58:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:58:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:58:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 09:59:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 09:59:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 09:59:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 09:59:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 09:59:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 09:59:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:59:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 09:59:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 09:59:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 09:59:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 09:59:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 09:59:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 09:59:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:00:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:00:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:00:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:00:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:00:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:00:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[08 10:00:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:00:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[08 10:00:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:00:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:00:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:00:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:00:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:01:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:01:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:01:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:01:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:01:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:01:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:01:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:01:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 21 0 | 0 0 | 0 +[08 10:01:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:01:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:01:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:01:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:01:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:02:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:02:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:02:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:02:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:02:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:02:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:02:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:02:00][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 10:02:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:02:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:02:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:02:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:02:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:03:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:03:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:03:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:03:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:03:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:03:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:03:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:03:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:03:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:03:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:03:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:03:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:03:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:04:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:04:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:04:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:04:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:04:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:04:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:04:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:04:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:04:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:04:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:04:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:04:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:04:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:05:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:05:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:05:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:05:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:05:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:05:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:05:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:05:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:05:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:05:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:05:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:05:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:05:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:06:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:06:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:06:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:06:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:06:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:06:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:06:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:06:00][80][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[08 10:06:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:06:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:06:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:06:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:06:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:06:59][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:06:59][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:06:59][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:06:59][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:06:59][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:06:59][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:06:59][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:06:59][80][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[08 10:06:59][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:06:59][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:06:59][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:06:59][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:06:59][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:08:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:08:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:08:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:08:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:08:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:08:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:08:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:08:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:08:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:08:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:08:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:08:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:08:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:09:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:09:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:09:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:09:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:09:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:09:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:09:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:09:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:09:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:09:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:09:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:09:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:09:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 10:10:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1620, skip_count: 0 bind_count:0 +[08 10:10:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 10:10:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 10:10:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 10:10:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 10:10:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:10:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 10:10:00][80][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[08 10:10:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 10:10:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 10:10:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 10:10:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 10:10:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[08 15:34:23][80][ERRO][MFJ-IMX-00040080] Detected 'thread_tcpsender' hang. 1683527663 - 1683508211 > 3000 +[08 15:34:23][80][INFO][thread_tcpconn] detected thr_send_queue hang. sock# 4 connection close 1683527663 1683508211 3000 +[08 15:34:28][80][INFO][thread_tcpconn] client connected. ip[10.0.2.15],sock[4],thread_id[-73034176] +[08 15:34:28][80][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[08 15:34:28][80][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[08 15:35:00][80][INFO][info_log] tcp send queue count: 1 (10.0.2.15:1314), send size:1161, skip_count: 0 bind_count:0 +[08 15:35:00][80][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[08 15:35:00][80][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[08 15:35:00][80][INFO][info_log] udp recv count by ports 0:0 1:0 +[08 15:35:00][80][INFO][info_log] udp recv list by wasid [11/] +[08 15:35:00][80][INFO][info_log] [0] udp(8404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 15:35:00][80][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[08 15:35:00][80][INFO][info_log] [0] udp recv(442.00b) 17 0 | 17 0 | 0 0 | 0 +[08 15:35:00][80][INFO][info_log] [1] udp(8504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[08 15:35:00][80][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[08 15:35:00][80][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[08 15:35:00][80][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[08 15:35:00][80][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 10:18:25][74][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:25][74][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:25][74][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:25][74][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:25][74][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:25][74][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:25][74][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:25][74][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:25][74][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:25][74][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:25][74][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:25][74][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:25][74][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:25][74][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:25][74][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:25][74][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:25][74][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:25][74][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:25][74][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:25][74][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:25][74][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:25][74][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:25][74][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:25][74][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:25][74][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:25][74][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:25][74][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:25][74][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:25][74][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:25][74][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:25][74][INFO][MAIN] Duplicate execution. +[28 10:18:29][80][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:29][80][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:29][80][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:29][80][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:29][80][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:29][80][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:29][80][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:29][80][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:29][80][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:29][80][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:29][80][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:29][80][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:29][80][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:29][80][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:29][80][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:29][80][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:29][80][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:29][80][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:29][80][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:29][80][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:29][80][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:29][80][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:29][80][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:29][80][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:29][80][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:29][80][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:29][80][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:29][80][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:29][80][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:29][80][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:29][80][INFO][MAIN] Duplicate execution. +[28 10:18:34][86][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:34][86][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:34][86][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:34][86][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:34][86][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:34][86][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:34][86][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:34][86][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:34][86][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:34][86][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:34][86][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:34][86][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:34][86][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:34][86][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:34][86][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:34][86][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:34][86][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:34][86][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:34][86][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:34][86][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:34][86][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:34][86][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:34][86][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:34][86][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:34][86][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:34][86][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:34][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:34][86][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:34][86][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:34][86][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:34][86][INFO][MAIN] Duplicate execution. +[28 10:18:38][92][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:38][92][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:38][92][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:38][92][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:38][92][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:38][92][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:38][92][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:38][92][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:38][92][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:38][92][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:38][92][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:38][92][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:38][92][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:38][92][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:38][92][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:38][92][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:38][92][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:38][92][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:38][92][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:38][92][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:38][92][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:38][92][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:38][92][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:38][92][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:38][92][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:38][92][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:38][92][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:38][92][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:38][92][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:38][92][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:38][92][INFO][MAIN] Duplicate execution. +[28 10:18:48][98][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:48][98][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:48][98][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:48][98][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:48][98][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:48][98][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:48][98][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:48][98][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:48][98][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:48][98][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:48][98][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:48][98][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:48][98][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:48][98][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:48][98][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:48][98][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:48][98][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:48][98][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:48][98][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:48][98][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:48][98][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:48][98][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:48][98][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:48][98][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:48][98][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:48][98][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:48][98][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:48][98][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:48][98][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:48][98][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:48][98][INFO][MAIN] Duplicate execution. +[28 10:18:48][104][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:48][104][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:48][104][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:48][104][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:48][104][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:48][104][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:48][104][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:48][104][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:48][104][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:48][104][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:48][104][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:48][104][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:48][104][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:48][104][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:48][104][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:48][104][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:48][104][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:48][104][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:48][104][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:48][104][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:48][104][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:48][104][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:48][104][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:48][104][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:48][104][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:48][104][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:48][104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:48][104][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:48][104][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:48][104][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:48][104][INFO][MAIN] Duplicate execution. +[28 10:18:56][110][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:56][110][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:56][110][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:56][110][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:56][110][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:56][110][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:56][110][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:56][110][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:56][110][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:56][110][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:56][110][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:56][110][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:56][110][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:56][110][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:56][110][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:56][110][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:56][110][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:56][110][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:56][110][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:56][110][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:56][110][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:56][110][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:56][110][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:56][110][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:56][110][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:56][110][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:56][110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:56][110][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:56][110][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:56][110][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:56][110][INFO][MAIN] Duplicate execution. +[28 10:18:56][116][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:18:56][116][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:18:56][116][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:18:56][116][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:18:56][116][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:18:56][116][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:18:56][116][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:18:56][116][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:18:56][116][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:18:56][116][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:18:56][116][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:56][116][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:18:56][116][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:18:56][116][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:18:56][116][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:18:56][116][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:18:56][116][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:18:56][116][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:18:56][116][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:18:56][116][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:18:56][116][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:18:56][116][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:18:56][116][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:18:56][116][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:18:56][116][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:18:56][116][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:18:56][116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:18:56][116][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:18:56][116][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:18:56][116][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:18:56][116][INFO][MAIN] Duplicate execution. +[28 10:19:00][122][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:00][122][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:00][122][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:00][122][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:00][122][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:00][122][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:00][122][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:00][122][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:00][122][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:00][122][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:00][122][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:00][122][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:00][122][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:00][122][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:00][122][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:00][122][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:00][122][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:00][122][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:00][122][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:00][122][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:00][122][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:00][122][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:00][122][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:00][122][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:00][122][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:00][122][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:00][122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:00][122][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:00][122][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:00][122][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:00][122][INFO][MAIN] Duplicate execution. +[28 10:19:01][128][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:01][128][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:01][128][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:01][128][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:01][128][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:01][128][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:01][128][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:01][128][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:01][128][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:01][128][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:01][128][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:01][128][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:01][128][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:01][128][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:01][128][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:01][128][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:01][128][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:01][128][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:01][128][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:01][128][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:01][128][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:01][128][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:01][128][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:01][128][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:01][128][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:01][128][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:01][128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:01][128][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:01][128][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:01][128][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:01][128][INFO][MAIN] Duplicate execution. +[28 10:19:02][140][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:02][140][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:02][140][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:02][140][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:02][140][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:02][140][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:02][140][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:02][140][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:02][140][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:02][140][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:02][140][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:02][140][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:02][140][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:02][140][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:02][140][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:02][140][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:02][140][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:02][140][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:02][140][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:02][140][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:02][140][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:02][140][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:02][140][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:02][140][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:02][140][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:02][140][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:02][140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:02][140][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:02][140][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:02][140][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:02][140][INFO][MAIN] Duplicate execution. +[28 10:19:03][134][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:03][134][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:03][134][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:03][134][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:03][134][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:03][134][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:03][134][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:03][134][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:03][134][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:03][134][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:03][134][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:03][134][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:03][134][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:03][134][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:03][134][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:03][134][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:03][134][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:03][134][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:03][134][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:03][134][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:03][134][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:03][134][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:03][134][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:03][134][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:03][134][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:03][134][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:03][134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:03][134][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:03][134][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:03][134][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:03][134][INFO][MAIN] Duplicate execution. +[28 10:19:04][146][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:04][146][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:04][146][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:04][146][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:04][146][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:04][146][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:04][146][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:04][146][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:04][146][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:04][146][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:04][146][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:04][146][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:04][146][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:04][146][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:04][146][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:04][146][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:04][146][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:04][146][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:04][146][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:04][146][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:04][146][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:04][146][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:04][146][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:04][146][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:04][146][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:04][146][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:04][146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:04][146][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:04][146][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:04][146][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:04][146][INFO][MAIN] Duplicate execution. +[28 10:19:05][152][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:05][152][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:05][152][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:05][152][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:05][152][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:05][152][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:05][152][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:05][152][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:05][152][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:05][152][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:05][152][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:05][152][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:05][152][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:05][152][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:05][152][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:05][152][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:05][152][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:05][152][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:05][152][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:05][152][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:05][152][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:05][152][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:05][152][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:05][152][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:05][152][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:05][152][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:05][152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:05][152][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:05][152][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:05][152][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:05][152][INFO][MAIN] Duplicate execution. +[28 10:19:07][158][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:07][158][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:07][158][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:07][158][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:07][158][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:07][158][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:07][158][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:07][158][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:07][158][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:07][158][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:07][158][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:07][158][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:07][158][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:07][158][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:07][158][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:07][158][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:07][158][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:07][158][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:07][158][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:07][158][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:07][158][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:07][158][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:07][158][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:07][158][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:07][158][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:07][158][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:07][158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:07][158][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:07][158][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:07][158][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:07][158][INFO][MAIN] Duplicate execution. +[28 10:19:10][164][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:10][164][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:10][164][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:10][164][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:10][164][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:10][164][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:10][164][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:10][164][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:10][164][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:10][164][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:10][164][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:10][164][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:10][164][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:10][164][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:10][164][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:10][164][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:10][164][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:10][164][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:10][164][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:10][164][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:10][164][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:10][164][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:10][164][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:10][164][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:10][164][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:10][164][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:10][164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:10][164][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:10][164][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:10][164][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:10][164][INFO][MAIN] Duplicate execution. +[28 10:19:13][170][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:13][170][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:13][170][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:13][170][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:13][170][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:13][170][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:13][170][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:13][170][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:13][170][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:13][170][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:13][170][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:13][170][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:13][170][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:13][170][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:13][170][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:13][170][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:13][170][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:13][170][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:13][170][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:13][170][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:13][170][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:13][170][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:13][170][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:13][170][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:13][170][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:13][170][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:13][170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:13][170][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:13][170][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:13][170][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:13][170][INFO][MAIN] Duplicate execution. +[28 10:19:16][176][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:16][176][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:16][176][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:16][176][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:16][176][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:16][176][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:16][176][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:16][176][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:16][176][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:16][176][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:16][176][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:16][176][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:16][176][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:16][176][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:16][176][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:16][176][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:16][176][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:16][176][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:16][176][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:16][176][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:16][176][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:16][176][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:16][176][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:16][176][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:16][176][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:16][176][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:16][176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:16][176][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:16][176][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:16][176][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:16][176][INFO][MAIN] Duplicate execution. +[28 10:19:19][182][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:19][182][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:19][182][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:19][182][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:19][182][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:19][182][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:19][182][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:19][182][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:19][182][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:19][182][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:19][182][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:19][182][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:19][182][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:19][182][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:19][182][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:19][182][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:19][182][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:19][182][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:19][182][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:19][182][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:19][182][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:19][182][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:19][182][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:19][182][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:19][182][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:19][182][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:19][182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:19][182][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:19][182][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:19][182][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:19][182][INFO][MAIN] Duplicate execution. +[28 10:19:22][188][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:22][188][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:22][188][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:22][188][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:22][188][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:22][188][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:22][188][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:22][188][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:22][188][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:22][188][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:22][188][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:22][188][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:22][188][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:22][188][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:22][188][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:22][188][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:22][188][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:22][188][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:22][188][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:22][188][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:22][188][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:22][188][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:22][188][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:22][188][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:22][188][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:22][188][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:22][188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:22][188][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:22][188][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:22][188][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:22][188][INFO][MAIN] Duplicate execution. +[28 10:19:25][194][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:25][194][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:25][194][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:25][194][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:25][194][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:25][194][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:25][194][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:25][194][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:25][194][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:25][194][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:25][194][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:25][194][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:25][194][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:25][194][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:25][194][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:25][194][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:25][194][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:25][194][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:25][194][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:25][194][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:25][194][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:25][194][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:25][194][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:25][194][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:25][194][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:25][194][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:25][194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:25][194][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:25][194][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:25][194][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:25][194][INFO][MAIN] Duplicate execution. +[28 10:19:28][200][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:28][200][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:28][200][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:28][200][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:28][200][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:28][200][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:28][200][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:28][200][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:28][200][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:28][200][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:28][200][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:28][200][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:28][200][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:28][200][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:28][200][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:28][200][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:28][200][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:28][200][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:28][200][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:28][200][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:28][200][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:28][200][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:28][200][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:28][200][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:28][200][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:28][200][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:28][200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:28][200][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:28][200][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:28][200][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:28][200][INFO][MAIN] Duplicate execution. +[28 10:19:31][206][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:31][206][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:31][206][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:31][206][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:31][206][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:31][206][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:31][206][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:31][206][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:31][206][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:31][206][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:31][206][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:31][206][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:31][206][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:31][206][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:31][206][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:31][206][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:31][206][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:31][206][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:31][206][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:31][206][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:31][206][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:31][206][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:31][206][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:31][206][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:31][206][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:31][206][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:31][206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:31][206][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:31][206][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:31][206][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:31][206][INFO][MAIN] Duplicate execution. +[28 10:19:34][212][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:34][212][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:34][212][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:34][212][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:34][212][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:34][212][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:34][212][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:34][212][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:34][212][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:34][212][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:34][212][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:34][212][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:34][212][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:34][212][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:34][212][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:34][212][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:34][212][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:34][212][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:34][212][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:34][212][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:34][212][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:34][212][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:34][212][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:34][212][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:34][212][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:34][212][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:34][212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:34][212][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:34][212][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:34][212][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:34][212][INFO][MAIN] Duplicate execution. +[28 10:19:37][218][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:37][218][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:37][218][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:37][218][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:37][218][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:37][218][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:37][218][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:37][218][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:37][218][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:37][218][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:37][218][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:37][218][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:37][218][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:37][218][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:37][218][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:37][218][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:37][218][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:37][218][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:37][218][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:37][218][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:37][218][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:37][218][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:37][218][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:37][218][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:37][218][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:37][218][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:37][218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:37][218][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:37][218][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:37][218][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:37][218][INFO][MAIN] Duplicate execution. +[28 10:19:40][224][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:40][224][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:40][224][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:40][224][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:40][224][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:40][224][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:40][224][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:40][224][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:40][224][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:40][224][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:40][224][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:40][224][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:40][224][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:40][224][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:40][224][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:40][224][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:40][224][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:40][224][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:40][224][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:40][224][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:40][224][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:40][224][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:40][224][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:40][224][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:40][224][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:40][224][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:40][224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:40][224][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:40][224][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:40][224][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:40][224][INFO][MAIN] Duplicate execution. +[28 10:19:43][230][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:43][230][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:43][230][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:43][230][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:43][230][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:43][230][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:43][230][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:43][230][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:43][230][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:43][230][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:43][230][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:43][230][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:43][230][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:43][230][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:43][230][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:43][230][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:43][230][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:43][230][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:43][230][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:43][230][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:43][230][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:43][230][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:43][230][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:43][230][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:43][230][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:43][230][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:43][230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:43][230][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:43][230][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:43][230][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:43][230][INFO][MAIN] Duplicate execution. +[28 10:19:46][236][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:46][236][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:46][236][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:46][236][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:46][236][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:46][236][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:46][236][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:46][236][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:46][236][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:46][236][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:46][236][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:46][236][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:46][236][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:46][236][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:46][236][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:46][236][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:46][236][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:46][236][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:46][236][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:46][236][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:46][236][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:46][236][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:46][236][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:46][236][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:46][236][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:46][236][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:46][236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:46][236][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:46][236][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:46][236][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:46][236][INFO][MAIN] Duplicate execution. +[28 10:19:49][242][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:49][242][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:49][242][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:49][242][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:49][242][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:49][242][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:49][242][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:49][242][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:49][242][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:49][242][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:49][242][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:49][242][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:49][242][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:49][242][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:49][242][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:49][242][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:49][242][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:49][242][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:49][242][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:49][242][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:49][242][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:49][242][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:49][242][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:49][242][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:49][242][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:49][242][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:49][242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:49][242][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:49][242][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:49][242][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:49][242][INFO][MAIN] Duplicate execution. +[28 10:19:52][248][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:52][248][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:52][248][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:52][248][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:52][248][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:52][248][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:52][248][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:52][248][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:52][248][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:52][248][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:52][248][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:52][248][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:52][248][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:52][248][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:52][248][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:52][248][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:52][248][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:52][248][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:52][248][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:52][248][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:52][248][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:52][248][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:52][248][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:52][248][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:52][248][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:52][248][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:52][248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:52][248][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:52][248][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:52][248][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:52][248][INFO][MAIN] Duplicate execution. +[28 10:19:55][254][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:55][254][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:55][254][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:55][254][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:55][254][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:55][254][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:55][254][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:55][254][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:55][254][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:55][254][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:55][254][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:55][254][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:55][254][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:55][254][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:55][254][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:55][254][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:55][254][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:55][254][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:55][254][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:55][254][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:55][254][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:55][254][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:55][254][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:55][254][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:55][254][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:55][254][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:55][254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:55][254][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:55][254][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:55][254][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:55][254][INFO][MAIN] Duplicate execution. +[28 10:19:58][260][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:19:58][260][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:19:58][260][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:19:58][260][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:19:58][260][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:19:58][260][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:19:58][260][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:19:58][260][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:19:58][260][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:19:58][260][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:19:58][260][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:58][260][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:19:58][260][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:19:58][260][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:19:58][260][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:19:58][260][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:19:58][260][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:19:58][260][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:19:58][260][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:19:58][260][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:19:58][260][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:19:58][260][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:19:58][260][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:19:58][260][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:19:58][260][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:19:58][260][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:19:58][260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:19:58][260][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:19:58][260][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:19:58][260][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:19:58][260][INFO][MAIN] Duplicate execution. +[28 10:20:01][266][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:01][266][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:01][266][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:01][266][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:01][266][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:01][266][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:01][266][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:01][266][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:01][266][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:01][266][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:01][266][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:01][266][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:01][266][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:01][266][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:01][266][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:01][266][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:01][266][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:01][266][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:01][266][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:01][266][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:01][266][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:01][266][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:01][266][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:01][266][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:01][266][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:01][266][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:01][266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:01][266][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:01][266][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:01][266][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:01][266][INFO][MAIN] Duplicate execution. +[28 10:20:04][272][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:04][272][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:04][272][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:04][272][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:04][272][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:04][272][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:04][272][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:04][272][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:04][272][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:04][272][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:04][272][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:04][272][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:04][272][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:04][272][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:04][272][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:04][272][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:04][272][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:04][272][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:04][272][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:04][272][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:04][272][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:04][272][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:04][272][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:04][272][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:04][272][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:04][272][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:04][272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:04][272][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:04][272][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:04][272][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:04][272][INFO][MAIN] Duplicate execution. +[28 10:20:07][278][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:07][278][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:07][278][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:07][278][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:07][278][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:07][278][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:07][278][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:07][278][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:07][278][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:07][278][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:07][278][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:07][278][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:07][278][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:07][278][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:07][278][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:07][278][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:07][278][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:07][278][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:07][278][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:07][278][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:07][278][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:07][278][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:07][278][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:07][278][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:07][278][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:07][278][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:07][278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:07][278][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:07][278][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:07][278][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:07][278][INFO][MAIN] Duplicate execution. +[28 10:20:10][284][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:10][284][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:10][284][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:10][284][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:10][284][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:10][284][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:10][284][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:10][284][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:10][284][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:10][284][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:10][284][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:10][284][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:10][284][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:10][284][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:10][284][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:10][284][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:10][284][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:10][284][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:10][284][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:10][284][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:10][284][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:10][284][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:10][284][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:10][284][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:10][284][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:10][284][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:10][284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:10][284][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:10][284][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:10][284][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:10][284][INFO][MAIN] Duplicate execution. +[28 10:20:13][290][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:13][290][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:13][290][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:13][290][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:13][290][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:13][290][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:13][290][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:13][290][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:13][290][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:13][290][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:13][290][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:13][290][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:13][290][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:13][290][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:13][290][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:13][290][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:13][290][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:13][290][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:13][290][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:13][290][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:13][290][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:13][290][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:13][290][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:13][290][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:13][290][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:13][290][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:13][290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:13][290][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:13][290][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:13][290][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:13][290][INFO][MAIN] Duplicate execution. +[28 10:20:16][296][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:16][296][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:16][296][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:16][296][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:16][296][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:16][296][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:16][296][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:16][296][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:16][296][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:16][296][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:16][296][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:16][296][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:16][296][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:16][296][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:16][296][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:16][296][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:16][296][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:16][296][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:16][296][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:16][296][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:16][296][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:16][296][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:16][296][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:16][296][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:16][296][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:16][296][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:16][296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:16][296][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:16][296][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:16][296][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:16][296][INFO][MAIN] Duplicate execution. +[28 10:20:19][302][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:19][302][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:19][302][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:19][302][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:19][302][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:19][302][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:19][302][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:19][302][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:19][302][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:19][302][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:19][302][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:19][302][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:19][302][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:19][302][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:19][302][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:19][302][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:19][302][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:19][302][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:19][302][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:19][302][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:19][302][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:19][302][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:19][302][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:19][302][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:19][302][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:19][302][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:19][302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:19][302][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:19][302][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:19][302][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:19][302][INFO][MAIN] Duplicate execution. +[28 10:20:22][308][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:22][308][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:22][308][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:22][308][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:22][308][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:22][308][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:22][308][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:22][308][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:22][308][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:22][308][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:22][308][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:22][308][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:22][308][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:22][308][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:22][308][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:22][308][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:22][308][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:22][308][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:22][308][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:22][308][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:22][308][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:22][308][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:22][308][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:22][308][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:22][308][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:22][308][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:22][308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:22][308][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:22][308][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:22][308][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:22][308][INFO][MAIN] Duplicate execution. +[28 10:20:25][314][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:25][314][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:25][314][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:25][314][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:25][314][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:25][314][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:25][314][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:25][314][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:25][314][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:25][314][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:25][314][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:25][314][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:25][314][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:25][314][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:25][314][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:25][314][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:25][314][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:25][314][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:25][314][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:25][314][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:25][314][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:25][314][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:25][314][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:25][314][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:25][314][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:25][314][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:25][314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:25][314][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:25][314][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:25][314][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:25][314][INFO][MAIN] Duplicate execution. +[28 10:20:28][320][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:28][320][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:28][320][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:28][320][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:28][320][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:28][320][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:28][320][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:28][320][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:28][320][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:28][320][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:28][320][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:28][320][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:28][320][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:28][320][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:28][320][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:28][320][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:28][320][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:28][320][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:28][320][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:28][320][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:28][320][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:28][320][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:28][320][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:28][320][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:28][320][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:28][320][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:28][320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:28][320][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:28][320][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:28][320][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:28][320][INFO][MAIN] Duplicate execution. +[28 10:20:31][326][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:31][326][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:31][326][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:31][326][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:31][326][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:31][326][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:31][326][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:31][326][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:31][326][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:31][326][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:31][326][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:31][326][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:31][326][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:31][326][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:31][326][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:31][326][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:31][326][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:31][326][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:31][326][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:31][326][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:31][326][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:31][326][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:31][326][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:31][326][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:31][326][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:31][326][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:31][326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:31][326][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:31][326][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:31][326][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:31][326][INFO][MAIN] Duplicate execution. +[28 10:20:34][332][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:34][332][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:34][332][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:34][332][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:34][332][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:34][332][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:34][332][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:34][332][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:34][332][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:34][332][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:34][332][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:34][332][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:34][332][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:34][332][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:34][332][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:34][332][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:34][332][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:34][332][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:34][332][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:34][332][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:34][332][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:34][332][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:34][332][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:34][332][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:34][332][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:34][332][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:34][332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:34][332][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:34][332][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:34][332][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:34][332][INFO][MAIN] Duplicate execution. +[28 10:20:37][338][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:37][338][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:37][338][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:37][338][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:37][338][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:37][338][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:37][338][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:37][338][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:37][338][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:37][338][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:37][338][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:37][338][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:37][338][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:37][338][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:37][338][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:37][338][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:37][338][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:37][338][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:37][338][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:37][338][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:37][338][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:37][338][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:37][338][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:37][338][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:37][338][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:37][338][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:37][338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:37][338][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:37][338][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:37][338][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:37][338][INFO][MAIN] Duplicate execution. +[28 10:20:40][344][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:40][344][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:40][344][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:40][344][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:40][344][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:40][344][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:40][344][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:40][344][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:40][344][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:40][344][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:40][344][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:40][344][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:40][344][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:40][344][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:40][344][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:40][344][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:40][344][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:40][344][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:40][344][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:40][344][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:40][344][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:40][344][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:40][344][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:40][344][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:40][344][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:40][344][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:40][344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:40][344][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:40][344][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:40][344][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:40][344][INFO][MAIN] Duplicate execution. +[28 10:20:43][350][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:43][350][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:43][350][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:43][350][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:43][350][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:43][350][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:43][350][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:43][350][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:43][350][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:43][350][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:43][350][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:43][350][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:43][350][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:43][350][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:43][350][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:43][350][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:43][350][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:43][350][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:43][350][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:43][350][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:43][350][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:43][350][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:43][350][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:43][350][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:43][350][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:43][350][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:43][350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:43][350][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:43][350][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:43][350][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:43][350][INFO][MAIN] Duplicate execution. +[28 10:20:46][356][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:46][356][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:46][356][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:46][356][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:46][356][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:46][356][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:46][356][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:46][356][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:46][356][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:46][356][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:46][356][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:46][356][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:46][356][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:46][356][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:46][356][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:46][356][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:46][356][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:46][356][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:46][356][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:46][356][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:46][356][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:46][356][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:46][356][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:46][356][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:46][356][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:46][356][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:46][356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:46][356][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:46][356][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:46][356][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:46][356][INFO][MAIN] Duplicate execution. +[28 10:20:49][362][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:49][362][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:49][362][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:49][362][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:49][362][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:49][362][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:49][362][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:49][362][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:49][362][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:49][362][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:49][362][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:49][362][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:49][362][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:49][362][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:49][362][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:49][362][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:49][362][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:49][362][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:49][362][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:49][362][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:49][362][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:49][362][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:49][362][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:49][362][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:49][362][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:49][362][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:49][362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:49][362][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:49][362][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:49][362][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:49][362][INFO][MAIN] Duplicate execution. +[28 10:20:52][368][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:52][368][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:52][368][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:52][368][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:52][368][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:52][368][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:52][368][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:52][368][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:52][368][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:52][368][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:52][368][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:52][368][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:52][368][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:52][368][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:52][368][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:52][368][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:52][368][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:52][368][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:52][368][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:52][368][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:52][368][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:52][368][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:52][368][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:52][368][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:52][368][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:52][368][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:52][368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:52][368][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:52][368][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:52][368][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:52][368][INFO][MAIN] Duplicate execution. +[28 10:20:55][374][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:55][374][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:55][374][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:55][374][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:55][374][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:55][374][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:55][374][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:55][374][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:55][374][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:55][374][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:55][374][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:55][374][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:55][374][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:55][374][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:55][374][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:55][374][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:55][374][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:55][374][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:55][374][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:55][374][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:55][374][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:55][374][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:55][374][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:55][374][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:55][374][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:55][374][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:55][374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:55][374][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:55][374][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:55][374][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:55][374][INFO][MAIN] Duplicate execution. +[28 10:20:58][380][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:20:58][380][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:20:58][380][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:20:58][380][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:20:58][380][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:20:58][380][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:20:58][380][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:20:58][380][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:20:58][380][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:20:58][380][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:20:58][380][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:58][380][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:20:58][380][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:20:58][380][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:20:58][380][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:20:58][380][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:20:58][380][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:20:58][380][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:20:58][380][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:20:58][380][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:20:58][380][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:20:58][380][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:20:58][380][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:20:58][380][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:20:58][380][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:20:58][380][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:20:58][380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:20:58][380][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:20:58][380][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:20:58][380][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:20:58][380][INFO][MAIN] Duplicate execution. +[28 10:21:01][386][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:01][386][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:01][386][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:01][386][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:01][386][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:01][386][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:01][386][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:01][386][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:01][386][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:01][386][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:01][386][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:01][386][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:01][386][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:01][386][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:01][386][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:01][386][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:01][386][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:01][386][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:01][386][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:01][386][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:01][386][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:01][386][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:01][386][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:01][386][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:01][386][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:01][386][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:01][386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:01][386][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:01][386][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:01][386][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:01][386][INFO][MAIN] Duplicate execution. +[28 10:21:04][392][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:04][392][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:04][392][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:04][392][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:04][392][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:04][392][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:04][392][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:04][392][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:04][392][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:04][392][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:04][392][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:04][392][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:04][392][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:04][392][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:04][392][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:04][392][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:04][392][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:04][392][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:04][392][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:04][392][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:04][392][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:04][392][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:04][392][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:04][392][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:04][392][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:04][392][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:04][392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:04][392][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:04][392][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:04][392][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:04][392][INFO][MAIN] Duplicate execution. +[28 10:21:07][398][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:07][398][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:07][398][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:07][398][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:07][398][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:07][398][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:07][398][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:07][398][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:07][398][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:07][398][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:07][398][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:07][398][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:07][398][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:07][398][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:07][398][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:07][398][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:07][398][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:07][398][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:07][398][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:07][398][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:07][398][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:07][398][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:07][398][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:07][398][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:07][398][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:07][398][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:07][398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:07][398][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:07][398][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:07][398][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:07][398][INFO][MAIN] Duplicate execution. +[28 10:21:10][404][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:10][404][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:10][404][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:10][404][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:10][404][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:10][404][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:10][404][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:10][404][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:10][404][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:10][404][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:10][404][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:10][404][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:10][404][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:10][404][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:10][404][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:10][404][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:10][404][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:10][404][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:10][404][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:10][404][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:10][404][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:10][404][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:10][404][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:10][404][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:10][404][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:10][404][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:10][404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:10][404][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:10][404][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:10][404][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:10][404][INFO][MAIN] Duplicate execution. +[28 10:21:13][410][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:13][410][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:13][410][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:13][410][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:13][410][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:13][410][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:13][410][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:13][410][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:13][410][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:13][410][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:13][410][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:13][410][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:13][410][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:13][410][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:13][410][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:13][410][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:13][410][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:13][410][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:13][410][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:13][410][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:13][410][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:13][410][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:13][410][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:13][410][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:13][410][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:13][410][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:13][410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:13][410][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:13][410][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:13][410][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:13][410][INFO][MAIN] Duplicate execution. +[28 10:21:16][416][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:16][416][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:16][416][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:16][416][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:16][416][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:16][416][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:16][416][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:16][416][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:16][416][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:16][416][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:16][416][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:16][416][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:16][416][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:16][416][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:16][416][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:16][416][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:16][416][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:16][416][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:16][416][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:16][416][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:16][416][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:16][416][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:16][416][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:16][416][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:16][416][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:16][416][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:16][416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:16][416][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:16][416][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:16][416][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:16][416][INFO][MAIN] Duplicate execution. +[28 10:21:19][422][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:19][422][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:19][422][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:19][422][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:19][422][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:19][422][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:19][422][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:19][422][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:19][422][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:19][422][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:19][422][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:19][422][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:19][422][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:19][422][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:19][422][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:19][422][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:19][422][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:19][422][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:19][422][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:19][422][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:19][422][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:19][422][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:19][422][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:19][422][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:19][422][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:19][422][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:19][422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:19][422][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:19][422][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:19][422][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:19][422][INFO][MAIN] Duplicate execution. +[28 10:21:22][428][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:22][428][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:22][428][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:22][428][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:22][428][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:22][428][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:22][428][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:22][428][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:22][428][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:22][428][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:22][428][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:22][428][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:22][428][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:22][428][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:22][428][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:22][428][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:22][428][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:22][428][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:22][428][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:22][428][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:22][428][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:22][428][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:22][428][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:22][428][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:22][428][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:22][428][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:22][428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:22][428][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:22][428][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:22][428][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:22][428][INFO][MAIN] Duplicate execution. +[28 10:21:25][434][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:25][434][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:25][434][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:25][434][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:25][434][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:25][434][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:25][434][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:25][434][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:25][434][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:25][434][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:25][434][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:25][434][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:25][434][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:25][434][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:25][434][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:25][434][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:25][434][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:25][434][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:25][434][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:25][434][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:25][434][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:25][434][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:25][434][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:25][434][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:25][434][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:25][434][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:25][434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:25][434][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:25][434][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:25][434][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:25][434][INFO][MAIN] Duplicate execution. +[28 10:21:28][440][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:28][440][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:28][440][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:28][440][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:28][440][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:28][440][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:28][440][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:28][440][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:28][440][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:28][440][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:28][440][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:28][440][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:28][440][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:28][440][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:28][440][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:28][440][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:28][440][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:28][440][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:28][440][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:28][440][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:28][440][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:28][440][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:28][440][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:28][440][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:28][440][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:28][440][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:28][440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:28][440][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:28][440][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:28][440][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:28][440][INFO][MAIN] Duplicate execution. +[28 10:21:31][446][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:31][446][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:31][446][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:31][446][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:31][446][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:31][446][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:31][446][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:31][446][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:31][446][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:31][446][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:31][446][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:31][446][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:31][446][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:31][446][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:31][446][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:31][446][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:31][446][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:31][446][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:31][446][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:31][446][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:31][446][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:31][446][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:31][446][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:31][446][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:31][446][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:31][446][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:31][446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:31][446][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:31][446][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:31][446][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:31][446][INFO][MAIN] Duplicate execution. +[28 10:21:34][452][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:34][452][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:34][452][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:34][452][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:34][452][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:34][452][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:34][452][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:34][452][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:34][452][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:34][452][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:34][452][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:34][452][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:34][452][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:34][452][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:34][452][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:34][452][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:34][452][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:34][452][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:34][452][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:34][452][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:34][452][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:34][452][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:34][452][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:34][452][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:34][452][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:34][452][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:34][452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:34][452][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:34][452][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:34][452][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:34][452][INFO][MAIN] Duplicate execution. +[28 10:21:37][458][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:37][458][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:37][458][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:37][458][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:37][458][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:37][458][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:37][458][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:37][458][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:37][458][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:37][458][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:37][458][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:37][458][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:37][458][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:37][458][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:37][458][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:37][458][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:37][458][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:37][458][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:37][458][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:37][458][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:37][458][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:37][458][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:37][458][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:37][458][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:37][458][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:37][458][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:37][458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:37][458][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:37][458][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:37][458][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:37][458][INFO][MAIN] Duplicate execution. +[28 10:21:40][464][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:40][464][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:40][464][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:40][464][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:40][464][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:40][464][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:40][464][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:40][464][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:40][464][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:40][464][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:40][464][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:40][464][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:40][464][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:40][464][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:40][464][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:40][464][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:40][464][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:40][464][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:40][464][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:40][464][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:40][464][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:40][464][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:40][464][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:40][464][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:40][464][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:40][464][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:40][464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:40][464][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:40][464][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:40][464][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:40][464][INFO][MAIN] Duplicate execution. +[28 10:21:43][470][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:43][470][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:43][470][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:43][470][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:43][470][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:43][470][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:43][470][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:43][470][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:43][470][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:43][470][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:43][470][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:43][470][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:43][470][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:43][470][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:43][470][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:43][470][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:43][470][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:43][470][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:43][470][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:43][470][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:43][470][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:43][470][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:43][470][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:43][470][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:43][470][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:43][470][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:43][470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:43][470][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:43][470][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:43][470][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:43][470][INFO][MAIN] Duplicate execution. +[28 10:21:46][476][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:46][476][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:46][476][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:46][476][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:46][476][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:46][476][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:46][476][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:46][476][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:46][476][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:46][476][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:46][476][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:46][476][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:46][476][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:46][476][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:46][476][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:46][476][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:46][476][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:46][476][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:46][476][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:46][476][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:46][476][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:46][476][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:46][476][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:46][476][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:46][476][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:46][476][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:46][476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:46][476][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:46][476][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:46][476][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:46][476][INFO][MAIN] Duplicate execution. +[28 10:21:49][482][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:49][482][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:49][482][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:49][482][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:49][482][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:49][482][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:49][482][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:49][482][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:49][482][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:49][482][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:49][482][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:49][482][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:49][482][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:49][482][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:49][482][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:49][482][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:49][482][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:49][482][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:49][482][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:49][482][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:49][482][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:49][482][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:49][482][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:49][482][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:49][482][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:49][482][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:49][482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:49][482][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:49][482][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:49][482][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:49][482][INFO][MAIN] Duplicate execution. +[28 10:21:52][488][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:52][488][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:52][488][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:52][488][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:52][488][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:52][488][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:52][488][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:52][488][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:52][488][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:52][488][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:52][488][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:52][488][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:52][488][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:52][488][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:52][488][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:52][488][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:52][488][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:52][488][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:52][488][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:52][488][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:52][488][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:52][488][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:52][488][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:52][488][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:52][488][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:52][488][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:52][488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:52][488][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:52][488][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:52][488][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:52][488][INFO][MAIN] Duplicate execution. +[28 10:21:55][494][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:55][494][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:55][494][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:55][494][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:55][494][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:55][494][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:55][494][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:55][494][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:55][494][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:55][494][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:55][494][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:55][494][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:55][494][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:55][494][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:55][494][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:55][494][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:55][494][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:55][494][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:55][494][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:55][494][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:55][494][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:55][494][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:55][494][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:55][494][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:55][494][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:55][494][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:55][494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:55][494][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:55][494][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:55][494][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:55][494][INFO][MAIN] Duplicate execution. +[28 10:21:58][500][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:21:58][500][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:21:58][500][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:21:58][500][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:21:58][500][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:21:58][500][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:21:58][500][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:21:58][500][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:21:58][500][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:21:58][500][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:21:58][500][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:58][500][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:21:58][500][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:21:58][500][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:21:58][500][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:21:58][500][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:21:58][500][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:21:58][500][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:21:58][500][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:21:58][500][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:21:58][500][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:21:58][500][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:21:58][500][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:21:58][500][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:21:58][500][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:21:58][500][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:21:58][500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:21:58][500][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:21:58][500][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:21:58][500][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:21:58][500][INFO][MAIN] Duplicate execution. +[28 10:22:01][506][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:01][506][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:01][506][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:01][506][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:01][506][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:01][506][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:01][506][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:01][506][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:01][506][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:01][506][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:01][506][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:01][506][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:01][506][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:01][506][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:01][506][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:01][506][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:01][506][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:01][506][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:01][506][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:01][506][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:01][506][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:01][506][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:01][506][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:01][506][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:01][506][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:01][506][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:01][506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:01][506][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:01][506][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:01][506][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:01][506][INFO][MAIN] Duplicate execution. +[28 10:22:04][512][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:04][512][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:04][512][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:04][512][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:04][512][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:04][512][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:04][512][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:04][512][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:04][512][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:04][512][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:04][512][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:04][512][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:04][512][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:04][512][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:04][512][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:04][512][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:04][512][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:04][512][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:04][512][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:04][512][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:04][512][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:04][512][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:04][512][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:04][512][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:04][512][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:04][512][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:04][512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:04][512][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:04][512][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:04][512][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:04][512][INFO][MAIN] Duplicate execution. +[28 10:22:07][518][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:07][518][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:07][518][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:07][518][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:07][518][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:07][518][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:07][518][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:07][518][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:07][518][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:07][518][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:07][518][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:07][518][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:07][518][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:07][518][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:07][518][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:07][518][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:07][518][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:07][518][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:07][518][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:07][518][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:07][518][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:07][518][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:07][518][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:07][518][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:07][518][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:07][518][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:07][518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:07][518][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:07][518][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:07][518][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:07][518][INFO][MAIN] Duplicate execution. +[28 10:22:10][524][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:10][524][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:10][524][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:10][524][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:10][524][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:10][524][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:10][524][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:10][524][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:10][524][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:10][524][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:10][524][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:10][524][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:10][524][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:10][524][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:10][524][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:10][524][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:10][524][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:10][524][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:10][524][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:10][524][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:10][524][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:10][524][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:10][524][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:10][524][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:10][524][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:10][524][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:10][524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:10][524][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:10][524][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:10][524][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:10][524][INFO][MAIN] Duplicate execution. +[28 10:22:13][530][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:13][530][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:13][530][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:13][530][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:13][530][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:13][530][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:13][530][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:13][530][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:13][530][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:13][530][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:13][530][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:13][530][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:13][530][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:13][530][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:13][530][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:13][530][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:13][530][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:13][530][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:13][530][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:13][530][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:13][530][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:13][530][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:13][530][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:13][530][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:13][530][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:13][530][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:13][530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:13][530][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:13][530][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:13][530][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:13][530][INFO][MAIN] Duplicate execution. +[28 10:22:16][536][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:16][536][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:16][536][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:16][536][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:16][536][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:16][536][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:16][536][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:16][536][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:16][536][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:16][536][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:16][536][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:16][536][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:16][536][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:16][536][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:16][536][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:16][536][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:16][536][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:16][536][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:16][536][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:16][536][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:16][536][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:16][536][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:16][536][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:16][536][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:16][536][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:16][536][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:16][536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:16][536][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:16][536][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:16][536][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:16][536][INFO][MAIN] Duplicate execution. +[28 10:22:19][542][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:19][542][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:19][542][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:19][542][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:19][542][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:19][542][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:19][542][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:19][542][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:19][542][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:19][542][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:19][542][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:19][542][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:19][542][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:19][542][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:19][542][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:19][542][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:19][542][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:19][542][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:19][542][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:19][542][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:19][542][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:19][542][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:19][542][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:19][542][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:19][542][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:19][542][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:19][542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:19][542][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:19][542][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:19][542][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:19][542][INFO][MAIN] Duplicate execution. +[28 10:22:22][548][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:22][548][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:22][548][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:22][548][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:22][548][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:22][548][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:22][548][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:22][548][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:22][548][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:22][548][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:22][548][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:22][548][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:22][548][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:22][548][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:22][548][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:22][548][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:22][548][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:22][548][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:22][548][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:22][548][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:22][548][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:22][548][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:22][548][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:22][548][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:22][548][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:22][548][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:22][548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:22][548][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:22][548][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:22][548][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:22][548][INFO][MAIN] Duplicate execution. +[28 10:22:25][554][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:25][554][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:25][554][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:25][554][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:25][554][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:25][554][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:25][554][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:25][554][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:25][554][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:25][554][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:25][554][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:25][554][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:25][554][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:25][554][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:25][554][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:25][554][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:25][554][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:25][554][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:25][554][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:25][554][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:25][554][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:25][554][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:25][554][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:25][554][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:25][554][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:25][554][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:25][554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:25][554][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:25][554][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:25][554][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:25][554][INFO][MAIN] Duplicate execution. +[28 10:22:28][560][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:28][560][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:28][560][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:28][560][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:28][560][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:28][560][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:28][560][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:28][560][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:28][560][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:28][560][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:28][560][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:28][560][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:28][560][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:28][560][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:28][560][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:28][560][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:28][560][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:28][560][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:28][560][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:28][560][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:28][560][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:28][560][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:28][560][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:28][560][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:28][560][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:28][560][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:28][560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:28][560][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:28][560][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:28][560][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:28][560][INFO][MAIN] Duplicate execution. +[28 10:22:31][566][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:31][566][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:31][566][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:31][566][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:31][566][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:31][566][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:31][566][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:31][566][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:31][566][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:31][566][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:31][566][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:31][566][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:31][566][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:31][566][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:31][566][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:31][566][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:31][566][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:31][566][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:31][566][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:31][566][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:31][566][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:31][566][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:31][566][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:31][566][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:31][566][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:31][566][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:31][566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:31][566][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:31][566][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:31][566][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:31][566][INFO][MAIN] Duplicate execution. +[28 10:22:34][572][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:34][572][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:34][572][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:34][572][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:34][572][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:34][572][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:34][572][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:34][572][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:34][572][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:34][572][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:34][572][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:34][572][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:34][572][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:34][572][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:34][572][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:34][572][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:34][572][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:34][572][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:34][572][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:34][572][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:34][572][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:34][572][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:34][572][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:34][572][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:34][572][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:34][572][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:34][572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:34][572][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:34][572][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:34][572][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:34][572][INFO][MAIN] Duplicate execution. +[28 10:22:37][578][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:37][578][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:37][578][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:37][578][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:37][578][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:37][578][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:37][578][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:37][578][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:37][578][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:37][578][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:37][578][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:37][578][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:37][578][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:37][578][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:37][578][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:37][578][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:37][578][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:37][578][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:37][578][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:37][578][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:37][578][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:37][578][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:37][578][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:37][578][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:37][578][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:37][578][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:37][578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:37][578][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:37][578][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:37][578][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:37][578][INFO][MAIN] Duplicate execution. +[28 10:22:40][584][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:40][584][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:40][584][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:40][584][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:40][584][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:40][584][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:40][584][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:40][584][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:40][584][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:40][584][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:40][584][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:40][584][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:40][584][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:40][584][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:40][584][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:40][584][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:40][584][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:40][584][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:40][584][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:40][584][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:40][584][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:40][584][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:40][584][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:40][584][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:40][584][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:40][584][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:40][584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:40][584][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:40][584][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:40][584][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:40][584][INFO][MAIN] Duplicate execution. +[28 10:22:43][590][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:43][590][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:43][590][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:43][590][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:43][590][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:43][590][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:43][590][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:43][590][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:43][590][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:43][590][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:43][590][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:43][590][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:43][590][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:43][590][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:43][590][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:43][590][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:43][590][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:43][590][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:43][590][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:43][590][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:43][590][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:43][590][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:43][590][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:43][590][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:43][590][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:43][590][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:43][590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:43][590][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:43][590][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:43][590][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:43][590][INFO][MAIN] Duplicate execution. +[28 10:22:46][596][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:46][596][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:46][596][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:46][596][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:46][596][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:46][596][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:46][596][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:46][596][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:46][596][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:46][596][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:46][596][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:46][596][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:46][596][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:46][596][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:46][596][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:46][596][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:46][596][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:46][596][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:46][596][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:46][596][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:46][596][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:46][596][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:46][596][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:46][596][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:46][596][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:46][596][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:46][596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:46][596][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:46][596][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:46][596][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:46][596][INFO][MAIN] Duplicate execution. +[28 10:22:49][602][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:49][602][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:49][602][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:49][602][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:49][602][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:49][602][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:49][602][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:49][602][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:49][602][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:49][602][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:49][602][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:49][602][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:49][602][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:49][602][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:49][602][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:49][602][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:49][602][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:49][602][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:49][602][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:49][602][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:49][602][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:49][602][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:49][602][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:49][602][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:49][602][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:49][602][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:49][602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:49][602][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:49][602][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:49][602][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:49][602][INFO][MAIN] Duplicate execution. +[28 10:22:52][608][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:52][608][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:52][608][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:52][608][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:52][608][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:52][608][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:52][608][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:52][608][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:52][608][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:52][608][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:52][608][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:52][608][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:52][608][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:52][608][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:52][608][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:52][608][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:52][608][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:52][608][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:52][608][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:52][608][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:52][608][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:52][608][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:52][608][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:52][608][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:52][608][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:52][608][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:52][608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:52][608][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:52][608][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:52][608][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:52][608][INFO][MAIN] Duplicate execution. +[28 10:22:55][614][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:55][614][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:55][614][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:55][614][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:55][614][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:55][614][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:55][614][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:55][614][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:55][614][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:55][614][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:55][614][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:55][614][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:55][614][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:55][614][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:55][614][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:55][614][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:55][614][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:55][614][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:55][614][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:55][614][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:55][614][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:55][614][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:55][614][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:55][614][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:55][614][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:55][614][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:55][614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:55][614][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:55][614][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:55][614][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:55][614][INFO][MAIN] Duplicate execution. +[28 10:22:58][620][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:22:58][620][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:22:58][620][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:22:58][620][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:22:58][620][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:22:58][620][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:22:58][620][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:22:58][620][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:22:58][620][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:22:58][620][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:22:58][620][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:58][620][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:22:58][620][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:22:58][620][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:22:58][620][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:22:58][620][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:22:58][620][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:22:58][620][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:22:58][620][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:22:58][620][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:22:58][620][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:22:58][620][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:22:58][620][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:22:58][620][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:22:58][620][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:22:58][620][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:22:58][620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:22:58][620][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:22:58][620][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:22:58][620][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:22:58][620][INFO][MAIN] Duplicate execution. +[28 10:23:01][626][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:01][626][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:01][626][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:01][626][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:01][626][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:01][626][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:01][626][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:01][626][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:01][626][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:01][626][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:01][626][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:01][626][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:01][626][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:01][626][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:01][626][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:01][626][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:01][626][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:01][626][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:01][626][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:01][626][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:01][626][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:01][626][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:01][626][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:01][626][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:01][626][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:01][626][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:01][626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:01][626][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:01][626][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:01][626][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:01][626][INFO][MAIN] Duplicate execution. +[28 10:23:04][632][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:04][632][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:04][632][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:04][632][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:04][632][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:04][632][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:04][632][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:04][632][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:04][632][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:04][632][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:04][632][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:04][632][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:04][632][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:04][632][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:04][632][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:04][632][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:04][632][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:04][632][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:04][632][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:04][632][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:04][632][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:04][632][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:04][632][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:04][632][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:04][632][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:04][632][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:04][632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:04][632][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:04][632][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:04][632][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:04][632][INFO][MAIN] Duplicate execution. +[28 10:23:07][638][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:07][638][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:07][638][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:07][638][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:07][638][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:07][638][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:07][638][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:07][638][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:07][638][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:07][638][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:07][638][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:07][638][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:07][638][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:07][638][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:07][638][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:07][638][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:07][638][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:07][638][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:07][638][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:07][638][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:07][638][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:07][638][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:07][638][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:07][638][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:07][638][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:07][638][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:07][638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:07][638][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:07][638][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:07][638][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:07][638][INFO][MAIN] Duplicate execution. +[28 10:23:10][644][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:10][644][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:10][644][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:10][644][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:10][644][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:10][644][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:10][644][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:10][644][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:10][644][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:10][644][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:10][644][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:10][644][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:10][644][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:10][644][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:10][644][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:10][644][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:10][644][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:10][644][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:10][644][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:10][644][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:10][644][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:10][644][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:10][644][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:10][644][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:10][644][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:10][644][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:10][644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:10][644][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:10][644][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:10][644][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:10][644][INFO][MAIN] Duplicate execution. +[28 10:23:13][650][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:13][650][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:13][650][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:13][650][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:13][650][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:13][650][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:13][650][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:13][650][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:13][650][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:13][650][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:13][650][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:13][650][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:13][650][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:13][650][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:13][650][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:13][650][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:13][650][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:13][650][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:13][650][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:13][650][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:13][650][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:13][650][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:13][650][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:13][650][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:13][650][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:13][650][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:13][650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:13][650][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:13][650][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:13][650][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:13][650][INFO][MAIN] Duplicate execution. +[28 10:23:16][656][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:16][656][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:16][656][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:16][656][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:16][656][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:16][656][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:16][656][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:16][656][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:16][656][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:16][656][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:16][656][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:16][656][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:16][656][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:16][656][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:16][656][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:16][656][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:16][656][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:16][656][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:16][656][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:16][656][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:16][656][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:16][656][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:16][656][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:16][656][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:16][656][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:16][656][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:16][656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:16][656][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:16][656][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:16][656][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:16][656][INFO][MAIN] Duplicate execution. +[28 10:23:19][662][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:19][662][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:19][662][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:19][662][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:19][662][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:19][662][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:19][662][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:19][662][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:19][662][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:19][662][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:19][662][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:19][662][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:19][662][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:19][662][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:19][662][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:19][662][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:19][662][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:19][662][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:19][662][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:19][662][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:19][662][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:19][662][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:19][662][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:19][662][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:19][662][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:19][662][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:19][662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:19][662][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:19][662][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:19][662][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:19][662][INFO][MAIN] Duplicate execution. +[28 10:23:22][668][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:22][668][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:22][668][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:22][668][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:22][668][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:22][668][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:22][668][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:22][668][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:22][668][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:22][668][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:22][668][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:22][668][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:22][668][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:22][668][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:22][668][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:22][668][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:22][668][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:22][668][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:22][668][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:22][668][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:22][668][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:22][668][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:22][668][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:22][668][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:22][668][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:22][668][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:22][668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:22][668][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:22][668][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:22][668][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:22][668][INFO][MAIN] Duplicate execution. +[28 10:23:25][674][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:25][674][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:25][674][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:25][674][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:25][674][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:25][674][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:25][674][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:25][674][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:25][674][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:25][674][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:25][674][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:25][674][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:25][674][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:25][674][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:25][674][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:25][674][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:25][674][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:25][674][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:25][674][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:25][674][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:25][674][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:25][674][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:25][674][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:25][674][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:25][674][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:25][674][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:25][674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:25][674][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:25][674][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:25][674][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:25][674][INFO][MAIN] Duplicate execution. +[28 10:23:28][680][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:28][680][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:28][680][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:28][680][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:28][680][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:28][680][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:28][680][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:28][680][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:28][680][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:28][680][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:28][680][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:28][680][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:28][680][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:28][680][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:28][680][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:28][680][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:28][680][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:28][680][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:28][680][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:28][680][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:28][680][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:28][680][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:28][680][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:28][680][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:28][680][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:28][680][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:28][680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:28][680][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:28][680][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:28][680][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:28][680][INFO][MAIN] Duplicate execution. +[28 10:23:31][686][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:31][686][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:31][686][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:31][686][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:31][686][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:31][686][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:31][686][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:31][686][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:31][686][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:31][686][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:31][686][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:31][686][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:31][686][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:31][686][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:31][686][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:31][686][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:31][686][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:31][686][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:31][686][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:31][686][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:31][686][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:31][686][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:31][686][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:31][686][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:31][686][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:31][686][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:31][686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:31][686][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:31][686][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:31][686][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:31][686][INFO][MAIN] Duplicate execution. +[28 10:23:34][692][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:34][692][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:34][692][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:34][692][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:34][692][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:34][692][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:34][692][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:34][692][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:34][692][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:34][692][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:34][692][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:34][692][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:34][692][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:34][692][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:34][692][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:34][692][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:34][692][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:34][692][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:34][692][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:34][692][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:34][692][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:34][692][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:34][692][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:34][692][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:34][692][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:34][692][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:34][692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:34][692][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:34][692][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:34][692][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:34][692][INFO][MAIN] Duplicate execution. +[28 10:23:37][698][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:37][698][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:37][698][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:37][698][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:37][698][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:37][698][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:37][698][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:37][698][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:37][698][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:37][698][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:37][698][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:37][698][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:37][698][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:37][698][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:37][698][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:37][698][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:37][698][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:37][698][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:37][698][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:37][698][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:37][698][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:37][698][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:37][698][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:37][698][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:37][698][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:37][698][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:37][698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:37][698][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:37][698][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:37][698][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:37][698][INFO][MAIN] Duplicate execution. +[28 10:23:40][704][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:40][704][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:40][704][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:40][704][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:40][704][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:40][704][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:40][704][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:40][704][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:40][704][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:40][704][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:40][704][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:40][704][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:40][704][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:40][704][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:40][704][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:40][704][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:40][704][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:40][704][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:40][704][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:40][704][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:40][704][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:40][704][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:40][704][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:40][704][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:40][704][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:40][704][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:40][704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:40][704][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:40][704][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:40][704][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:40][704][INFO][MAIN] Duplicate execution. +[28 10:23:43][710][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:43][710][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:43][710][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:43][710][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:43][710][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:43][710][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:43][710][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:43][710][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:43][710][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:43][710][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:43][710][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:43][710][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:43][710][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:43][710][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:43][710][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:43][710][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:43][710][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:43][710][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:43][710][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:43][710][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:43][710][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:43][710][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:43][710][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:43][710][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:43][710][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:43][710][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:43][710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:43][710][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:43][710][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:43][710][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:43][710][INFO][MAIN] Duplicate execution. +[28 10:23:46][716][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:46][716][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:46][716][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:46][716][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:46][716][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:46][716][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:46][716][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:46][716][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:46][716][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:46][716][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:46][716][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:46][716][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:46][716][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:46][716][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:46][716][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:46][716][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:46][716][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:46][716][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:46][716][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:46][716][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:46][716][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:46][716][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:46][716][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:46][716][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:46][716][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:46][716][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:46][716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:46][716][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:46][716][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:46][716][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:46][716][INFO][MAIN] Duplicate execution. +[28 10:23:49][722][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:49][722][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:49][722][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:49][722][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:49][722][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:49][722][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:49][722][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:49][722][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:49][722][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:49][722][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:49][722][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:49][722][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:49][722][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:49][722][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:49][722][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:49][722][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:49][722][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:49][722][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:49][722][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:49][722][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:49][722][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:49][722][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:49][722][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:49][722][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:49][722][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:49][722][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:49][722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:49][722][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:49][722][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:49][722][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:49][722][INFO][MAIN] Duplicate execution. +[28 10:23:52][728][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:52][728][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:52][728][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:52][728][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:52][728][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:52][728][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:52][728][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:52][728][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:52][728][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:52][728][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:52][728][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:52][728][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:52][728][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:52][728][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:52][728][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:52][728][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:52][728][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:52][728][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:52][728][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:52][728][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:52][728][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:52][728][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:52][728][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:52][728][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:52][728][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:52][728][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:52][728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:52][728][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:52][728][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:52][728][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:52][728][INFO][MAIN] Duplicate execution. +[28 10:23:55][734][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:55][734][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:55][734][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:55][734][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:55][734][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:55][734][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:55][734][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:55][734][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:55][734][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:55][734][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:55][734][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:55][734][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:55][734][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:55][734][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:55][734][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:55][734][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:55][734][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:55][734][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:55][734][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:55][734][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:55][734][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:55][734][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:55][734][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:55][734][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:55][734][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:55][734][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:55][734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:55][734][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:55][734][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:55][734][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:55][734][INFO][MAIN] Duplicate execution. +[28 10:23:58][740][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:23:58][740][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:23:58][740][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:23:58][740][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:23:58][740][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:23:58][740][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:23:58][740][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:23:58][740][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:23:58][740][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:23:58][740][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:23:58][740][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:58][740][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:23:58][740][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:23:58][740][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:23:58][740][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:23:58][740][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:23:58][740][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:23:58][740][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:23:58][740][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:23:58][740][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:23:58][740][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:23:58][740][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:23:58][740][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:23:58][740][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:23:58][740][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:23:58][740][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:23:58][740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:23:58][740][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:23:58][740][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:23:58][740][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:23:58][740][INFO][MAIN] Duplicate execution. +[28 10:24:01][746][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:01][746][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:01][746][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:01][746][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:01][746][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:01][746][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:01][746][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:01][746][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:01][746][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:01][746][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:01][746][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:01][746][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:01][746][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:01][746][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:01][746][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:01][746][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:01][746][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:01][746][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:01][746][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:01][746][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:01][746][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:01][746][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:01][746][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:01][746][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:01][746][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:01][746][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:01][746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:01][746][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:01][746][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:01][746][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:01][746][INFO][MAIN] Duplicate execution. +[28 10:24:04][752][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:04][752][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:04][752][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:04][752][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:04][752][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:04][752][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:04][752][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:04][752][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:04][752][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:04][752][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:04][752][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:04][752][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:04][752][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:04][752][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:04][752][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:04][752][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:04][752][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:04][752][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:04][752][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:04][752][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:04][752][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:04][752][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:04][752][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:04][752][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:04][752][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:04][752][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:04][752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:04][752][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:04][752][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:04][752][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:04][752][INFO][MAIN] Duplicate execution. +[28 10:24:07][758][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:07][758][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:07][758][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:07][758][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:07][758][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:07][758][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:07][758][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:07][758][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:07][758][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:07][758][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:07][758][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:07][758][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:07][758][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:07][758][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:07][758][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:07][758][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:07][758][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:07][758][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:07][758][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:07][758][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:07][758][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:07][758][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:07][758][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:07][758][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:07][758][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:07][758][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:07][758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:07][758][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:07][758][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:07][758][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:07][758][INFO][MAIN] Duplicate execution. +[28 10:24:10][764][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:10][764][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:10][764][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:10][764][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:10][764][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:10][764][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:10][764][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:10][764][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:10][764][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:10][764][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:10][764][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:10][764][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:10][764][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:10][764][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:10][764][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:10][764][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:10][764][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:10][764][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:10][764][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:10][764][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:10][764][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:10][764][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:10][764][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:10][764][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:10][764][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:10][764][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:10][764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:10][764][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:10][764][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:10][764][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:10][764][INFO][MAIN] Duplicate execution. +[28 10:24:13][770][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:13][770][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:13][770][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:13][770][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:13][770][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:13][770][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:13][770][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:13][770][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:13][770][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:13][770][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:13][770][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:13][770][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:13][770][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:13][770][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:13][770][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:13][770][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:13][770][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:13][770][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:13][770][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:13][770][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:13][770][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:13][770][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:13][770][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:13][770][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:13][770][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:13][770][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:13][770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:13][770][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:13][770][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:13][770][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:13][770][INFO][MAIN] Duplicate execution. +[28 10:24:16][776][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:16][776][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:16][776][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:16][776][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:16][776][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:16][776][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:16][776][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:16][776][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:16][776][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:16][776][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:16][776][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:16][776][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:16][776][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:16][776][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:16][776][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:16][776][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:16][776][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:16][776][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:16][776][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:16][776][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:16][776][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:16][776][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:16][776][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:16][776][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:16][776][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:16][776][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:16][776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:16][776][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:16][776][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:16][776][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:16][776][INFO][MAIN] Duplicate execution. +[28 10:24:19][782][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:19][782][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:19][782][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:19][782][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:19][782][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:19][782][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:19][782][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:19][782][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:19][782][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:19][782][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:19][782][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:19][782][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:19][782][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:19][782][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:19][782][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:19][782][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:19][782][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:19][782][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:19][782][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:19][782][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:19][782][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:19][782][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:19][782][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:19][782][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:19][782][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:19][782][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:19][782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:19][782][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:19][782][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:19][782][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:19][782][INFO][MAIN] Duplicate execution. +[28 10:24:22][788][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:22][788][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:22][788][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:22][788][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:22][788][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:22][788][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:22][788][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:22][788][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:22][788][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:22][788][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:22][788][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:22][788][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:22][788][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:22][788][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:22][788][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:22][788][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:22][788][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:22][788][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:22][788][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:22][788][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:22][788][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:22][788][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:22][788][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:22][788][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:22][788][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:22][788][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:22][788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:22][788][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:22][788][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:22][788][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:22][788][INFO][MAIN] Duplicate execution. +[28 10:24:25][794][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:25][794][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:25][794][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:25][794][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:25][794][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:25][794][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:25][794][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:25][794][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:25][794][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:25][794][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:25][794][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:25][794][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:25][794][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:25][794][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:25][794][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:25][794][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:25][794][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:25][794][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:25][794][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:25][794][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:25][794][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:25][794][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:25][794][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:25][794][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:25][794][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:25][794][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:25][794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:25][794][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:25][794][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:25][794][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:25][794][INFO][MAIN] Duplicate execution. +[28 10:24:28][800][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:28][800][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:28][800][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:28][800][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:28][800][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:28][800][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:28][800][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:28][800][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:28][800][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:28][800][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:28][800][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:28][800][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:28][800][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:28][800][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:28][800][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:28][800][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:28][800][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:28][800][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:28][800][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:28][800][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:28][800][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:28][800][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:28][800][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:28][800][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:28][800][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:28][800][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:28][800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:28][800][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:28][800][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:28][800][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:28][800][INFO][MAIN] Duplicate execution. +[28 10:24:31][806][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:31][806][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:31][806][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:31][806][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:31][806][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:31][806][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:31][806][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:31][806][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:31][806][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:31][806][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:31][806][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:31][806][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:31][806][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:31][806][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:31][806][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:31][806][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:31][806][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:31][806][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:31][806][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:31][806][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:31][806][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:31][806][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:31][806][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:31][806][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:31][806][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:31][806][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:31][806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:31][806][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:31][806][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:31][806][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:31][806][INFO][MAIN] Duplicate execution. +[28 10:24:34][812][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:34][812][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:34][812][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:34][812][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:34][812][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:34][812][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:34][812][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:34][812][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:34][812][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:34][812][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:34][812][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:34][812][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:34][812][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:34][812][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:34][812][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:34][812][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:34][812][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:34][812][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:34][812][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:34][812][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:34][812][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:34][812][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:34][812][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:34][812][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:34][812][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:34][812][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:34][812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:34][812][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:34][812][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:34][812][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:34][812][INFO][MAIN] Duplicate execution. +[28 10:24:37][818][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:37][818][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:37][818][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:37][818][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:37][818][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:37][818][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:37][818][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:37][818][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:37][818][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:37][818][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:37][818][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:37][818][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:37][818][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:37][818][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:37][818][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:37][818][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:37][818][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:37][818][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:37][818][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:37][818][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:37][818][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:37][818][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:37][818][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:37][818][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:37][818][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:37][818][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:37][818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:37][818][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:37][818][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:37][818][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:37][818][INFO][MAIN] Duplicate execution. +[28 10:24:40][824][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:40][824][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:40][824][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:40][824][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:40][824][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:40][824][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:40][824][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:40][824][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:40][824][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:40][824][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:40][824][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:40][824][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:40][824][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:40][824][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:40][824][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:40][824][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:40][824][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:40][824][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:40][824][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:40][824][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:40][824][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:40][824][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:40][824][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:40][824][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:40][824][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:40][824][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:40][824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:40][824][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:40][824][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:40][824][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:40][824][INFO][MAIN] Duplicate execution. +[28 10:24:43][830][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:43][830][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:43][830][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:43][830][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:43][830][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:43][830][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:43][830][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:43][830][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:43][830][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:43][830][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:43][830][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:43][830][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:43][830][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:43][830][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:43][830][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:43][830][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:43][830][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:43][830][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:43][830][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:43][830][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:43][830][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:43][830][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:43][830][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:43][830][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:43][830][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:43][830][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:43][830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:43][830][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:43][830][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:43][830][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:43][830][INFO][MAIN] Duplicate execution. +[28 10:24:46][836][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:46][836][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:46][836][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:46][836][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:46][836][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:46][836][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:46][836][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:46][836][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:46][836][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:46][836][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:46][836][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:46][836][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:46][836][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:46][836][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:46][836][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:46][836][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:46][836][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:46][836][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:46][836][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:46][836][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:46][836][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:46][836][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:46][836][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:46][836][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:46][836][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:46][836][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:46][836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:46][836][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:46][836][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:46][836][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:46][836][INFO][MAIN] Duplicate execution. +[28 10:24:49][842][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:49][842][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:49][842][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:49][842][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:49][842][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:49][842][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:49][842][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:49][842][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:49][842][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:49][842][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:49][842][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:49][842][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:49][842][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:49][842][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:49][842][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:49][842][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:49][842][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:49][842][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:49][842][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:49][842][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:49][842][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:49][842][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:49][842][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:49][842][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:49][842][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:49][842][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:49][842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:49][842][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:49][842][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:49][842][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:49][842][INFO][MAIN] Duplicate execution. +[28 10:24:52][848][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:52][848][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:52][848][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:52][848][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:52][848][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:52][848][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:52][848][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:52][848][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:52][848][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:52][848][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:52][848][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:52][848][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:52][848][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:52][848][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:52][848][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:52][848][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:52][848][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:52][848][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:52][848][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:52][848][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:52][848][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:52][848][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:52][848][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:52][848][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:52][848][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:52][848][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:52][848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:52][848][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:52][848][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:52][848][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:52][848][INFO][MAIN] Duplicate execution. +[28 10:24:55][854][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:55][854][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:55][854][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:55][854][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:55][854][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:55][854][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:55][854][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:55][854][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:55][854][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:55][854][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:55][854][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:55][854][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:55][854][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:55][854][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:55][854][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:55][854][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:55][854][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:55][854][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:55][854][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:55][854][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:55][854][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:55][854][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:55][854][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:55][854][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:55][854][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:55][854][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:55][854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:55][854][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:55][854][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:55][854][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:55][854][INFO][MAIN] Duplicate execution. +[28 10:24:58][860][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:24:58][860][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:24:58][860][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:24:58][860][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:24:58][860][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:24:58][860][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:24:58][860][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:24:58][860][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:24:58][860][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:24:58][860][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:24:58][860][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:58][860][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:24:58][860][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:24:58][860][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:24:58][860][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:24:58][860][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:24:58][860][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:24:58][860][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:24:58][860][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:24:58][860][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:24:58][860][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:24:58][860][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:24:58][860][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:24:58][860][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:24:58][860][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:24:58][860][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:24:58][860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:24:58][860][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:24:58][860][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:24:58][860][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:24:58][860][INFO][MAIN] Duplicate execution. +[28 10:25:01][866][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:01][866][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:01][866][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:01][866][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:01][866][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:01][866][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:01][866][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:01][866][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:01][866][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:01][866][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:01][866][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:01][866][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:01][866][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:01][866][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:01][866][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:01][866][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:01][866][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:01][866][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:01][866][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:01][866][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:01][866][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:01][866][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:01][866][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:01][866][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:01][866][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:01][866][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:01][866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:01][866][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:01][866][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:01][866][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:01][866][INFO][MAIN] Duplicate execution. +[28 10:25:04][872][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:04][872][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:04][872][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:04][872][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:04][872][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:04][872][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:04][872][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:04][872][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:04][872][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:04][872][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:04][872][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:04][872][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:04][872][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:04][872][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:04][872][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:04][872][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:04][872][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:04][872][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:04][872][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:04][872][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:04][872][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:04][872][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:04][872][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:04][872][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:04][872][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:04][872][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:04][872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:04][872][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:04][872][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:04][872][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:04][872][INFO][MAIN] Duplicate execution. +[28 10:25:07][878][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:07][878][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:07][878][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:07][878][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:07][878][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:07][878][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:07][878][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:07][878][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:07][878][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:07][878][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:07][878][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:07][878][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:07][878][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:07][878][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:07][878][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:07][878][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:07][878][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:07][878][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:07][878][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:07][878][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:07][878][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:07][878][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:07][878][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:07][878][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:07][878][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:07][878][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:07][878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:07][878][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:07][878][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:07][878][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:07][878][INFO][MAIN] Duplicate execution. +[28 10:25:10][884][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:10][884][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:10][884][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:10][884][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:10][884][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:10][884][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:10][884][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:10][884][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:10][884][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:10][884][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:10][884][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:10][884][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:10][884][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:10][884][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:10][884][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:10][884][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:10][884][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:10][884][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:10][884][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:10][884][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:10][884][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:10][884][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:10][884][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:10][884][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:10][884][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:10][884][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:10][884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:10][884][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:10][884][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:10][884][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:10][884][INFO][MAIN] Duplicate execution. +[28 10:25:13][890][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:13][890][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:13][890][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:13][890][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:13][890][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:13][890][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:13][890][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:13][890][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:13][890][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:13][890][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:13][890][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:13][890][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:13][890][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:13][890][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:13][890][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:13][890][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:13][890][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:13][890][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:13][890][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:13][890][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:13][890][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:13][890][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:13][890][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:13][890][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:13][890][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:13][890][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:13][890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:13][890][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:13][890][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:13][890][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:13][890][INFO][MAIN] Duplicate execution. +[28 10:25:16][896][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:16][896][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:16][896][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:16][896][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:16][896][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:16][896][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:16][896][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:16][896][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:16][896][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:16][896][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:16][896][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:16][896][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:16][896][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:16][896][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:16][896][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:16][896][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:16][896][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:16][896][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:16][896][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:16][896][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:16][896][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:16][896][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:16][896][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:16][896][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:16][896][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:16][896][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:16][896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:16][896][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:16][896][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:16][896][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:16][896][INFO][MAIN] Duplicate execution. +[28 10:25:19][902][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:19][902][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:19][902][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:19][902][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:19][902][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:19][902][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:19][902][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:19][902][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:19][902][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:19][902][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:19][902][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:19][902][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:19][902][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:19][902][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:19][902][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:19][902][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:19][902][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:19][902][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:19][902][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:19][902][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:19][902][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:19][902][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:19][902][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:19][902][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:19][902][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:19][902][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:19][902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:19][902][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:19][902][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:19][902][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:19][902][INFO][MAIN] Duplicate execution. +[28 10:25:22][908][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:22][908][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:22][908][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:22][908][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:22][908][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:22][908][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:22][908][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:22][908][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:22][908][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:22][908][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:22][908][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:22][908][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:22][908][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:22][908][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:22][908][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:22][908][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:22][908][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:22][908][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:22][908][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:22][908][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:22][908][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:22][908][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:22][908][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:22][908][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:22][908][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:22][908][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:22][908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:22][908][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:22][908][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:22][908][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:22][908][INFO][MAIN] Duplicate execution. +[28 10:25:25][914][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:25][914][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:25][914][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:25][914][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:25][914][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:25][914][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:25][914][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:25][914][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:25][914][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:25][914][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:25][914][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:25][914][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:25][914][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:25][914][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:25][914][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:25][914][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:25][914][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:25][914][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:25][914][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:25][914][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:25][914][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:25][914][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:25][914][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:25][914][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:25][914][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:25][914][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:25][914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:25][914][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:25][914][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:25][914][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:25][914][INFO][MAIN] Duplicate execution. +[28 10:25:28][920][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:28][920][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:28][920][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:28][920][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:28][920][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:28][920][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:28][920][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:28][920][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:28][920][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:28][920][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:28][920][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:28][920][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:28][920][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:28][920][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:28][920][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:28][920][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:28][920][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:28][920][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:28][920][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:28][920][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:28][920][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:28][920][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:28][920][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:28][920][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:28][920][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:28][920][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:28][920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:28][920][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:28][920][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:28][920][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:28][920][INFO][MAIN] Duplicate execution. +[28 10:25:31][926][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:31][926][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:31][926][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:31][926][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:31][926][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:31][926][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:31][926][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:31][926][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:31][926][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:31][926][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:31][926][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:31][926][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:31][926][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:31][926][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:31][926][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:31][926][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:31][926][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:31][926][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:31][926][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:31][926][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:31][926][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:31][926][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:31][926][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:31][926][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:31][926][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:31][926][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:31][926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:31][926][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:31][926][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:31][926][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:31][926][INFO][MAIN] Duplicate execution. +[28 10:25:34][932][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:34][932][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:34][932][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:34][932][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:34][932][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:34][932][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:34][932][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:34][932][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:34][932][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:34][932][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:34][932][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:34][932][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:34][932][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:34][932][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:34][932][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:34][932][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:34][932][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:34][932][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:34][932][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:34][932][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:34][932][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:34][932][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:34][932][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:34][932][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:34][932][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:34][932][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:34][932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:34][932][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:34][932][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:34][932][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:34][932][INFO][MAIN] Duplicate execution. +[28 10:25:37][938][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:37][938][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:37][938][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:37][938][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:37][938][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:37][938][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:37][938][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:37][938][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:37][938][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:37][938][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:37][938][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:37][938][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:37][938][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:37][938][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:37][938][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:37][938][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:37][938][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:37][938][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:37][938][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:37][938][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:37][938][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:37][938][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:37][938][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:37][938][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:37][938][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:37][938][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:37][938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:37][938][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:37][938][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:37][938][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:37][938][INFO][MAIN] Duplicate execution. +[28 10:25:40][944][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:40][944][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:40][944][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:40][944][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:40][944][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:40][944][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:40][944][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:40][944][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:40][944][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:40][944][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:40][944][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:40][944][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:40][944][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:40][944][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:40][944][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:40][944][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:40][944][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:40][944][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:40][944][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:40][944][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:40][944][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:40][944][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:40][944][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:40][944][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:40][944][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:40][944][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:40][944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:40][944][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:40][944][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:40][944][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:40][944][INFO][MAIN] Duplicate execution. +[28 10:25:43][950][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:43][950][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:43][950][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:43][950][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:43][950][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:43][950][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:43][950][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:43][950][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:43][950][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:43][950][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:43][950][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:43][950][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:43][950][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:43][950][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:43][950][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:43][950][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:43][950][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:43][950][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:43][950][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:43][950][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:43][950][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:43][950][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:43][950][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:43][950][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:43][950][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:43][950][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:43][950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:43][950][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:43][950][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:43][950][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:43][950][INFO][MAIN] Duplicate execution. +[28 10:25:46][956][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:46][956][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:46][956][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:46][956][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:46][956][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:46][956][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:46][956][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:46][956][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:46][956][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:46][956][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:46][956][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:46][956][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:46][956][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:46][956][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:46][956][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:46][956][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:46][956][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:46][956][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:46][956][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:46][956][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:46][956][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:46][956][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:46][956][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:46][956][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:46][956][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:46][956][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:46][956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:46][956][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:46][956][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:46][956][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:46][956][INFO][MAIN] Duplicate execution. +[28 10:25:49][962][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:49][962][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:49][962][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:49][962][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:49][962][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:49][962][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:49][962][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:49][962][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:49][962][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:49][962][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:49][962][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:49][962][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:49][962][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:49][962][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:49][962][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:49][962][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:49][962][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:49][962][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:49][962][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:49][962][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:49][962][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:49][962][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:49][962][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:49][962][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:49][962][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:49][962][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:49][962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:49][962][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:49][962][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:49][962][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:49][962][INFO][MAIN] Duplicate execution. +[28 10:25:52][968][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:52][968][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:52][968][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:52][968][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:52][968][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:52][968][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:52][968][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:52][968][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:52][968][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:52][968][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:52][968][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:52][968][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:52][968][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:52][968][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:52][968][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:52][968][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:52][968][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:52][968][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:52][968][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:52][968][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:52][968][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:52][968][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:52][968][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:52][968][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:52][968][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:52][968][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:52][968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:52][968][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:52][968][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:52][968][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:52][968][INFO][MAIN] Duplicate execution. +[28 10:25:55][974][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:55][974][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:55][974][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:55][974][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:55][974][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:55][974][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:55][974][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:55][974][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:55][974][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:55][974][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:55][974][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:55][974][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:55][974][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:55][974][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:55][974][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:55][974][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:55][974][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:55][974][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:55][974][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:55][974][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:55][974][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:55][974][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:55][974][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:55][974][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:55][974][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:55][974][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:55][974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:55][974][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:55][974][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:55][974][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:55][974][INFO][MAIN] Duplicate execution. +[28 10:25:58][980][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:25:58][980][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:25:58][980][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:25:58][980][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:25:58][980][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:25:58][980][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:25:58][980][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:25:58][980][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:25:58][980][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:25:58][980][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:25:58][980][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:58][980][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:25:58][980][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:25:58][980][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:25:58][980][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:25:58][980][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:25:58][980][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:25:58][980][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:25:58][980][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:25:58][980][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:25:58][980][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:25:58][980][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:25:58][980][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:25:58][980][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:25:58][980][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:25:58][980][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:25:58][980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:25:58][980][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:25:58][980][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:25:58][980][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:25:58][980][INFO][MAIN] Duplicate execution. +[28 10:26:01][986][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:01][986][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:01][986][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:01][986][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:01][986][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:01][986][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:01][986][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:01][986][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:01][986][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:01][986][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:01][986][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:01][986][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:01][986][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:01][986][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:01][986][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:01][986][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:01][986][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:01][986][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:01][986][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:01][986][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:01][986][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:01][986][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:01][986][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:01][986][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:01][986][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:01][986][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:01][986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:01][986][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:01][986][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:01][986][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:01][986][INFO][MAIN] Duplicate execution. +[28 10:26:04][992][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:04][992][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:04][992][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:04][992][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:04][992][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:04][992][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:04][992][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:04][992][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:04][992][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:04][992][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:04][992][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:04][992][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:04][992][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:04][992][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:04][992][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:04][992][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:04][992][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:04][992][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:04][992][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:04][992][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:04][992][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:04][992][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:04][992][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:04][992][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:04][992][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:04][992][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:04][992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:04][992][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:04][992][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:04][992][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:04][992][INFO][MAIN] Duplicate execution. +[28 10:26:07][998][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:07][998][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:07][998][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:07][998][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:07][998][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:07][998][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:07][998][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:07][998][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:07][998][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:07][998][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:07][998][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:07][998][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:07][998][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:07][998][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:07][998][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:07][998][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:07][998][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:07][998][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:07][998][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:07][998][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:07][998][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:07][998][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:07][998][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:07][998][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:07][998][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:07][998][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:07][998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:07][998][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:07][998][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:07][998][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:07][998][INFO][MAIN] Duplicate execution. +[28 10:26:10][1004][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:10][1004][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:10][1004][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:10][1004][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:10][1004][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:10][1004][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:10][1004][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:10][1004][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:10][1004][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:10][1004][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:10][1004][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:10][1004][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:10][1004][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:10][1004][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:10][1004][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:10][1004][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:10][1004][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:10][1004][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:10][1004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:10][1004][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:10][1004][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:10][1004][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:10][1004][INFO][MAIN] Duplicate execution. +[28 10:26:13][1010][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:13][1010][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:13][1010][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:13][1010][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:13][1010][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:13][1010][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:13][1010][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:13][1010][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:13][1010][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:13][1010][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:13][1010][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:13][1010][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:13][1010][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:13][1010][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:13][1010][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:13][1010][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:13][1010][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:13][1010][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:13][1010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:13][1010][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:13][1010][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:13][1010][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:13][1010][INFO][MAIN] Duplicate execution. +[28 10:26:16][1024][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:16][1024][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:16][1024][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:16][1024][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:16][1024][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:16][1024][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:16][1024][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:16][1024][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:16][1024][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:16][1024][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:16][1024][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:16][1024][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:16][1024][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:16][1024][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:16][1024][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:16][1024][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:16][1024][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:16][1024][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:16][1024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:16][1024][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:16][1024][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:16][1024][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:16][1024][INFO][MAIN] Duplicate execution. +[28 10:26:19][1031][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:19][1031][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:19][1031][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:19][1031][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:19][1031][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:19][1031][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:19][1031][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:19][1031][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:19][1031][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:19][1031][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:19][1031][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:19][1031][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:19][1031][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:19][1031][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:19][1031][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:19][1031][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:19][1031][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:19][1031][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:19][1031][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:19][1031][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:19][1031][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:19][1031][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:19][1031][INFO][MAIN] Duplicate execution. +[28 10:26:22][1037][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:22][1037][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:22][1037][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:22][1037][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:22][1037][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:22][1037][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:22][1037][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:22][1037][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:22][1037][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:22][1037][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:22][1037][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:22][1037][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:22][1037][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:22][1037][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:22][1037][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:22][1037][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:22][1037][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:22][1037][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:22][1037][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:22][1037][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:22][1037][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:22][1037][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:22][1037][INFO][MAIN] Duplicate execution. +[28 10:26:25][1043][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:25][1043][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:25][1043][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:25][1043][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:25][1043][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:25][1043][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:25][1043][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:25][1043][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:25][1043][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:25][1043][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:25][1043][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:25][1043][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:25][1043][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:25][1043][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:25][1043][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:25][1043][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:25][1043][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:25][1043][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:25][1043][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:25][1043][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:25][1043][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:25][1043][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:25][1043][INFO][MAIN] Duplicate execution. +[28 10:26:28][1049][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:28][1049][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:28][1049][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:28][1049][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:28][1049][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:28][1049][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:28][1049][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:28][1049][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:28][1049][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:28][1049][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:28][1049][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:28][1049][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:28][1049][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:28][1049][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:28][1049][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:28][1049][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:28][1049][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:28][1049][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:28][1049][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:28][1049][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:28][1049][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:28][1049][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:28][1049][INFO][MAIN] Duplicate execution. +[28 10:26:31][1056][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:31][1056][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:31][1056][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:31][1056][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:31][1056][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:31][1056][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:31][1056][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:31][1056][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:31][1056][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:31][1056][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:31][1056][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:31][1056][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:31][1056][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:31][1056][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:31][1056][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:31][1056][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:31][1056][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:31][1056][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:31][1056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:31][1056][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:31][1056][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:31][1056][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:31][1056][INFO][MAIN] Duplicate execution. +[28 10:26:34][1062][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:34][1062][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:34][1062][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:34][1062][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:34][1062][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:34][1062][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:34][1062][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:34][1062][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:34][1062][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:34][1062][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:34][1062][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:34][1062][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:34][1062][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:34][1062][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:34][1062][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:34][1062][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:34][1062][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:34][1062][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:34][1062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:34][1062][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:34][1062][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:34][1062][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:34][1062][INFO][MAIN] Duplicate execution. +[28 10:26:37][1068][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:37][1068][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:37][1068][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:37][1068][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:37][1068][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:37][1068][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:37][1068][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:37][1068][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:37][1068][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:37][1068][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:37][1068][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:37][1068][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:37][1068][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:37][1068][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:37][1068][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:37][1068][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:37][1068][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:37][1068][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:37][1068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:37][1068][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:37][1068][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:37][1068][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:37][1068][INFO][MAIN] Duplicate execution. +[28 10:26:40][1074][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:40][1074][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:40][1074][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:40][1074][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:40][1074][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:40][1074][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:40][1074][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:40][1074][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:40][1074][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:40][1074][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:40][1074][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:40][1074][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:40][1074][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:40][1074][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:40][1074][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:40][1074][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:40][1074][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:40][1074][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:40][1074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:40][1074][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:40][1074][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:40][1074][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:40][1074][INFO][MAIN] Duplicate execution. +[28 10:26:43][1080][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:43][1080][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:43][1080][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:43][1080][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:43][1080][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:43][1080][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:43][1080][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:43][1080][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:43][1080][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:43][1080][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:43][1080][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:43][1080][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:43][1080][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:43][1080][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:43][1080][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:43][1080][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:43][1080][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:43][1080][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:43][1080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:43][1080][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:43][1080][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:43][1080][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:43][1080][INFO][MAIN] Duplicate execution. +[28 10:26:46][1086][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:46][1086][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:46][1086][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:46][1086][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:46][1086][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:46][1086][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:46][1086][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:46][1086][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:46][1086][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:46][1086][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:46][1086][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:46][1086][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:46][1086][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:46][1086][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:46][1086][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:46][1086][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:46][1086][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:46][1086][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:46][1086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:46][1086][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:46][1086][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:46][1086][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:46][1086][INFO][MAIN] Duplicate execution. +[28 10:26:49][1092][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:49][1092][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:49][1092][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:49][1092][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:49][1092][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:49][1092][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:49][1092][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:49][1092][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:49][1092][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:49][1092][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:49][1092][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:49][1092][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:49][1092][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:49][1092][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:49][1092][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:49][1092][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:49][1092][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:49][1092][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:49][1092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:49][1092][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:49][1092][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:49][1092][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:49][1092][INFO][MAIN] Duplicate execution. +[28 10:26:52][1098][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:52][1098][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:52][1098][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:52][1098][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:52][1098][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:52][1098][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:52][1098][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:52][1098][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:52][1098][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:52][1098][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:52][1098][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:52][1098][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:52][1098][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:52][1098][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:52][1098][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:52][1098][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:52][1098][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:52][1098][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:52][1098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:52][1098][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:52][1098][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:52][1098][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:52][1098][INFO][MAIN] Duplicate execution. +[28 10:26:55][1104][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:55][1104][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:55][1104][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:55][1104][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:55][1104][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:55][1104][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:55][1104][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:55][1104][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:55][1104][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:55][1104][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:55][1104][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:55][1104][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:55][1104][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:55][1104][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:55][1104][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:55][1104][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:55][1104][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:55][1104][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:55][1104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:55][1104][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:55][1104][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:55][1104][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:55][1104][INFO][MAIN] Duplicate execution. +[28 10:26:58][1110][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:26:58][1110][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:26:58][1110][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:26:58][1110][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:26:58][1110][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:26:58][1110][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:26:58][1110][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:26:58][1110][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:26:58][1110][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:26:58][1110][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:26:58][1110][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:26:58][1110][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:26:58][1110][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:26:58][1110][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:26:58][1110][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:26:58][1110][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:26:58][1110][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:26:58][1110][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:26:58][1110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:26:58][1110][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:26:58][1110][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:26:58][1110][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:26:58][1110][INFO][MAIN] Duplicate execution. +[28 10:27:01][1116][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:01][1116][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:01][1116][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:01][1116][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:01][1116][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:01][1116][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:01][1116][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:01][1116][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:01][1116][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:01][1116][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:01][1116][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:01][1116][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:01][1116][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:01][1116][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:01][1116][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:01][1116][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:01][1116][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:01][1116][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:01][1116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:01][1116][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:01][1116][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:01][1116][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:01][1116][INFO][MAIN] Duplicate execution. +[28 10:27:04][1122][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:04][1122][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:04][1122][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:04][1122][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:04][1122][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:04][1122][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:04][1122][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:04][1122][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:04][1122][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:04][1122][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:04][1122][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:04][1122][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:04][1122][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:04][1122][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:04][1122][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:04][1122][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:04][1122][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:04][1122][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:04][1122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:04][1122][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:04][1122][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:04][1122][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:04][1122][INFO][MAIN] Duplicate execution. +[28 10:27:07][1128][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:07][1128][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:07][1128][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:07][1128][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:07][1128][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:07][1128][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:07][1128][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:07][1128][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:07][1128][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:07][1128][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:07][1128][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:07][1128][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:07][1128][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:07][1128][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:07][1128][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:07][1128][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:07][1128][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:07][1128][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:07][1128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:07][1128][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:07][1128][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:07][1128][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:07][1128][INFO][MAIN] Duplicate execution. +[28 10:27:10][1134][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:10][1134][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:10][1134][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:10][1134][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:10][1134][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:10][1134][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:10][1134][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:10][1134][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:10][1134][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:10][1134][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:10][1134][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:10][1134][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:10][1134][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:10][1134][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:10][1134][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:10][1134][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:10][1134][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:10][1134][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:10][1134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:10][1134][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:10][1134][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:10][1134][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:10][1134][INFO][MAIN] Duplicate execution. +[28 10:27:13][1140][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:13][1140][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:13][1140][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:13][1140][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:13][1140][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:13][1140][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:13][1140][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:13][1140][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:13][1140][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:13][1140][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:13][1140][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:13][1140][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:13][1140][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:13][1140][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:13][1140][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:13][1140][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:13][1140][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:13][1140][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:13][1140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:13][1140][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:13][1140][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:13][1140][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:13][1140][INFO][MAIN] Duplicate execution. +[28 10:27:16][1146][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:16][1146][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:16][1146][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:16][1146][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:16][1146][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:16][1146][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:16][1146][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:16][1146][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:16][1146][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:16][1146][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:16][1146][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:16][1146][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:16][1146][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:16][1146][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:16][1146][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:16][1146][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:16][1146][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:16][1146][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:16][1146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:16][1146][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:16][1146][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:16][1146][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:16][1146][INFO][MAIN] Duplicate execution. +[28 10:27:19][1152][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:19][1152][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:19][1152][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:19][1152][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:19][1152][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:19][1152][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:19][1152][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:19][1152][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:19][1152][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:19][1152][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:19][1152][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:19][1152][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:19][1152][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:19][1152][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:19][1152][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:19][1152][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:19][1152][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:19][1152][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:19][1152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:19][1152][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:19][1152][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:19][1152][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:19][1152][INFO][MAIN] Duplicate execution. +[28 10:27:22][1158][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:22][1158][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:22][1158][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:22][1158][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:22][1158][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:22][1158][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:22][1158][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:22][1158][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:22][1158][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:22][1158][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:22][1158][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:22][1158][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:22][1158][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:22][1158][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:22][1158][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:22][1158][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:22][1158][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:22][1158][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:22][1158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:22][1158][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:22][1158][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:22][1158][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:22][1158][INFO][MAIN] Duplicate execution. +[28 10:27:25][1164][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:25][1164][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:25][1164][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:25][1164][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:25][1164][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:25][1164][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:25][1164][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:25][1164][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:25][1164][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:25][1164][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:25][1164][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:25][1164][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:25][1164][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:25][1164][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:25][1164][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:25][1164][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:25][1164][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:25][1164][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:25][1164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:25][1164][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:25][1164][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:25][1164][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:25][1164][INFO][MAIN] Duplicate execution. +[28 10:27:28][1170][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:28][1170][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:28][1170][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:28][1170][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:28][1170][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:28][1170][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:28][1170][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:28][1170][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:28][1170][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:28][1170][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:28][1170][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:28][1170][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:28][1170][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:28][1170][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:28][1170][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:28][1170][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:28][1170][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:28][1170][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:28][1170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:28][1170][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:28][1170][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:28][1170][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:28][1170][INFO][MAIN] Duplicate execution. +[28 10:27:31][1176][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:31][1176][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:31][1176][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:31][1176][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:31][1176][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:31][1176][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:31][1176][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:31][1176][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:31][1176][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:31][1176][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:31][1176][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:31][1176][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:31][1176][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:31][1176][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:31][1176][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:31][1176][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:31][1176][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:31][1176][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:31][1176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:31][1176][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:31][1176][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:31][1176][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:31][1176][INFO][MAIN] Duplicate execution. +[28 10:27:34][1182][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:34][1182][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:34][1182][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:34][1182][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:34][1182][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:34][1182][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:34][1182][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:34][1182][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:34][1182][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:34][1182][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:34][1182][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:34][1182][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:34][1182][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:34][1182][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:34][1182][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:34][1182][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:34][1182][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:34][1182][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:34][1182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:34][1182][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:34][1182][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:34][1182][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:34][1182][INFO][MAIN] Duplicate execution. +[28 10:27:37][1188][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:37][1188][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:37][1188][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:37][1188][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:37][1188][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:37][1188][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:37][1188][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:37][1188][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:37][1188][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:37][1188][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:37][1188][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:37][1188][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:37][1188][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:37][1188][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:37][1188][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:37][1188][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:37][1188][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:37][1188][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:37][1188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:37][1188][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:37][1188][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:37][1188][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:37][1188][INFO][MAIN] Duplicate execution. +[28 10:27:40][1194][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:40][1194][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:40][1194][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:40][1194][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:40][1194][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:40][1194][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:40][1194][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:40][1194][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:40][1194][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:40][1194][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:40][1194][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:40][1194][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:40][1194][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:40][1194][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:40][1194][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:40][1194][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:40][1194][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:40][1194][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:40][1194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:40][1194][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:40][1194][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:40][1194][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:40][1194][INFO][MAIN] Duplicate execution. +[28 10:27:43][1200][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:43][1200][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:43][1200][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:43][1200][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:43][1200][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:43][1200][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:43][1200][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:43][1200][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:43][1200][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:43][1200][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:43][1200][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:43][1200][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:43][1200][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:43][1200][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:43][1200][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:43][1200][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:43][1200][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:43][1200][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:43][1200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:43][1200][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:43][1200][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:43][1200][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:43][1200][INFO][MAIN] Duplicate execution. +[28 10:27:46][1206][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:46][1206][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:46][1206][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:46][1206][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:46][1206][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:46][1206][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:46][1206][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:46][1206][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:46][1206][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:46][1206][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:46][1206][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:46][1206][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:46][1206][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:46][1206][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:46][1206][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:46][1206][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:46][1206][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:46][1206][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:46][1206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:46][1206][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:46][1206][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:46][1206][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:46][1206][INFO][MAIN] Duplicate execution. +[28 10:27:49][1212][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:49][1212][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:49][1212][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:49][1212][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:49][1212][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:49][1212][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:49][1212][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:49][1212][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:49][1212][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:49][1212][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:49][1212][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:49][1212][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:49][1212][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:49][1212][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:49][1212][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:49][1212][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:49][1212][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:49][1212][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:49][1212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:49][1212][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:49][1212][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:49][1212][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:49][1212][INFO][MAIN] Duplicate execution. +[28 10:27:52][1218][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:52][1218][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:52][1218][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:52][1218][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:52][1218][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:52][1218][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:52][1218][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:52][1218][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:52][1218][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:52][1218][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:52][1218][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:52][1218][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:52][1218][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:52][1218][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:52][1218][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:52][1218][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:52][1218][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:52][1218][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:52][1218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:52][1218][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:52][1218][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:52][1218][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:52][1218][INFO][MAIN] Duplicate execution. +[28 10:27:55][1224][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:55][1224][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:55][1224][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:55][1224][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:55][1224][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:55][1224][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:55][1224][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:55][1224][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:55][1224][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:55][1224][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:55][1224][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:55][1224][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:55][1224][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:55][1224][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:55][1224][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:55][1224][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:55][1224][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:55][1224][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:55][1224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:55][1224][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:55][1224][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:55][1224][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:55][1224][INFO][MAIN] Duplicate execution. +[28 10:27:58][1230][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:27:58][1230][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:27:58][1230][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:27:58][1230][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:27:58][1230][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:27:58][1230][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:27:58][1230][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:27:58][1230][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:27:58][1230][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:27:58][1230][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:27:58][1230][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:27:58][1230][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:27:58][1230][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:27:58][1230][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:27:58][1230][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:27:58][1230][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:27:58][1230][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:27:58][1230][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:27:58][1230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:27:58][1230][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:27:58][1230][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:27:58][1230][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:27:58][1230][INFO][MAIN] Duplicate execution. +[28 10:28:01][1236][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:01][1236][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:01][1236][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:01][1236][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:01][1236][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:01][1236][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:01][1236][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:01][1236][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:01][1236][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:01][1236][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:01][1236][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:01][1236][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:01][1236][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:01][1236][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:01][1236][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:01][1236][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:01][1236][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:01][1236][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:01][1236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:01][1236][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:01][1236][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:01][1236][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:01][1236][INFO][MAIN] Duplicate execution. +[28 10:28:04][1242][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:04][1242][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:04][1242][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:04][1242][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:04][1242][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:04][1242][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:04][1242][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:04][1242][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:04][1242][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:04][1242][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:04][1242][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:04][1242][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:04][1242][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:04][1242][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:04][1242][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:04][1242][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:04][1242][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:04][1242][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:04][1242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:04][1242][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:04][1242][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:04][1242][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:04][1242][INFO][MAIN] Duplicate execution. +[28 10:28:07][1248][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:07][1248][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:07][1248][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:07][1248][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:07][1248][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:07][1248][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:07][1248][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:07][1248][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:07][1248][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:07][1248][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:07][1248][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:07][1248][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:07][1248][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:07][1248][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:07][1248][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:07][1248][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:07][1248][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:07][1248][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:07][1248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:07][1248][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:07][1248][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:07][1248][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:07][1248][INFO][MAIN] Duplicate execution. +[28 10:28:10][1254][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:10][1254][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:10][1254][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:10][1254][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:10][1254][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:10][1254][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:10][1254][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:10][1254][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:10][1254][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:10][1254][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:10][1254][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:10][1254][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:10][1254][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:10][1254][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:10][1254][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:10][1254][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:10][1254][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:10][1254][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:10][1254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:10][1254][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:10][1254][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:10][1254][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:10][1254][INFO][MAIN] Duplicate execution. +[28 10:28:13][1260][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:13][1260][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:13][1260][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:13][1260][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:13][1260][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:13][1260][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:13][1260][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:13][1260][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:13][1260][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:13][1260][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:13][1260][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:13][1260][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:13][1260][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:13][1260][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:13][1260][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:13][1260][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:13][1260][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:13][1260][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:13][1260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:13][1260][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:13][1260][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:13][1260][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:13][1260][INFO][MAIN] Duplicate execution. +[28 10:28:16][1266][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:16][1266][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:16][1266][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:16][1266][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:16][1266][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:16][1266][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:16][1266][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:16][1266][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:16][1266][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:16][1266][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:16][1266][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:16][1266][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:16][1266][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:16][1266][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:16][1266][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:16][1266][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:16][1266][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:16][1266][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:16][1266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:16][1266][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:16][1266][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:16][1266][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:16][1266][INFO][MAIN] Duplicate execution. +[28 10:28:19][1272][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:19][1272][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:19][1272][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:19][1272][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:19][1272][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:19][1272][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:19][1272][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:19][1272][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:19][1272][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:19][1272][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:19][1272][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:19][1272][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:19][1272][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:19][1272][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:19][1272][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:19][1272][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:19][1272][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:19][1272][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:19][1272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:19][1272][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:19][1272][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:19][1272][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:19][1272][INFO][MAIN] Duplicate execution. +[28 10:28:22][1278][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:22][1278][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:22][1278][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:22][1278][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:22][1278][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:22][1278][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:22][1278][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:22][1278][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:22][1278][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:22][1278][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:22][1278][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:22][1278][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:22][1278][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:22][1278][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:22][1278][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:22][1278][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:22][1278][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:22][1278][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:22][1278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:22][1278][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:22][1278][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:22][1278][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:22][1278][INFO][MAIN] Duplicate execution. +[28 10:28:25][1284][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:25][1284][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:25][1284][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:25][1284][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:25][1284][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:25][1284][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:25][1284][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:25][1284][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:25][1284][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:25][1284][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:25][1284][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:25][1284][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:25][1284][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:25][1284][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:25][1284][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:25][1284][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:25][1284][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:25][1284][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:25][1284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:25][1284][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:25][1284][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:25][1284][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:25][1284][INFO][MAIN] Duplicate execution. +[28 10:28:28][1290][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:28][1290][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:28][1290][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:28][1290][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:28][1290][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:28][1290][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:28][1290][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:28][1290][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:28][1290][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:28][1290][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:28][1290][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:28][1290][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:28][1290][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:28][1290][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:28][1290][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:28][1290][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:28][1290][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:28][1290][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:28][1290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:28][1290][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:28][1290][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:28][1290][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:28][1290][INFO][MAIN] Duplicate execution. +[28 10:28:31][1296][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:31][1296][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:31][1296][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:31][1296][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:31][1296][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:31][1296][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:31][1296][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:31][1296][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:31][1296][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:31][1296][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:31][1296][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:31][1296][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:31][1296][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:31][1296][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:31][1296][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:31][1296][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:31][1296][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:31][1296][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:31][1296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:31][1296][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:31][1296][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:31][1296][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:31][1296][INFO][MAIN] Duplicate execution. +[28 10:28:34][1302][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:34][1302][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:34][1302][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:34][1302][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:34][1302][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:34][1302][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:34][1302][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:34][1302][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:34][1302][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:34][1302][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:34][1302][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:34][1302][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:34][1302][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:34][1302][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:34][1302][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:34][1302][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:34][1302][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:34][1302][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:34][1302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:34][1302][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:34][1302][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:34][1302][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:34][1302][INFO][MAIN] Duplicate execution. +[28 10:28:37][1308][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:37][1308][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:37][1308][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:37][1308][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:37][1308][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:37][1308][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:37][1308][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:37][1308][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:37][1308][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:37][1308][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:37][1308][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:37][1308][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:37][1308][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:37][1308][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:37][1308][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:37][1308][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:37][1308][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:37][1308][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:37][1308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:37][1308][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:37][1308][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:37][1308][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:37][1308][INFO][MAIN] Duplicate execution. +[28 10:28:40][1314][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:40][1314][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:40][1314][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:40][1314][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:40][1314][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:40][1314][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:40][1314][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:40][1314][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:40][1314][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:40][1314][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:40][1314][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:40][1314][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:40][1314][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:40][1314][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:40][1314][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:40][1314][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:40][1314][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:40][1314][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:40][1314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:40][1314][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:40][1314][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:40][1314][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:40][1314][INFO][MAIN] Duplicate execution. +[28 10:28:43][1320][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:43][1320][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:43][1320][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:43][1320][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:43][1320][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:43][1320][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:43][1320][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:43][1320][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:43][1320][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:43][1320][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:43][1320][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:43][1320][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:43][1320][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:43][1320][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:43][1320][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:43][1320][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:43][1320][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:43][1320][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:43][1320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:43][1320][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:43][1320][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:43][1320][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:43][1320][INFO][MAIN] Duplicate execution. +[28 10:28:46][1326][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:46][1326][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:46][1326][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:46][1326][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:46][1326][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:46][1326][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:46][1326][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:46][1326][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:46][1326][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:46][1326][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:46][1326][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:46][1326][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:46][1326][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:46][1326][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:46][1326][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:46][1326][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:46][1326][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:46][1326][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:46][1326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:46][1326][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:46][1326][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:46][1326][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:46][1326][INFO][MAIN] Duplicate execution. +[28 10:28:49][1332][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:49][1332][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:49][1332][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:49][1332][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:49][1332][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:49][1332][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:49][1332][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:49][1332][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:49][1332][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:49][1332][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:49][1332][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:49][1332][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:49][1332][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:49][1332][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:49][1332][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:49][1332][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:49][1332][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:49][1332][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:49][1332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:49][1332][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:49][1332][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:49][1332][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:49][1332][INFO][MAIN] Duplicate execution. +[28 10:28:52][1338][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:52][1338][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:52][1338][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:52][1338][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:52][1338][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:52][1338][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:52][1338][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:52][1338][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:52][1338][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:52][1338][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:52][1338][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:52][1338][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:52][1338][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:52][1338][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:52][1338][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:52][1338][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:52][1338][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:52][1338][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:52][1338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:52][1338][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:52][1338][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:52][1338][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:52][1338][INFO][MAIN] Duplicate execution. +[28 10:28:55][1344][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:55][1344][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:55][1344][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:55][1344][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:55][1344][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:55][1344][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:55][1344][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:55][1344][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:55][1344][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:55][1344][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:55][1344][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:55][1344][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:55][1344][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:55][1344][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:55][1344][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:55][1344][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:55][1344][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:55][1344][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:55][1344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:55][1344][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:55][1344][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:55][1344][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:55][1344][INFO][MAIN] Duplicate execution. +[28 10:28:58][1350][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:28:58][1350][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:28:58][1350][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:28:58][1350][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:28:58][1350][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:28:58][1350][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:28:58][1350][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:28:58][1350][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:28:58][1350][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:28:58][1350][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:28:58][1350][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:28:58][1350][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:28:58][1350][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:28:58][1350][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:28:58][1350][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:28:58][1350][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:28:58][1350][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:28:58][1350][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:28:58][1350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:28:58][1350][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:28:58][1350][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:28:58][1350][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:28:58][1350][INFO][MAIN] Duplicate execution. +[28 10:29:01][1356][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:01][1356][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:01][1356][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:01][1356][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:01][1356][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:01][1356][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:01][1356][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:01][1356][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:01][1356][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:01][1356][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:01][1356][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:01][1356][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:01][1356][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:01][1356][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:01][1356][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:01][1356][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:01][1356][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:01][1356][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:01][1356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:01][1356][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:01][1356][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:01][1356][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:01][1356][INFO][MAIN] Duplicate execution. +[28 10:29:04][1362][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:04][1362][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:04][1362][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:04][1362][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:04][1362][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:04][1362][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:04][1362][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:04][1362][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:04][1362][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:04][1362][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:04][1362][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:04][1362][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:04][1362][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:04][1362][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:04][1362][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:04][1362][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:04][1362][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:04][1362][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:04][1362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:04][1362][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:04][1362][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:04][1362][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:04][1362][INFO][MAIN] Duplicate execution. +[28 10:29:07][1368][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:07][1368][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:07][1368][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:07][1368][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:07][1368][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:07][1368][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:07][1368][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:07][1368][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:07][1368][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:07][1368][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:07][1368][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:07][1368][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:07][1368][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:07][1368][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:07][1368][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:07][1368][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:07][1368][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:07][1368][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:07][1368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:07][1368][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:07][1368][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:07][1368][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:07][1368][INFO][MAIN] Duplicate execution. +[28 10:29:10][1374][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:10][1374][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:10][1374][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:10][1374][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:10][1374][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:10][1374][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:10][1374][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:10][1374][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:10][1374][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:10][1374][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:10][1374][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:10][1374][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:10][1374][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:10][1374][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:10][1374][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:10][1374][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:10][1374][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:10][1374][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:10][1374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:10][1374][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:10][1374][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:10][1374][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:10][1374][INFO][MAIN] Duplicate execution. +[28 10:29:13][1380][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:13][1380][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:13][1380][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:13][1380][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:13][1380][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:13][1380][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:13][1380][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:13][1380][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:13][1380][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:13][1380][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:13][1380][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:13][1380][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:13][1380][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:13][1380][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:13][1380][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:13][1380][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:13][1380][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:13][1380][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:13][1380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:13][1380][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:13][1380][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:13][1380][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:13][1380][INFO][MAIN] Duplicate execution. +[28 10:29:16][1386][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:16][1386][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:16][1386][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:16][1386][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:16][1386][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:16][1386][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:16][1386][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:16][1386][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:16][1386][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:16][1386][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:16][1386][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:16][1386][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:16][1386][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:16][1386][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:16][1386][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:16][1386][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:16][1386][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:16][1386][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:16][1386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:16][1386][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:16][1386][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:16][1386][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:16][1386][INFO][MAIN] Duplicate execution. +[28 10:29:19][1392][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:19][1392][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:19][1392][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:19][1392][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:19][1392][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:19][1392][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:19][1392][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:19][1392][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:19][1392][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:19][1392][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:19][1392][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:19][1392][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:19][1392][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:19][1392][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:19][1392][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:19][1392][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:19][1392][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:19][1392][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:19][1392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:19][1392][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:19][1392][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:19][1392][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:19][1392][INFO][MAIN] Duplicate execution. +[28 10:29:22][1398][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:22][1398][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:22][1398][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:22][1398][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:22][1398][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:22][1398][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:22][1398][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:22][1398][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:22][1398][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:22][1398][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:22][1398][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:22][1398][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:22][1398][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:22][1398][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:22][1398][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:22][1398][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:22][1398][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:22][1398][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:22][1398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:22][1398][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:22][1398][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:22][1398][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:22][1398][INFO][MAIN] Duplicate execution. +[28 10:29:25][1404][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:25][1404][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:25][1404][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:25][1404][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:25][1404][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:25][1404][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:25][1404][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:25][1404][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:25][1404][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:25][1404][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:25][1404][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:25][1404][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:25][1404][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:25][1404][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:25][1404][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:25][1404][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:25][1404][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:25][1404][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:25][1404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:25][1404][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:25][1404][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:25][1404][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:25][1404][INFO][MAIN] Duplicate execution. +[28 10:29:28][1410][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:28][1410][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:28][1410][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:28][1410][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:28][1410][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:28][1410][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:28][1410][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:28][1410][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:28][1410][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:28][1410][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:28][1410][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:28][1410][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:28][1410][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:28][1410][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:28][1410][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:28][1410][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:28][1410][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:28][1410][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:28][1410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:28][1410][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:28][1410][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:28][1410][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:28][1410][INFO][MAIN] Duplicate execution. +[28 10:29:31][1416][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:31][1416][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:31][1416][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:31][1416][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:31][1416][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:31][1416][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:31][1416][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:31][1416][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:31][1416][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:31][1416][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:31][1416][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:31][1416][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:31][1416][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:31][1416][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:31][1416][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:31][1416][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:31][1416][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:31][1416][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:31][1416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:31][1416][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:31][1416][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:31][1416][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:31][1416][INFO][MAIN] Duplicate execution. +[28 10:29:34][1422][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:34][1422][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:34][1422][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:34][1422][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:34][1422][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:34][1422][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:34][1422][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:34][1422][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:34][1422][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:34][1422][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:34][1422][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:34][1422][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:34][1422][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:34][1422][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:34][1422][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:34][1422][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:34][1422][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:34][1422][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:34][1422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:34][1422][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:34][1422][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:34][1422][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:34][1422][INFO][MAIN] Duplicate execution. +[28 10:29:37][1428][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:37][1428][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:37][1428][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:37][1428][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:37][1428][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:37][1428][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:37][1428][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:37][1428][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:37][1428][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:37][1428][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:37][1428][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:37][1428][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:37][1428][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:37][1428][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:37][1428][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:37][1428][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:37][1428][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:37][1428][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:37][1428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:37][1428][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:37][1428][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:37][1428][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:37][1428][INFO][MAIN] Duplicate execution. +[28 10:29:40][1434][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:40][1434][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:40][1434][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:40][1434][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:40][1434][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:40][1434][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:40][1434][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:40][1434][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:40][1434][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:40][1434][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:40][1434][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:40][1434][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:40][1434][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:40][1434][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:40][1434][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:40][1434][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:40][1434][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:40][1434][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:40][1434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:40][1434][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:40][1434][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:40][1434][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:40][1434][INFO][MAIN] Duplicate execution. +[28 10:29:43][1440][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:43][1440][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:43][1440][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:43][1440][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:43][1440][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:43][1440][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:43][1440][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:43][1440][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:43][1440][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:43][1440][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:43][1440][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:43][1440][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:43][1440][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:43][1440][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:43][1440][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:43][1440][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:43][1440][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:43][1440][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:43][1440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:43][1440][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:43][1440][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:43][1440][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:43][1440][INFO][MAIN] Duplicate execution. +[28 10:29:46][1446][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:46][1446][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:46][1446][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:46][1446][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:46][1446][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:46][1446][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:46][1446][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:46][1446][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:46][1446][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:46][1446][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:46][1446][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:46][1446][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:46][1446][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:46][1446][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:46][1446][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:46][1446][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:46][1446][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:46][1446][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:46][1446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:46][1446][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:46][1446][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:46][1446][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:46][1446][INFO][MAIN] Duplicate execution. +[28 10:29:49][1452][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:49][1452][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:49][1452][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:49][1452][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:49][1452][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:49][1452][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:49][1452][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:49][1452][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:49][1452][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:49][1452][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:49][1452][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:49][1452][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:49][1452][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:49][1452][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:49][1452][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:49][1452][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:49][1452][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:49][1452][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:49][1452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:49][1452][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:49][1452][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:49][1452][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:49][1452][INFO][MAIN] Duplicate execution. +[28 10:29:52][1458][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:52][1458][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:52][1458][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:52][1458][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:52][1458][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:52][1458][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:52][1458][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:52][1458][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:52][1458][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:52][1458][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:52][1458][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:52][1458][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:52][1458][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:52][1458][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:52][1458][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:52][1458][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:52][1458][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:52][1458][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:52][1458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:52][1458][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:52][1458][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:52][1458][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:52][1458][INFO][MAIN] Duplicate execution. +[28 10:29:55][1464][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:55][1464][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:55][1464][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:55][1464][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:55][1464][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:55][1464][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:55][1464][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:55][1464][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:55][1464][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:55][1464][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:55][1464][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:55][1464][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:55][1464][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:55][1464][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:55][1464][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:55][1464][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:55][1464][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:55][1464][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:55][1464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:55][1464][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:55][1464][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:55][1464][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:55][1464][INFO][MAIN] Duplicate execution. +[28 10:29:58][1470][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:29:58][1470][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:29:58][1470][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:29:58][1470][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:29:58][1470][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:29:58][1470][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:29:58][1470][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:29:58][1470][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:29:58][1470][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:29:58][1470][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:29:58][1470][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:29:58][1470][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:29:58][1470][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:29:58][1470][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:29:58][1470][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:29:58][1470][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:29:58][1470][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:29:58][1470][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:29:58][1470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:29:58][1470][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:29:58][1470][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:29:58][1470][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:29:58][1470][INFO][MAIN] Duplicate execution. +[28 10:30:01][1476][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:01][1476][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:01][1476][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:01][1476][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:01][1476][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:01][1476][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:01][1476][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:01][1476][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:01][1476][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:01][1476][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:01][1476][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:01][1476][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:01][1476][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:01][1476][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:01][1476][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:01][1476][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:01][1476][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:01][1476][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:01][1476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:01][1476][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:01][1476][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:01][1476][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:01][1476][INFO][MAIN] Duplicate execution. +[28 10:30:04][1482][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:04][1482][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:04][1482][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:04][1482][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:04][1482][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:04][1482][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:04][1482][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:04][1482][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:04][1482][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:04][1482][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:04][1482][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:04][1482][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:04][1482][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:04][1482][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:04][1482][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:04][1482][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:04][1482][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:04][1482][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:04][1482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:04][1482][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:04][1482][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:04][1482][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:04][1482][INFO][MAIN] Duplicate execution. +[28 10:30:07][1488][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:07][1488][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:07][1488][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:07][1488][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:07][1488][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:07][1488][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:07][1488][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:07][1488][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:07][1488][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:07][1488][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:07][1488][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:07][1488][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:07][1488][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:07][1488][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:07][1488][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:07][1488][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:07][1488][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:07][1488][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:07][1488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:07][1488][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:07][1488][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:07][1488][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:07][1488][INFO][MAIN] Duplicate execution. +[28 10:30:10][1494][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:10][1494][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:10][1494][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:10][1494][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:10][1494][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:10][1494][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:10][1494][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:10][1494][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:10][1494][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:10][1494][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:10][1494][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:10][1494][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:10][1494][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:10][1494][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:10][1494][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:10][1494][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:10][1494][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:10][1494][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:10][1494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:10][1494][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:10][1494][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:10][1494][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:10][1494][INFO][MAIN] Duplicate execution. +[28 10:30:13][1500][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:13][1500][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:13][1500][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:13][1500][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:13][1500][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:13][1500][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:13][1500][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:13][1500][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:13][1500][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:13][1500][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:13][1500][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:13][1500][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:13][1500][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:13][1500][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:13][1500][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:13][1500][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:13][1500][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:13][1500][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:13][1500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:13][1500][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:13][1500][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:13][1500][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:13][1500][INFO][MAIN] Duplicate execution. +[28 10:30:16][1506][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:16][1506][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:16][1506][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:16][1506][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:16][1506][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:16][1506][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:16][1506][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:16][1506][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:16][1506][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:16][1506][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:16][1506][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:16][1506][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:16][1506][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:16][1506][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:16][1506][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:16][1506][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:16][1506][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:16][1506][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:16][1506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:16][1506][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:16][1506][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:16][1506][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:16][1506][INFO][MAIN] Duplicate execution. +[28 10:30:19][1512][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:19][1512][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:19][1512][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:19][1512][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:19][1512][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:19][1512][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:19][1512][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:19][1512][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:19][1512][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:19][1512][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:19][1512][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:19][1512][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:19][1512][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:19][1512][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:19][1512][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:19][1512][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:19][1512][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:19][1512][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:19][1512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:19][1512][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:19][1512][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:19][1512][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:19][1512][INFO][MAIN] Duplicate execution. +[28 10:30:22][1518][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:22][1518][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:22][1518][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:22][1518][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:22][1518][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:22][1518][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:22][1518][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:22][1518][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:22][1518][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:22][1518][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:22][1518][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:22][1518][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:22][1518][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:22][1518][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:22][1518][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:22][1518][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:22][1518][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:22][1518][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:22][1518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:22][1518][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:22][1518][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:22][1518][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:22][1518][INFO][MAIN] Duplicate execution. +[28 10:30:25][1524][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:25][1524][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:25][1524][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:25][1524][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:25][1524][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:25][1524][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:25][1524][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:25][1524][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:25][1524][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:25][1524][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:25][1524][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:25][1524][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:25][1524][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:25][1524][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:25][1524][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:25][1524][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:25][1524][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:25][1524][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:25][1524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:25][1524][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:25][1524][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:25][1524][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:25][1524][INFO][MAIN] Duplicate execution. +[28 10:30:28][1530][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:28][1530][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:28][1530][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:28][1530][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:28][1530][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:28][1530][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:28][1530][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:28][1530][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:28][1530][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:28][1530][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:28][1530][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:28][1530][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:28][1530][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:28][1530][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:28][1530][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:28][1530][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:28][1530][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:28][1530][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:28][1530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:28][1530][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:28][1530][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:28][1530][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:28][1530][INFO][MAIN] Duplicate execution. +[28 10:30:31][1536][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:31][1536][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:31][1536][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:31][1536][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:31][1536][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:31][1536][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:31][1536][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:31][1536][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:31][1536][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:31][1536][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:31][1536][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:31][1536][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:31][1536][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:31][1536][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:31][1536][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:31][1536][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:31][1536][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:31][1536][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:31][1536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:31][1536][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:31][1536][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:31][1536][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:31][1536][INFO][MAIN] Duplicate execution. +[28 10:30:34][1542][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:34][1542][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:34][1542][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:34][1542][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:34][1542][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:34][1542][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:34][1542][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:34][1542][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:34][1542][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:34][1542][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:34][1542][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:34][1542][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:34][1542][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:34][1542][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:34][1542][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:34][1542][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:34][1542][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:34][1542][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:34][1542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:34][1542][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:34][1542][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:34][1542][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:34][1542][INFO][MAIN] Duplicate execution. +[28 10:30:37][1548][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:37][1548][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:37][1548][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:37][1548][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:37][1548][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:37][1548][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:37][1548][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:37][1548][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:37][1548][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:37][1548][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:37][1548][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:37][1548][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:37][1548][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:37][1548][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:37][1548][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:37][1548][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:37][1548][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:37][1548][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:37][1548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:37][1548][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:37][1548][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:37][1548][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:37][1548][INFO][MAIN] Duplicate execution. +[28 10:30:40][1554][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:40][1554][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:40][1554][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:40][1554][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:40][1554][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:40][1554][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:40][1554][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:40][1554][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:40][1554][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:40][1554][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:40][1554][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:40][1554][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:40][1554][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:40][1554][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:40][1554][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:40][1554][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:40][1554][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:40][1554][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:40][1554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:40][1554][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:40][1554][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:40][1554][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:40][1554][INFO][MAIN] Duplicate execution. +[28 10:30:43][1560][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:43][1560][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:43][1560][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:43][1560][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:43][1560][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:43][1560][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:43][1560][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:43][1560][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:43][1560][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:43][1560][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:43][1560][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:43][1560][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:43][1560][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:43][1560][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:43][1560][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:43][1560][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:43][1560][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:43][1560][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:43][1560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:43][1560][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:43][1560][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:43][1560][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:43][1560][INFO][MAIN] Duplicate execution. +[28 10:30:46][1566][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:46][1566][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:46][1566][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:46][1566][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:46][1566][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:46][1566][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:46][1566][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:46][1566][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:46][1566][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:46][1566][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:46][1566][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:46][1566][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:46][1566][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:46][1566][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:46][1566][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:46][1566][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:46][1566][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:46][1566][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:46][1566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:46][1566][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:46][1566][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:46][1566][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:46][1566][INFO][MAIN] Duplicate execution. +[28 10:30:49][1572][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:49][1572][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:49][1572][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:49][1572][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:49][1572][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:49][1572][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:49][1572][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:49][1572][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:49][1572][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:49][1572][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:49][1572][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:49][1572][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:49][1572][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:49][1572][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:49][1572][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:49][1572][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:49][1572][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:49][1572][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:49][1572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:49][1572][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:49][1572][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:49][1572][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:49][1572][INFO][MAIN] Duplicate execution. +[28 10:30:52][1578][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:52][1578][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:52][1578][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:52][1578][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:52][1578][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:52][1578][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:52][1578][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:52][1578][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:52][1578][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:52][1578][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:52][1578][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:52][1578][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:52][1578][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:52][1578][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:52][1578][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:52][1578][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:52][1578][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:52][1578][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:52][1578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:52][1578][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:52][1578][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:52][1578][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:52][1578][INFO][MAIN] Duplicate execution. +[28 10:30:55][1584][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:55][1584][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:55][1584][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:55][1584][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:55][1584][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:55][1584][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:55][1584][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:55][1584][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:55][1584][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:55][1584][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:55][1584][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:55][1584][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:55][1584][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:55][1584][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:55][1584][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:55][1584][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:55][1584][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:55][1584][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:55][1584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:55][1584][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:55][1584][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:55][1584][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:55][1584][INFO][MAIN] Duplicate execution. +[28 10:30:58][1590][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:30:58][1590][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:30:58][1590][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:30:58][1590][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:30:58][1590][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:30:58][1590][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:30:58][1590][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:30:58][1590][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:30:58][1590][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:30:58][1590][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:30:58][1590][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:30:58][1590][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:30:58][1590][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:30:58][1590][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:30:58][1590][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:30:58][1590][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:30:58][1590][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:30:58][1590][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:30:58][1590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:30:58][1590][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:30:58][1590][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:30:58][1590][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:30:58][1590][INFO][MAIN] Duplicate execution. +[28 10:31:01][1596][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:01][1596][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:01][1596][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:01][1596][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:01][1596][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:01][1596][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:01][1596][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:01][1596][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:01][1596][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:01][1596][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:01][1596][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:01][1596][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:01][1596][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:01][1596][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:01][1596][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:01][1596][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:01][1596][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:01][1596][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:01][1596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:01][1596][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:01][1596][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:01][1596][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:01][1596][INFO][MAIN] Duplicate execution. +[28 10:31:04][1602][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:04][1602][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:04][1602][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:04][1602][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:04][1602][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:04][1602][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:04][1602][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:04][1602][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:04][1602][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:04][1602][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:04][1602][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:04][1602][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:04][1602][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:04][1602][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:04][1602][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:04][1602][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:04][1602][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:04][1602][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:04][1602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:04][1602][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:04][1602][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:04][1602][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:04][1602][INFO][MAIN] Duplicate execution. +[28 10:31:07][1608][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:07][1608][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:07][1608][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:07][1608][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:07][1608][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:07][1608][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:07][1608][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:07][1608][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:07][1608][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:07][1608][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:07][1608][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:07][1608][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:07][1608][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:07][1608][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:07][1608][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:07][1608][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:07][1608][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:07][1608][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:07][1608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:07][1608][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:07][1608][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:07][1608][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:07][1608][INFO][MAIN] Duplicate execution. +[28 10:31:10][1614][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:10][1614][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:10][1614][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:10][1614][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:10][1614][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:10][1614][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:10][1614][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:10][1614][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:10][1614][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:10][1614][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:10][1614][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:10][1614][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:10][1614][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:10][1614][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:10][1614][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:10][1614][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:10][1614][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:10][1614][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:10][1614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:10][1614][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:10][1614][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:10][1614][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:10][1614][INFO][MAIN] Duplicate execution. +[28 10:31:13][1620][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:13][1620][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:13][1620][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:13][1620][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:13][1620][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:13][1620][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:13][1620][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:13][1620][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:13][1620][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:13][1620][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:13][1620][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:13][1620][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:13][1620][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:13][1620][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:13][1620][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:13][1620][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:13][1620][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:13][1620][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:13][1620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:13][1620][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:13][1620][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:13][1620][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:13][1620][INFO][MAIN] Duplicate execution. +[28 10:31:16][1626][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:16][1626][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:16][1626][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:16][1626][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:16][1626][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:16][1626][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:16][1626][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:16][1626][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:16][1626][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:16][1626][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:16][1626][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:16][1626][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:16][1626][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:16][1626][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:16][1626][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:16][1626][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:16][1626][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:16][1626][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:16][1626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:16][1626][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:16][1626][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:16][1626][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:16][1626][INFO][MAIN] Duplicate execution. +[28 10:31:19][1632][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:19][1632][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:19][1632][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:19][1632][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:19][1632][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:19][1632][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:19][1632][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:19][1632][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:19][1632][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:19][1632][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:19][1632][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:19][1632][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:19][1632][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:19][1632][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:19][1632][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:19][1632][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:19][1632][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:19][1632][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:19][1632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:19][1632][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:19][1632][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:19][1632][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:19][1632][INFO][MAIN] Duplicate execution. +[28 10:31:22][1638][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:22][1638][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:22][1638][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:22][1638][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:22][1638][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:22][1638][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:22][1638][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:22][1638][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:22][1638][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:22][1638][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:22][1638][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:22][1638][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:22][1638][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:22][1638][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:22][1638][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:22][1638][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:22][1638][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:22][1638][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:22][1638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:22][1638][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:22][1638][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:22][1638][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:22][1638][INFO][MAIN] Duplicate execution. +[28 10:31:25][1644][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:25][1644][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:25][1644][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:25][1644][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:25][1644][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:25][1644][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:25][1644][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:25][1644][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:25][1644][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:25][1644][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:25][1644][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:25][1644][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:25][1644][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:25][1644][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:25][1644][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:25][1644][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:25][1644][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:25][1644][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:25][1644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:25][1644][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:25][1644][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:25][1644][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:25][1644][INFO][MAIN] Duplicate execution. +[28 10:31:28][1650][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:28][1650][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:28][1650][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:28][1650][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:28][1650][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:28][1650][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:28][1650][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:28][1650][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:28][1650][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:28][1650][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:28][1650][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:28][1650][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:28][1650][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:28][1650][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:28][1650][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:28][1650][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:28][1650][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:28][1650][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:28][1650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:28][1650][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:28][1650][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:28][1650][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:28][1650][INFO][MAIN] Duplicate execution. +[28 10:31:31][1656][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:31][1656][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:31][1656][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:31][1656][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:31][1656][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:31][1656][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:31][1656][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:31][1656][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:31][1656][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:31][1656][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:31][1656][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:31][1656][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:31][1656][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:31][1656][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:31][1656][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:31][1656][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:31][1656][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:31][1656][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:31][1656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:31][1656][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:31][1656][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:31][1656][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:31][1656][INFO][MAIN] Duplicate execution. +[28 10:31:34][1662][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:34][1662][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:34][1662][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:34][1662][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:34][1662][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:34][1662][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:34][1662][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:34][1662][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:34][1662][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:34][1662][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:34][1662][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:34][1662][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:34][1662][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:34][1662][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:34][1662][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:34][1662][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:34][1662][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:34][1662][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:34][1662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:34][1662][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:34][1662][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:34][1662][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:34][1662][INFO][MAIN] Duplicate execution. +[28 10:31:37][1668][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:37][1668][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:37][1668][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:37][1668][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:37][1668][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:37][1668][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:37][1668][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:37][1668][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:37][1668][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:37][1668][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:37][1668][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:37][1668][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:37][1668][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:37][1668][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:37][1668][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:37][1668][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:37][1668][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:37][1668][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:37][1668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:37][1668][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:37][1668][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:37][1668][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:37][1668][INFO][MAIN] Duplicate execution. +[28 10:31:40][1674][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:40][1674][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:40][1674][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:40][1674][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:40][1674][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:40][1674][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:40][1674][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:40][1674][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:40][1674][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:40][1674][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:40][1674][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:40][1674][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:40][1674][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:40][1674][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:40][1674][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:40][1674][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:40][1674][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:40][1674][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:40][1674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:40][1674][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:40][1674][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:40][1674][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:40][1674][INFO][MAIN] Duplicate execution. +[28 10:31:43][1680][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:43][1680][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:43][1680][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:43][1680][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:43][1680][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:43][1680][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:43][1680][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:43][1680][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:43][1680][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:43][1680][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:43][1680][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:43][1680][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:43][1680][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:43][1680][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:43][1680][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:43][1680][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:43][1680][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:43][1680][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:43][1680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:43][1680][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:43][1680][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:43][1680][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:43][1680][INFO][MAIN] Duplicate execution. +[28 10:31:46][1686][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:46][1686][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:46][1686][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:46][1686][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:46][1686][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:46][1686][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:46][1686][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:46][1686][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:46][1686][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:46][1686][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:46][1686][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:46][1686][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:46][1686][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:46][1686][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:46][1686][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:46][1686][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:46][1686][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:46][1686][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:46][1686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:46][1686][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:46][1686][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:46][1686][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:46][1686][INFO][MAIN] Duplicate execution. +[28 10:31:49][1692][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:49][1692][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:49][1692][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:49][1692][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:49][1692][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:49][1692][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:49][1692][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:49][1692][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:49][1692][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:49][1692][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:49][1692][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:49][1692][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:49][1692][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:49][1692][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:49][1692][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:49][1692][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:49][1692][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:49][1692][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:49][1692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:49][1692][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:49][1692][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:49][1692][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:49][1692][INFO][MAIN] Duplicate execution. +[28 10:31:52][1698][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:52][1698][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:52][1698][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:52][1698][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:52][1698][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:52][1698][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:52][1698][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:52][1698][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:52][1698][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:52][1698][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:52][1698][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:52][1698][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:52][1698][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:52][1698][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:52][1698][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:52][1698][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:52][1698][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:52][1698][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:52][1698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:52][1698][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:52][1698][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:52][1698][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:52][1698][INFO][MAIN] Duplicate execution. +[28 10:31:55][1704][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:55][1704][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:55][1704][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:55][1704][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:55][1704][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:55][1704][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:55][1704][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:55][1704][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:55][1704][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:55][1704][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:55][1704][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:55][1704][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:55][1704][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:55][1704][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:55][1704][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:55][1704][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:55][1704][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:55][1704][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:55][1704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:55][1704][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:55][1704][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:55][1704][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:55][1704][INFO][MAIN] Duplicate execution. +[28 10:31:58][1710][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:31:58][1710][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:31:58][1710][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:31:58][1710][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:31:58][1710][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:31:58][1710][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:31:58][1710][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:31:58][1710][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:31:58][1710][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:31:58][1710][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:31:58][1710][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:31:58][1710][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:31:58][1710][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:31:58][1710][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:31:58][1710][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:31:58][1710][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:31:58][1710][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:31:58][1710][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:31:58][1710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:31:58][1710][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:31:58][1710][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:31:58][1710][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:31:58][1710][INFO][MAIN] Duplicate execution. +[28 10:32:01][1716][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:01][1716][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:01][1716][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:01][1716][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:01][1716][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:01][1716][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:01][1716][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:01][1716][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:01][1716][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:01][1716][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:01][1716][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:01][1716][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:01][1716][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:01][1716][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:01][1716][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:01][1716][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:01][1716][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:01][1716][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:01][1716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:01][1716][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:01][1716][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:01][1716][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:01][1716][INFO][MAIN] Duplicate execution. +[28 10:32:04][1722][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:04][1722][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:04][1722][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:04][1722][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:04][1722][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:04][1722][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:04][1722][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:04][1722][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:04][1722][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:04][1722][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:04][1722][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:04][1722][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:04][1722][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:04][1722][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:04][1722][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:04][1722][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:04][1722][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:04][1722][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:04][1722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:04][1722][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:04][1722][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:04][1722][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:04][1722][INFO][MAIN] Duplicate execution. +[28 10:32:07][1728][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:07][1728][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:07][1728][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:07][1728][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:07][1728][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:07][1728][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:07][1728][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:07][1728][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:07][1728][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:07][1728][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:07][1728][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:07][1728][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:07][1728][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:07][1728][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:07][1728][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:07][1728][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:07][1728][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:07][1728][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:07][1728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:07][1728][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:07][1728][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:07][1728][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:07][1728][INFO][MAIN] Duplicate execution. +[28 10:32:10][1734][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:10][1734][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:10][1734][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:10][1734][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:10][1734][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:10][1734][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:10][1734][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:10][1734][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:10][1734][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:10][1734][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:10][1734][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:10][1734][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:10][1734][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:10][1734][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:10][1734][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:10][1734][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:10][1734][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:10][1734][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:10][1734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:10][1734][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:10][1734][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:10][1734][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:10][1734][INFO][MAIN] Duplicate execution. +[28 10:32:13][1740][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:13][1740][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:13][1740][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:13][1740][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:13][1740][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:13][1740][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:13][1740][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:13][1740][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:13][1740][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:13][1740][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:13][1740][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:13][1740][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:13][1740][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:13][1740][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:13][1740][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:13][1740][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:13][1740][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:13][1740][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:13][1740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:13][1740][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:13][1740][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:13][1740][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:13][1740][INFO][MAIN] Duplicate execution. +[28 10:32:16][1746][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:16][1746][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:16][1746][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:16][1746][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:16][1746][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:16][1746][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:16][1746][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:16][1746][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:16][1746][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:16][1746][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:16][1746][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:16][1746][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:16][1746][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:16][1746][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:16][1746][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:16][1746][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:16][1746][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:16][1746][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:16][1746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:16][1746][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:16][1746][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:16][1746][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:16][1746][INFO][MAIN] Duplicate execution. +[28 10:32:19][1752][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:19][1752][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:19][1752][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:19][1752][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:19][1752][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:19][1752][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:19][1752][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:19][1752][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:19][1752][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:19][1752][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:19][1752][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:19][1752][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:19][1752][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:19][1752][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:19][1752][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:19][1752][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:19][1752][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:19][1752][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:19][1752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:19][1752][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:19][1752][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:19][1752][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:19][1752][INFO][MAIN] Duplicate execution. +[28 10:32:22][1758][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:22][1758][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:22][1758][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:22][1758][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:22][1758][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:22][1758][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:22][1758][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:22][1758][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:22][1758][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:22][1758][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:22][1758][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:22][1758][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:22][1758][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:22][1758][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:22][1758][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:22][1758][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:22][1758][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:22][1758][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:22][1758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:22][1758][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:22][1758][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:22][1758][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:22][1758][INFO][MAIN] Duplicate execution. +[28 10:32:25][1764][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:25][1764][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:25][1764][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:25][1764][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:25][1764][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:25][1764][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:25][1764][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:25][1764][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:25][1764][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:25][1764][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:25][1764][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:25][1764][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:25][1764][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:25][1764][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:25][1764][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:25][1764][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:25][1764][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:25][1764][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:25][1764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:25][1764][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:25][1764][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:25][1764][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:25][1764][INFO][MAIN] Duplicate execution. +[28 10:32:28][1770][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:28][1770][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:28][1770][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:28][1770][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:28][1770][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:28][1770][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:28][1770][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:28][1770][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:28][1770][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:28][1770][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:28][1770][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:28][1770][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:28][1770][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:28][1770][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:28][1770][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:28][1770][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:28][1770][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:28][1770][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:28][1770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:28][1770][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:28][1770][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:28][1770][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:28][1770][INFO][MAIN] Duplicate execution. +[28 10:32:31][1776][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:31][1776][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:31][1776][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:31][1776][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:31][1776][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:31][1776][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:31][1776][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:31][1776][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:31][1776][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:31][1776][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:31][1776][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:31][1776][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:31][1776][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:31][1776][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:31][1776][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:31][1776][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:31][1776][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:31][1776][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:31][1776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:31][1776][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:31][1776][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:31][1776][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:31][1776][INFO][MAIN] Duplicate execution. +[28 10:32:34][1782][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:34][1782][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:34][1782][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:34][1782][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:34][1782][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:34][1782][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:34][1782][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:34][1782][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:34][1782][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:34][1782][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:34][1782][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:34][1782][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:34][1782][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:34][1782][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:34][1782][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:34][1782][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:34][1782][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:34][1782][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:34][1782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:34][1782][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:34][1782][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:34][1782][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:34][1782][INFO][MAIN] Duplicate execution. +[28 10:32:37][1788][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:37][1788][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:37][1788][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:37][1788][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:37][1788][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:37][1788][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:37][1788][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:37][1788][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:37][1788][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:37][1788][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:37][1788][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:37][1788][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:37][1788][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:37][1788][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:37][1788][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:37][1788][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:37][1788][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:37][1788][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:37][1788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:37][1788][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:37][1788][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:37][1788][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:37][1788][INFO][MAIN] Duplicate execution. +[28 10:32:40][1794][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:40][1794][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:40][1794][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:40][1794][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:40][1794][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:40][1794][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:40][1794][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:40][1794][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:40][1794][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:40][1794][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:40][1794][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:40][1794][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:40][1794][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:40][1794][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:40][1794][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:40][1794][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:40][1794][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:40][1794][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:40][1794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:40][1794][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:40][1794][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:40][1794][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:40][1794][INFO][MAIN] Duplicate execution. +[28 10:32:43][1800][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:43][1800][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:43][1800][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:43][1800][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:43][1800][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:43][1800][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:43][1800][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:43][1800][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:43][1800][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:43][1800][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:43][1800][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:43][1800][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:43][1800][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:43][1800][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:43][1800][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:43][1800][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:43][1800][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:43][1800][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:43][1800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:43][1800][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:43][1800][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:43][1800][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:43][1800][INFO][MAIN] Duplicate execution. +[28 10:32:46][1806][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:46][1806][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:46][1806][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:46][1806][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:46][1806][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:46][1806][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:46][1806][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:46][1806][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:46][1806][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:46][1806][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:46][1806][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:46][1806][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:46][1806][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:46][1806][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:46][1806][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:46][1806][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:46][1806][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:46][1806][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:46][1806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:46][1806][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:46][1806][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:46][1806][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:46][1806][INFO][MAIN] Duplicate execution. +[28 10:32:49][1812][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:49][1812][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:49][1812][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:49][1812][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:49][1812][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:49][1812][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:49][1812][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:49][1812][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:49][1812][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:49][1812][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:49][1812][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:49][1812][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:49][1812][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:49][1812][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:49][1812][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:49][1812][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:49][1812][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:49][1812][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:49][1812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:49][1812][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:49][1812][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:49][1812][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:49][1812][INFO][MAIN] Duplicate execution. +[28 10:32:52][1818][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:52][1818][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:52][1818][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:52][1818][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:52][1818][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:52][1818][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:52][1818][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:52][1818][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:52][1818][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:52][1818][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:52][1818][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:52][1818][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:52][1818][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:52][1818][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:52][1818][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:52][1818][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:52][1818][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:52][1818][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:52][1818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:52][1818][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:52][1818][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:52][1818][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:52][1818][INFO][MAIN] Duplicate execution. +[28 10:32:55][1824][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:55][1824][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:55][1824][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:55][1824][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:55][1824][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:55][1824][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:55][1824][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:55][1824][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:55][1824][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:55][1824][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:55][1824][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:55][1824][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:55][1824][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:55][1824][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:55][1824][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:55][1824][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:55][1824][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:55][1824][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:55][1824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:55][1824][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:55][1824][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:55][1824][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:55][1824][INFO][MAIN] Duplicate execution. +[28 10:32:58][1830][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:32:58][1830][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:32:58][1830][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:32:58][1830][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:32:58][1830][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:32:58][1830][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:32:58][1830][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:32:58][1830][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:32:58][1830][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:32:58][1830][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:32:58][1830][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:32:58][1830][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:32:58][1830][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:32:58][1830][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:32:58][1830][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:32:58][1830][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:32:58][1830][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:32:58][1830][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:32:58][1830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:32:58][1830][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:32:58][1830][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:32:58][1830][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:32:58][1830][INFO][MAIN] Duplicate execution. +[28 10:33:01][1836][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:01][1836][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:01][1836][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:01][1836][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:01][1836][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:01][1836][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:01][1836][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:01][1836][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:01][1836][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:01][1836][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:01][1836][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:01][1836][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:01][1836][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:01][1836][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:01][1836][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:01][1836][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:01][1836][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:01][1836][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:01][1836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:01][1836][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:01][1836][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:01][1836][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:01][1836][INFO][MAIN] Duplicate execution. +[28 10:33:04][1842][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:04][1842][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:04][1842][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:04][1842][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:04][1842][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:04][1842][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:04][1842][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:04][1842][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:04][1842][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:04][1842][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:04][1842][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:04][1842][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:04][1842][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:04][1842][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:04][1842][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:04][1842][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:04][1842][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:04][1842][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:04][1842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:04][1842][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:04][1842][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:04][1842][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:04][1842][INFO][MAIN] Duplicate execution. +[28 10:33:07][1848][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:07][1848][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:07][1848][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:07][1848][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:07][1848][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:07][1848][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:07][1848][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:07][1848][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:07][1848][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:07][1848][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:07][1848][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:07][1848][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:07][1848][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:07][1848][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:07][1848][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:07][1848][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:07][1848][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:07][1848][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:07][1848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:07][1848][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:07][1848][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:07][1848][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:07][1848][INFO][MAIN] Duplicate execution. +[28 10:33:10][1854][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:10][1854][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:10][1854][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:10][1854][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:10][1854][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:10][1854][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:10][1854][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:10][1854][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:10][1854][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:10][1854][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:10][1854][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:10][1854][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:10][1854][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:10][1854][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:10][1854][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:10][1854][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:10][1854][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:10][1854][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:10][1854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:10][1854][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:10][1854][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:10][1854][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:10][1854][INFO][MAIN] Duplicate execution. +[28 10:33:13][1860][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:13][1860][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:13][1860][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:13][1860][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:13][1860][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:13][1860][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:13][1860][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:13][1860][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:13][1860][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:13][1860][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:13][1860][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:13][1860][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:13][1860][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:13][1860][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:13][1860][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:13][1860][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:13][1860][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:13][1860][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:13][1860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:13][1860][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:13][1860][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:13][1860][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:13][1860][INFO][MAIN] Duplicate execution. +[28 10:33:16][1866][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:16][1866][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:16][1866][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:16][1866][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:16][1866][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:16][1866][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:16][1866][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:16][1866][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:16][1866][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:16][1866][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:16][1866][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:16][1866][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:16][1866][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:16][1866][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:16][1866][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:16][1866][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:16][1866][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:16][1866][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:16][1866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:16][1866][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:16][1866][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:16][1866][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:16][1866][INFO][MAIN] Duplicate execution. +[28 10:33:19][1872][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:19][1872][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:19][1872][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:19][1872][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:19][1872][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:19][1872][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:19][1872][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:19][1872][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:19][1872][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:19][1872][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:19][1872][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:19][1872][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:19][1872][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:19][1872][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:19][1872][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:19][1872][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:19][1872][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:19][1872][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:19][1872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:19][1872][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:19][1872][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:19][1872][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:19][1872][INFO][MAIN] Duplicate execution. +[28 10:33:22][1878][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:22][1878][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:22][1878][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:22][1878][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:22][1878][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:22][1878][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:22][1878][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:22][1878][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:22][1878][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:22][1878][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:22][1878][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:22][1878][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:22][1878][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:22][1878][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:22][1878][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:22][1878][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:22][1878][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:22][1878][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:22][1878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:22][1878][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:22][1878][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:22][1878][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:22][1878][INFO][MAIN] Duplicate execution. +[28 10:33:25][1884][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:25][1884][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:25][1884][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:25][1884][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:25][1884][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:25][1884][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:25][1884][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:25][1884][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:25][1884][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:25][1884][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:25][1884][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:25][1884][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:25][1884][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:25][1884][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:25][1884][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:25][1884][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:25][1884][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:25][1884][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:25][1884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:25][1884][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:25][1884][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:25][1884][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:25][1884][INFO][MAIN] Duplicate execution. +[28 10:33:28][1890][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:28][1890][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:28][1890][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:28][1890][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:28][1890][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:28][1890][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:28][1890][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:28][1890][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:28][1890][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:28][1890][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:28][1890][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:28][1890][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:28][1890][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:28][1890][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:28][1890][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:28][1890][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:28][1890][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:28][1890][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:28][1890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:28][1890][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:28][1890][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:28][1890][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:28][1890][INFO][MAIN] Duplicate execution. +[28 10:33:31][1896][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:31][1896][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:31][1896][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:31][1896][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:31][1896][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:31][1896][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:31][1896][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:31][1896][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:31][1896][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:31][1896][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:31][1896][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:31][1896][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:31][1896][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:31][1896][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:31][1896][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:31][1896][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:31][1896][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:31][1896][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:31][1896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:31][1896][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:31][1896][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:31][1896][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:31][1896][INFO][MAIN] Duplicate execution. +[28 10:33:34][1902][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:34][1902][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:34][1902][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:34][1902][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:34][1902][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:34][1902][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:34][1902][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:34][1902][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:34][1902][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:34][1902][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:34][1902][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:34][1902][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:34][1902][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:34][1902][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:34][1902][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:34][1902][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:34][1902][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:34][1902][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:34][1902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:34][1902][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:34][1902][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:34][1902][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:34][1902][INFO][MAIN] Duplicate execution. +[28 10:33:37][1908][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:37][1908][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:37][1908][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:37][1908][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:37][1908][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:37][1908][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:37][1908][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:37][1908][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:37][1908][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:37][1908][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:37][1908][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:37][1908][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:37][1908][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:37][1908][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:37][1908][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:37][1908][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:37][1908][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:37][1908][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:37][1908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:37][1908][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:37][1908][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:37][1908][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:37][1908][INFO][MAIN] Duplicate execution. +[28 10:33:40][1914][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:40][1914][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:40][1914][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:40][1914][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:40][1914][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:40][1914][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:40][1914][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:40][1914][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:40][1914][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:40][1914][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:40][1914][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:40][1914][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:40][1914][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:40][1914][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:40][1914][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:40][1914][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:40][1914][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:40][1914][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:40][1914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:40][1914][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:40][1914][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:40][1914][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:40][1914][INFO][MAIN] Duplicate execution. +[28 10:33:44][1920][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:44][1920][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:44][1920][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:44][1920][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:44][1920][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:44][1920][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:44][1920][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:44][1920][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:44][1920][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:44][1920][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:44][1920][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:44][1920][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:44][1920][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:44][1920][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:44][1920][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:44][1920][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:44][1920][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:44][1920][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:44][1920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:44][1920][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:44][1920][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:44][1920][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:44][1920][INFO][MAIN] Duplicate execution. +[28 10:33:47][1926][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:47][1926][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:47][1926][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:47][1926][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:47][1926][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:47][1926][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:47][1926][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:47][1926][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:47][1926][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:47][1926][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:47][1926][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:47][1926][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:47][1926][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:47][1926][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:47][1926][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:47][1926][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:47][1926][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:47][1926][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:47][1926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:47][1926][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:47][1926][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:47][1926][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:47][1926][INFO][MAIN] Duplicate execution. +[28 10:33:49][1932][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:49][1932][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:49][1932][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:49][1932][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:49][1932][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:49][1932][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:49][1932][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:49][1932][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:49][1932][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:49][1932][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:49][1932][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:49][1932][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:49][1932][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:49][1932][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:49][1932][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:49][1932][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:49][1932][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:49][1932][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:49][1932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:49][1932][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:49][1932][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:49][1932][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:49][1932][INFO][MAIN] Duplicate execution. +[28 10:33:52][1938][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:52][1938][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:52][1938][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:52][1938][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:52][1938][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:52][1938][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:52][1938][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:52][1938][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:52][1938][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:52][1938][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:52][1938][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:52][1938][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:52][1938][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:52][1938][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:52][1938][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:52][1938][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:52][1938][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:52][1938][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:52][1938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:52][1938][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:52][1938][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:52][1938][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:52][1938][INFO][MAIN] Duplicate execution. +[28 10:33:55][1944][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:55][1944][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:55][1944][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:55][1944][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:55][1944][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:55][1944][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:55][1944][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:55][1944][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:55][1944][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:55][1944][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:55][1944][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:55][1944][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:55][1944][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:55][1944][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:55][1944][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:55][1944][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:55][1944][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:55][1944][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:55][1944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:55][1944][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:55][1944][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:55][1944][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:55][1944][INFO][MAIN] Duplicate execution. +[28 10:33:58][1950][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:33:58][1950][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:33:58][1950][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:33:58][1950][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:33:58][1950][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:33:58][1950][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:33:58][1950][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:33:58][1950][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:33:58][1950][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:33:58][1950][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:33:58][1950][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:33:58][1950][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:33:58][1950][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:33:58][1950][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:33:58][1950][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:33:58][1950][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:33:58][1950][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:33:58][1950][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:33:58][1950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:33:58][1950][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:33:58][1950][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:33:58][1950][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:33:58][1950][INFO][MAIN] Duplicate execution. +[28 10:34:01][1956][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:01][1956][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:01][1956][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:01][1956][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:01][1956][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:01][1956][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:01][1956][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:01][1956][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:01][1956][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:01][1956][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:01][1956][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:01][1956][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:01][1956][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:01][1956][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:01][1956][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:01][1956][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:01][1956][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:01][1956][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:01][1956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:01][1956][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:01][1956][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:01][1956][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:01][1956][INFO][MAIN] Duplicate execution. +[28 10:34:04][1962][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:04][1962][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:04][1962][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:04][1962][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:04][1962][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:04][1962][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:04][1962][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:04][1962][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:04][1962][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:04][1962][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:04][1962][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:04][1962][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:04][1962][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:04][1962][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:04][1962][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:04][1962][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:04][1962][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:04][1962][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:04][1962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:04][1962][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:04][1962][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:04][1962][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:04][1962][INFO][MAIN] Duplicate execution. +[28 10:34:07][1968][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:07][1968][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:07][1968][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:07][1968][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:07][1968][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:07][1968][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:07][1968][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:07][1968][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:07][1968][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:07][1968][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:07][1968][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:07][1968][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:07][1968][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:07][1968][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:07][1968][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:07][1968][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:07][1968][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:07][1968][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:07][1968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:07][1968][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:07][1968][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:07][1968][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:07][1968][INFO][MAIN] Duplicate execution. +[28 10:34:10][1974][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:10][1974][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:10][1974][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:10][1974][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:10][1974][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:10][1974][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:10][1974][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:10][1974][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:10][1974][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:10][1974][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:10][1974][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:10][1974][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:10][1974][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:10][1974][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:10][1974][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:10][1974][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:10][1974][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:10][1974][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:10][1974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:10][1974][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:10][1974][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:10][1974][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:10][1974][INFO][MAIN] Duplicate execution. +[28 10:34:13][1980][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:13][1980][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:13][1980][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:13][1980][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:13][1980][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:13][1980][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:13][1980][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:13][1980][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:13][1980][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:13][1980][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:13][1980][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:13][1980][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:13][1980][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:13][1980][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:13][1980][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:13][1980][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:13][1980][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:13][1980][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:13][1980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:13][1980][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:13][1980][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:13][1980][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:13][1980][INFO][MAIN] Duplicate execution. +[28 10:34:16][1986][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:16][1986][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:16][1986][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:16][1986][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:16][1986][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:16][1986][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:16][1986][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:16][1986][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:16][1986][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:16][1986][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:16][1986][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:16][1986][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:16][1986][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:16][1986][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:16][1986][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:16][1986][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:16][1986][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:16][1986][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:16][1986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:16][1986][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:16][1986][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:16][1986][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:16][1986][INFO][MAIN] Duplicate execution. +[28 10:34:19][1992][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:19][1992][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:19][1992][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:19][1992][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:19][1992][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:19][1992][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:19][1992][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:19][1992][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:19][1992][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:19][1992][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:19][1992][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:19][1992][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:19][1992][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:19][1992][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:19][1992][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:19][1992][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:19][1992][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:19][1992][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:19][1992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:19][1992][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:19][1992][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:19][1992][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:19][1992][INFO][MAIN] Duplicate execution. +[28 10:34:22][1998][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:22][1998][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:22][1998][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:22][1998][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:22][1998][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:22][1998][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:22][1998][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:22][1998][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:22][1998][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:22][1998][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:22][1998][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:22][1998][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:22][1998][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:22][1998][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:22][1998][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:22][1998][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:22][1998][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:22][1998][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:22][1998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:22][1998][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:22][1998][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:22][1998][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:22][1998][INFO][MAIN] Duplicate execution. +[28 10:34:25][2004][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:25][2004][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:25][2004][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:25][2004][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:25][2004][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:25][2004][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:25][2004][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:25][2004][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:25][2004][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:25][2004][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:25][2004][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:25][2004][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:25][2004][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:25][2004][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:25][2004][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:25][2004][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:25][2004][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:25][2004][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:25][2004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:25][2004][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:25][2004][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:25][2004][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:25][2004][INFO][MAIN] Duplicate execution. +[28 10:34:28][2010][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:28][2010][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:28][2010][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:28][2010][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:28][2010][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:28][2010][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:28][2010][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:28][2010][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:28][2010][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:28][2010][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:28][2010][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:28][2010][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:28][2010][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:28][2010][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:28][2010][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:28][2010][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:28][2010][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:28][2010][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:28][2010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:28][2010][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:28][2010][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:28][2010][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:28][2010][INFO][MAIN] Duplicate execution. +[28 10:34:31][2016][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:31][2016][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:31][2016][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:31][2016][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:31][2016][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:31][2016][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:31][2016][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:31][2016][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:31][2016][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:31][2016][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:31][2016][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:31][2016][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:31][2016][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:31][2016][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:31][2016][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:31][2016][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:31][2016][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:31][2016][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:31][2016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:31][2016][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:31][2016][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:31][2016][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:31][2016][INFO][MAIN] Duplicate execution. +[28 10:34:34][2022][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:34][2022][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:34][2022][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:34][2022][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:34][2022][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:34][2022][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:34][2022][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:34][2022][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:34][2022][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:34][2022][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:34][2022][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:34][2022][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:34][2022][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:34][2022][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:34][2022][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:34][2022][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:34][2022][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:34][2022][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:34][2022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:34][2022][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:34][2022][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:34][2022][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:34][2022][INFO][MAIN] Duplicate execution. +[28 10:34:37][2028][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:37][2028][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:37][2028][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:37][2028][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:37][2028][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:37][2028][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:37][2028][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:37][2028][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:37][2028][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:37][2028][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:37][2028][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:37][2028][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:37][2028][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:37][2028][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:37][2028][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:37][2028][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:37][2028][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:37][2028][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:37][2028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:37][2028][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:37][2028][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:37][2028][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:37][2028][INFO][MAIN] Duplicate execution. +[28 10:34:40][2034][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:40][2034][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:40][2034][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:40][2034][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:40][2034][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:40][2034][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:40][2034][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:40][2034][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:40][2034][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:40][2034][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:40][2034][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:40][2034][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:40][2034][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:40][2034][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:40][2034][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:40][2034][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:40][2034][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:40][2034][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:40][2034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:40][2034][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:40][2034][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:40][2034][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:40][2034][INFO][MAIN] Duplicate execution. +[28 10:34:43][2040][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:43][2040][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:43][2040][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:43][2040][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:43][2040][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:43][2040][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:43][2040][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:43][2040][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:43][2040][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:43][2040][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:43][2040][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:43][2040][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:43][2040][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:43][2040][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:43][2040][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:43][2040][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:43][2040][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:43][2040][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:43][2040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:43][2040][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:43][2040][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:43][2040][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:43][2040][INFO][MAIN] Duplicate execution. +[28 10:34:46][2046][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:46][2046][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:46][2046][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:46][2046][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:46][2046][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:46][2046][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:46][2046][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:46][2046][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:46][2046][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:46][2046][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:46][2046][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:46][2046][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:46][2046][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:46][2046][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:46][2046][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:46][2046][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:46][2046][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:46][2046][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:46][2046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:46][2046][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:46][2046][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:46][2046][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:46][2046][INFO][MAIN] Duplicate execution. +[28 10:34:49][2052][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:49][2052][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:49][2052][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:49][2052][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:49][2052][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:49][2052][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:49][2052][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:49][2052][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:49][2052][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:49][2052][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:49][2052][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:49][2052][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:49][2052][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:49][2052][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:49][2052][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:49][2052][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:49][2052][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:49][2052][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:49][2052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:49][2052][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:49][2052][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:49][2052][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:49][2052][INFO][MAIN] Duplicate execution. +[28 10:34:52][2058][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:52][2058][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:52][2058][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:52][2058][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:52][2058][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:52][2058][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:52][2058][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:52][2058][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:52][2058][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:52][2058][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:52][2058][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:52][2058][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:52][2058][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:52][2058][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:52][2058][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:52][2058][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:52][2058][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:52][2058][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:52][2058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:52][2058][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:52][2058][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:52][2058][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:52][2058][INFO][MAIN] Duplicate execution. +[28 10:34:55][2064][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:55][2064][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:55][2064][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:55][2064][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:55][2064][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:55][2064][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:55][2064][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:55][2064][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:55][2064][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:55][2064][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:55][2064][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:55][2064][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:55][2064][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:55][2064][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:55][2064][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:55][2064][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:55][2064][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:55][2064][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:55][2064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:55][2064][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:55][2064][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:55][2064][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:55][2064][INFO][MAIN] Duplicate execution. +[28 10:34:58][2070][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:34:58][2070][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:34:58][2070][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:34:58][2070][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:34:58][2070][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:34:58][2070][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:34:58][2070][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:34:58][2070][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:34:58][2070][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:34:58][2070][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:34:58][2070][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:34:58][2070][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:34:58][2070][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:34:58][2070][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:34:58][2070][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:34:58][2070][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:34:58][2070][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:34:58][2070][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:34:58][2070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:34:58][2070][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:34:58][2070][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:34:58][2070][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:34:58][2070][INFO][MAIN] Duplicate execution. +[28 10:35:01][2076][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:01][2076][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:01][2076][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:01][2076][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:01][2076][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:01][2076][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:01][2076][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:01][2076][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:01][2076][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:01][2076][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:01][2076][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:01][2076][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:01][2076][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:01][2076][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:01][2076][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:01][2076][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:01][2076][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:01][2076][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:01][2076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:01][2076][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:01][2076][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:01][2076][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:01][2076][INFO][MAIN] Duplicate execution. +[28 10:35:04][2082][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:04][2082][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:04][2082][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:04][2082][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:04][2082][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:04][2082][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:04][2082][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:04][2082][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:04][2082][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:04][2082][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:04][2082][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:04][2082][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:04][2082][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:04][2082][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:04][2082][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:04][2082][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:04][2082][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:04][2082][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:04][2082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:04][2082][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:04][2082][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:04][2082][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:04][2082][INFO][MAIN] Duplicate execution. +[28 10:35:07][2088][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:07][2088][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:07][2088][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:07][2088][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:07][2088][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:07][2088][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:07][2088][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:07][2088][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:07][2088][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:07][2088][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:07][2088][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:07][2088][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:07][2088][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:07][2088][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:07][2088][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:07][2088][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:07][2088][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:07][2088][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:07][2088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:07][2088][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:07][2088][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:07][2088][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:07][2088][INFO][MAIN] Duplicate execution. +[28 10:35:10][2094][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:10][2094][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:10][2094][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:10][2094][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:10][2094][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:10][2094][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:10][2094][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:10][2094][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:10][2094][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:10][2094][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:10][2094][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:10][2094][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:10][2094][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:10][2094][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:10][2094][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:10][2094][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:10][2094][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:10][2094][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:10][2094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:10][2094][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:10][2094][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:10][2094][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:10][2094][INFO][MAIN] Duplicate execution. +[28 10:35:13][2100][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:13][2100][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:13][2100][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:13][2100][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:13][2100][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:13][2100][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:13][2100][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:13][2100][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:13][2100][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:13][2100][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:13][2100][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:13][2100][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:13][2100][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:13][2100][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:13][2100][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:13][2100][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:13][2100][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:13][2100][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:13][2100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:13][2100][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:13][2100][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:13][2100][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:13][2100][INFO][MAIN] Duplicate execution. +[28 10:35:16][2106][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:16][2106][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:16][2106][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:16][2106][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:16][2106][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:16][2106][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:16][2106][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:16][2106][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:16][2106][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:16][2106][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:16][2106][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:16][2106][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:16][2106][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:16][2106][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:16][2106][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:16][2106][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:16][2106][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:16][2106][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:16][2106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:16][2106][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:16][2106][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:16][2106][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:16][2106][INFO][MAIN] Duplicate execution. +[28 10:35:19][2112][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:19][2112][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:19][2112][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:19][2112][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:19][2112][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:19][2112][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:19][2112][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:19][2112][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:19][2112][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:19][2112][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:19][2112][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:19][2112][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:19][2112][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:19][2112][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:19][2112][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:19][2112][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:19][2112][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:19][2112][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:19][2112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:19][2112][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:19][2112][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:19][2112][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:19][2112][INFO][MAIN] Duplicate execution. +[28 10:35:22][2118][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:22][2118][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:22][2118][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:22][2118][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:22][2118][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:22][2118][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:22][2118][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:22][2118][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:22][2118][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:22][2118][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:22][2118][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:22][2118][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:22][2118][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:22][2118][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:22][2118][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:22][2118][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:22][2118][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:22][2118][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:22][2118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:22][2118][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:22][2118][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:22][2118][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:22][2118][INFO][MAIN] Duplicate execution. +[28 10:35:25][2124][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:25][2124][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:25][2124][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:25][2124][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:25][2124][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:25][2124][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:25][2124][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:25][2124][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:25][2124][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:25][2124][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:25][2124][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:25][2124][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:25][2124][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:25][2124][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:25][2124][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:25][2124][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:25][2124][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:25][2124][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:25][2124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:25][2124][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:25][2124][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:25][2124][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:25][2124][INFO][MAIN] Duplicate execution. +[28 10:35:28][2130][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:28][2130][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:28][2130][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:28][2130][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:28][2130][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:28][2130][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:28][2130][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:28][2130][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:28][2130][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:28][2130][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:28][2130][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:28][2130][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:28][2130][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:28][2130][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:28][2130][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:28][2130][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:28][2130][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:28][2130][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:28][2130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:28][2130][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:28][2130][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:28][2130][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:28][2130][INFO][MAIN] Duplicate execution. +[28 10:35:31][2136][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:31][2136][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:31][2136][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:31][2136][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:31][2136][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:31][2136][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:31][2136][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:31][2136][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:31][2136][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:31][2136][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:31][2136][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:31][2136][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:31][2136][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:31][2136][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:31][2136][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:31][2136][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:31][2136][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:31][2136][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:31][2136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:31][2136][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:31][2136][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:31][2136][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:31][2136][INFO][MAIN] Duplicate execution. +[28 10:35:34][2142][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:34][2142][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:34][2142][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:34][2142][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:34][2142][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:34][2142][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:34][2142][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:34][2142][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:34][2142][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:34][2142][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:34][2142][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:34][2142][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:34][2142][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:34][2142][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:34][2142][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:34][2142][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:34][2142][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:34][2142][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:34][2142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:34][2142][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:34][2142][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:34][2142][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:34][2142][INFO][MAIN] Duplicate execution. +[28 10:35:37][2148][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:37][2148][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:37][2148][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:37][2148][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:37][2148][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:37][2148][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:37][2148][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:37][2148][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:37][2148][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:37][2148][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:37][2148][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:37][2148][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:37][2148][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:37][2148][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:37][2148][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:37][2148][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:37][2148][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:37][2148][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:37][2148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:37][2148][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:37][2148][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:37][2148][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:37][2148][INFO][MAIN] Duplicate execution. +[28 10:35:40][2154][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:40][2154][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:40][2154][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:40][2154][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:40][2154][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:40][2154][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:40][2154][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:40][2154][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:40][2154][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:40][2154][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:40][2154][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:40][2154][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:40][2154][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:40][2154][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:40][2154][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:40][2154][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:40][2154][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:40][2154][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:40][2154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:40][2154][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:40][2154][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:40][2154][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:40][2154][INFO][MAIN] Duplicate execution. +[28 10:35:43][2160][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:43][2160][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:43][2160][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:43][2160][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:43][2160][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:43][2160][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:43][2160][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:43][2160][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:43][2160][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:43][2160][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:43][2160][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:43][2160][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:43][2160][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:43][2160][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:43][2160][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:43][2160][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:43][2160][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:43][2160][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:43][2160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:43][2160][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:43][2160][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:43][2160][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:43][2160][INFO][MAIN] Duplicate execution. +[28 10:35:46][2166][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:46][2166][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:46][2166][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:46][2166][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:46][2166][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:46][2166][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:46][2166][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:46][2166][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:46][2166][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:46][2166][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:46][2166][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:46][2166][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:46][2166][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:46][2166][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:46][2166][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:46][2166][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:46][2166][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:46][2166][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:46][2166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:46][2166][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:46][2166][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:46][2166][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:46][2166][INFO][MAIN] Duplicate execution. +[28 10:35:49][2172][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:49][2172][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:49][2172][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:49][2172][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:49][2172][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:49][2172][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:49][2172][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:49][2172][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:49][2172][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:49][2172][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:49][2172][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:49][2172][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:49][2172][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:49][2172][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:49][2172][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:49][2172][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:49][2172][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:49][2172][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:49][2172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:49][2172][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:49][2172][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:49][2172][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:49][2172][INFO][MAIN] Duplicate execution. +[28 10:35:52][2178][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:52][2178][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:52][2178][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:52][2178][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:52][2178][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:52][2178][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:52][2178][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:52][2178][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:52][2178][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:52][2178][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:52][2178][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:52][2178][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:52][2178][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:52][2178][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:52][2178][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:52][2178][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:52][2178][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:52][2178][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:52][2178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:52][2178][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:52][2178][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:52][2178][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:52][2178][INFO][MAIN] Duplicate execution. +[28 10:35:55][2184][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:55][2184][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:55][2184][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:55][2184][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:55][2184][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:55][2184][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:55][2184][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:55][2184][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:55][2184][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:55][2184][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:55][2184][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:55][2184][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:55][2184][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:55][2184][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:55][2184][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:55][2184][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:55][2184][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:55][2184][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:55][2184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:55][2184][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:55][2184][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:55][2184][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:55][2184][INFO][MAIN] Duplicate execution. +[28 10:35:58][2190][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:35:58][2190][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:35:58][2190][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:35:58][2190][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:35:58][2190][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:35:58][2190][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:35:58][2190][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:35:58][2190][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:35:58][2190][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:35:58][2190][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:35:58][2190][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:35:58][2190][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:35:58][2190][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:35:58][2190][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:35:58][2190][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:35:58][2190][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:35:58][2190][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:35:58][2190][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:35:58][2190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:35:58][2190][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:35:58][2190][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:35:58][2190][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:35:58][2190][INFO][MAIN] Duplicate execution. +[28 10:36:01][2196][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:01][2196][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:01][2196][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:01][2196][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:01][2196][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:01][2196][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:01][2196][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:01][2196][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:01][2196][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:01][2196][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:01][2196][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:01][2196][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:01][2196][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:01][2196][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:01][2196][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:01][2196][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:01][2196][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:01][2196][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:01][2196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:01][2196][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:01][2196][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:01][2196][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:01][2196][INFO][MAIN] Duplicate execution. +[28 10:36:04][2202][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:04][2202][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:04][2202][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:04][2202][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:04][2202][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:04][2202][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:04][2202][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:04][2202][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:04][2202][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:04][2202][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:04][2202][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:04][2202][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:04][2202][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:04][2202][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:04][2202][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:04][2202][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:04][2202][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:04][2202][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:04][2202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:04][2202][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:04][2202][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:04][2202][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:04][2202][INFO][MAIN] Duplicate execution. +[28 10:36:07][2208][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:07][2208][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:07][2208][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:07][2208][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:07][2208][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:07][2208][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:07][2208][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:07][2208][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:07][2208][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:07][2208][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:07][2208][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:07][2208][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:07][2208][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:07][2208][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:07][2208][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:07][2208][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:07][2208][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:07][2208][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:07][2208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:07][2208][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:07][2208][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:07][2208][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:07][2208][INFO][MAIN] Duplicate execution. +[28 10:36:10][2214][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:10][2214][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:10][2214][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:10][2214][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:10][2214][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:10][2214][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:10][2214][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:10][2214][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:10][2214][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:10][2214][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:10][2214][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:10][2214][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:10][2214][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:10][2214][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:10][2214][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:10][2214][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:10][2214][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:10][2214][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:10][2214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:10][2214][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:10][2214][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:10][2214][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:10][2214][INFO][MAIN] Duplicate execution. +[28 10:36:13][2220][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:13][2220][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:13][2220][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:13][2220][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:13][2220][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:13][2220][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:13][2220][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:13][2220][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:13][2220][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:13][2220][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:13][2220][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:13][2220][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:13][2220][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:13][2220][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:13][2220][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:13][2220][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:13][2220][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:13][2220][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:13][2220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:13][2220][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:13][2220][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:13][2220][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:13][2220][INFO][MAIN] Duplicate execution. +[28 10:36:16][2226][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:16][2226][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:16][2226][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:16][2226][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:16][2226][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:16][2226][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:16][2226][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:16][2226][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:16][2226][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:16][2226][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:16][2226][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:16][2226][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:16][2226][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:16][2226][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:16][2226][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:16][2226][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:16][2226][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:16][2226][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:16][2226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:16][2226][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:16][2226][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:16][2226][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:16][2226][INFO][MAIN] Duplicate execution. +[28 10:36:19][2232][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:19][2232][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:19][2232][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:19][2232][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:19][2232][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:19][2232][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:19][2232][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:19][2232][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:19][2232][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:19][2232][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:19][2232][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:19][2232][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:19][2232][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:19][2232][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:19][2232][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:19][2232][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:19][2232][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:19][2232][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:19][2232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:19][2232][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:19][2232][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:19][2232][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:19][2232][INFO][MAIN] Duplicate execution. +[28 10:36:22][2238][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:22][2238][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:22][2238][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:22][2238][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:22][2238][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:22][2238][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:22][2238][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:22][2238][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:22][2238][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:22][2238][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:22][2238][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:22][2238][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:22][2238][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:22][2238][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:22][2238][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:22][2238][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:22][2238][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:22][2238][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:22][2238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:22][2238][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:22][2238][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:22][2238][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:22][2238][INFO][MAIN] Duplicate execution. +[28 10:36:25][2244][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:25][2244][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:25][2244][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:25][2244][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:25][2244][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:25][2244][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:25][2244][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:25][2244][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:25][2244][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:25][2244][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:25][2244][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:25][2244][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:25][2244][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:25][2244][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:25][2244][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:25][2244][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:25][2244][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:25][2244][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:25][2244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:25][2244][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:25][2244][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:25][2244][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:25][2244][INFO][MAIN] Duplicate execution. +[28 10:36:28][2250][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:28][2250][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:28][2250][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:28][2250][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:28][2250][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:28][2250][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:28][2250][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:28][2250][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:28][2250][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:28][2250][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:28][2250][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:28][2250][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:28][2250][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:28][2250][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:28][2250][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:28][2250][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:28][2250][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:28][2250][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:28][2250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:28][2250][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:28][2250][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:28][2250][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:28][2250][INFO][MAIN] Duplicate execution. +[28 10:36:31][2256][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:31][2256][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:31][2256][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:31][2256][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:31][2256][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:31][2256][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:31][2256][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:31][2256][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:31][2256][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:31][2256][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:31][2256][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:31][2256][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:31][2256][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:31][2256][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:31][2256][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:31][2256][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:31][2256][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:31][2256][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:31][2256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:31][2256][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:31][2256][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:31][2256][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:31][2256][INFO][MAIN] Duplicate execution. +[28 10:36:34][2262][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:34][2262][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:34][2262][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:34][2262][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:34][2262][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:34][2262][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:34][2262][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:34][2262][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:34][2262][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:34][2262][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:34][2262][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:34][2262][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:34][2262][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:34][2262][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:34][2262][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:34][2262][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:34][2262][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:34][2262][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:34][2262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:34][2262][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:34][2262][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:34][2262][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:34][2262][INFO][MAIN] Duplicate execution. +[28 10:36:37][2268][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:37][2268][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:37][2268][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:37][2268][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:37][2268][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:37][2268][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:37][2268][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:37][2268][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:37][2268][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:37][2268][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:37][2268][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:37][2268][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:37][2268][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:37][2268][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:37][2268][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:37][2268][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:37][2268][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:37][2268][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:37][2268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:37][2268][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:37][2268][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:37][2268][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:37][2268][INFO][MAIN] Duplicate execution. +[28 10:36:40][2274][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:40][2274][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:40][2274][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:40][2274][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:40][2274][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:40][2274][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:40][2274][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:40][2274][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:40][2274][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:40][2274][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:40][2274][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:40][2274][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:40][2274][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:40][2274][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:40][2274][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:40][2274][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:40][2274][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:40][2274][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:40][2274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:40][2274][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:40][2274][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:40][2274][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:40][2274][INFO][MAIN] Duplicate execution. +[28 10:36:43][2280][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:43][2280][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:43][2280][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:43][2280][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:43][2280][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:43][2280][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:43][2280][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:43][2280][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:43][2280][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:43][2280][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:43][2280][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:43][2280][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:43][2280][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:43][2280][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:43][2280][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:43][2280][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:43][2280][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:43][2280][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:43][2280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:43][2280][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:43][2280][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:43][2280][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:43][2280][INFO][MAIN] Duplicate execution. +[28 10:36:46][2286][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:46][2286][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:46][2286][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:46][2286][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:46][2286][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:46][2286][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:46][2286][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:46][2286][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:46][2286][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:46][2286][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:46][2286][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:46][2286][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:46][2286][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:46][2286][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:46][2286][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:46][2286][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:46][2286][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:46][2286][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:46][2286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:46][2286][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:46][2286][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:46][2286][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:46][2286][INFO][MAIN] Duplicate execution. +[28 10:36:49][2292][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:49][2292][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:49][2292][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:49][2292][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:49][2292][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:49][2292][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:49][2292][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:49][2292][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:49][2292][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:49][2292][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:49][2292][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:49][2292][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:49][2292][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:49][2292][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:49][2292][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:49][2292][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:49][2292][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:49][2292][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:49][2292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:49][2292][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:49][2292][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:49][2292][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:49][2292][INFO][MAIN] Duplicate execution. +[28 10:36:52][2298][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:52][2298][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:52][2298][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:52][2298][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:52][2298][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:52][2298][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:52][2298][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:52][2298][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:52][2298][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:52][2298][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:52][2298][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:52][2298][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:52][2298][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:52][2298][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:52][2298][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:52][2298][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:52][2298][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:52][2298][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:52][2298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:52][2298][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:52][2298][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:52][2298][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:52][2298][INFO][MAIN] Duplicate execution. +[28 10:36:55][2304][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:55][2304][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:55][2304][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:55][2304][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:55][2304][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:55][2304][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:55][2304][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:55][2304][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:55][2304][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:55][2304][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:55][2304][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:55][2304][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:55][2304][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:55][2304][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:55][2304][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:55][2304][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:55][2304][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:55][2304][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:55][2304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:55][2304][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:55][2304][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:55][2304][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:55][2304][INFO][MAIN] Duplicate execution. +[28 10:36:58][2310][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:36:58][2310][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:36:58][2310][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:36:58][2310][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:36:58][2310][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:36:58][2310][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:36:58][2310][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:36:58][2310][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:36:58][2310][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:36:58][2310][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:36:58][2310][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:36:58][2310][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:36:58][2310][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:36:58][2310][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:36:58][2310][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:36:58][2310][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:36:58][2310][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:36:58][2310][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:36:58][2310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:36:58][2310][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:36:58][2310][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:36:58][2310][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:36:58][2310][INFO][MAIN] Duplicate execution. +[28 10:37:01][2316][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:01][2316][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:01][2316][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:01][2316][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:01][2316][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:01][2316][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:01][2316][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:01][2316][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:01][2316][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:01][2316][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:01][2316][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:01][2316][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:01][2316][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:01][2316][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:01][2316][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:01][2316][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:01][2316][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:01][2316][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:01][2316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:01][2316][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:01][2316][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:01][2316][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:01][2316][INFO][MAIN] Duplicate execution. +[28 10:37:04][2322][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:04][2322][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:04][2322][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:04][2322][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:04][2322][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:04][2322][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:04][2322][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:04][2322][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:04][2322][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:04][2322][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:04][2322][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:04][2322][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:04][2322][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:04][2322][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:04][2322][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:04][2322][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:04][2322][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:04][2322][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:04][2322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:04][2322][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:04][2322][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:04][2322][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:04][2322][INFO][MAIN] Duplicate execution. +[28 10:37:07][2328][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:07][2328][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:07][2328][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:07][2328][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:07][2328][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:07][2328][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:07][2328][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:07][2328][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:07][2328][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:07][2328][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:07][2328][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:07][2328][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:07][2328][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:07][2328][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:07][2328][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:07][2328][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:07][2328][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:07][2328][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:07][2328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:07][2328][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:07][2328][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:07][2328][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:07][2328][INFO][MAIN] Duplicate execution. +[28 10:37:10][2334][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:10][2334][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:10][2334][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:10][2334][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:10][2334][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:10][2334][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:10][2334][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:10][2334][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:10][2334][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:10][2334][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:10][2334][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:10][2334][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:10][2334][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:10][2334][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:10][2334][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:10][2334][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:10][2334][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:10][2334][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:10][2334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:10][2334][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:10][2334][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:10][2334][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:10][2334][INFO][MAIN] Duplicate execution. +[28 10:37:13][2340][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:13][2340][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:13][2340][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:13][2340][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:13][2340][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:13][2340][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:13][2340][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:13][2340][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:13][2340][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:13][2340][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:13][2340][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:13][2340][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:13][2340][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:13][2340][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:13][2340][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:13][2340][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:13][2340][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:13][2340][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:13][2340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:13][2340][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:13][2340][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:13][2340][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:13][2340][INFO][MAIN] Duplicate execution. +[28 10:37:16][2346][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:16][2346][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:16][2346][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:16][2346][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:16][2346][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:16][2346][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:16][2346][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:16][2346][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:16][2346][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:16][2346][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:16][2346][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:16][2346][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:16][2346][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:16][2346][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:16][2346][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:16][2346][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:16][2346][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:16][2346][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:16][2346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:16][2346][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:16][2346][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:16][2346][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:16][2346][INFO][MAIN] Duplicate execution. +[28 10:37:19][2352][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:19][2352][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:19][2352][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:19][2352][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:19][2352][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:19][2352][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:19][2352][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:19][2352][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:19][2352][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:19][2352][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:19][2352][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:19][2352][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:19][2352][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:19][2352][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:19][2352][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:19][2352][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:19][2352][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:19][2352][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:19][2352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:19][2352][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:19][2352][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:19][2352][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:19][2352][INFO][MAIN] Duplicate execution. +[28 10:37:22][2358][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:22][2358][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:22][2358][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:22][2358][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:22][2358][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:22][2358][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:22][2358][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:22][2358][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:22][2358][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:22][2358][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:22][2358][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:22][2358][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:22][2358][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:22][2358][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:22][2358][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:22][2358][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:22][2358][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:22][2358][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:22][2358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:22][2358][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:22][2358][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:22][2358][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:22][2358][INFO][MAIN] Duplicate execution. +[28 10:37:25][2364][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:25][2364][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:25][2364][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:25][2364][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:25][2364][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:25][2364][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:25][2364][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:25][2364][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:25][2364][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:25][2364][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:25][2364][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:25][2364][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:25][2364][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:25][2364][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:25][2364][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:25][2364][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:25][2364][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:25][2364][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:25][2364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:25][2364][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:25][2364][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:25][2364][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:25][2364][INFO][MAIN] Duplicate execution. +[28 10:37:28][2370][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:28][2370][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:28][2370][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:28][2370][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:28][2370][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:28][2370][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:28][2370][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:28][2370][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:28][2370][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:28][2370][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:28][2370][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:28][2370][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:28][2370][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:28][2370][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:28][2370][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:28][2370][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:28][2370][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:28][2370][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:28][2370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:28][2370][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:28][2370][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:28][2370][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:28][2370][INFO][MAIN] Duplicate execution. +[28 10:37:31][2376][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:31][2376][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:31][2376][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:31][2376][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:31][2376][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:31][2376][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:31][2376][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:31][2376][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:31][2376][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:31][2376][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:31][2376][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:31][2376][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:31][2376][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:31][2376][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:31][2376][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:31][2376][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:31][2376][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:31][2376][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:31][2376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:31][2376][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:31][2376][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:31][2376][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:31][2376][INFO][MAIN] Duplicate execution. +[28 10:37:34][2382][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:34][2382][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:34][2382][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:34][2382][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:34][2382][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:34][2382][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:34][2382][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:34][2382][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:34][2382][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:34][2382][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:34][2382][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:34][2382][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:34][2382][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:34][2382][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:34][2382][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:34][2382][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:34][2382][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:34][2382][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:34][2382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:34][2382][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:34][2382][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:34][2382][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:34][2382][INFO][MAIN] Duplicate execution. +[28 10:37:37][2388][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:37][2388][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:37][2388][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:37][2388][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:37][2388][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:37][2388][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:37][2388][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:37][2388][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:37][2388][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:37][2388][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:37][2388][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:37][2388][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:37][2388][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:37][2388][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:37][2388][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:37][2388][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:37][2388][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:37][2388][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:37][2388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:37][2388][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:37][2388][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:37][2388][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:37][2388][INFO][MAIN] Duplicate execution. +[28 10:37:40][2394][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:40][2394][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:40][2394][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:40][2394][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:40][2394][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:40][2394][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:40][2394][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:40][2394][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:40][2394][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:40][2394][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:40][2394][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:40][2394][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:40][2394][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:40][2394][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:40][2394][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:40][2394][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:40][2394][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:40][2394][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:40][2394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:40][2394][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:40][2394][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:40][2394][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:40][2394][INFO][MAIN] Duplicate execution. +[28 10:37:43][2400][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:43][2400][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:43][2400][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:43][2400][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:43][2400][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:43][2400][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:43][2400][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:43][2400][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:43][2400][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:43][2400][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:43][2400][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:43][2400][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:43][2400][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:43][2400][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:43][2400][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:43][2400][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:43][2400][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:43][2400][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:43][2400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:43][2400][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:43][2400][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:43][2400][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:43][2400][INFO][MAIN] Duplicate execution. +[28 10:37:46][2406][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:46][2406][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:46][2406][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:46][2406][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:46][2406][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:46][2406][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:46][2406][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:46][2406][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:46][2406][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:46][2406][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:46][2406][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:46][2406][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:46][2406][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:46][2406][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:46][2406][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:46][2406][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:46][2406][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:46][2406][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:46][2406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:46][2406][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:46][2406][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:46][2406][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:46][2406][INFO][MAIN] Duplicate execution. +[28 10:37:49][2412][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:49][2412][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:49][2412][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:49][2412][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:49][2412][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:49][2412][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:49][2412][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:49][2412][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:49][2412][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:49][2412][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:49][2412][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:49][2412][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:49][2412][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:49][2412][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:49][2412][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:49][2412][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:49][2412][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:49][2412][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:49][2412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:49][2412][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:49][2412][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:49][2412][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:49][2412][INFO][MAIN] Duplicate execution. +[28 10:37:52][2418][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:52][2418][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:52][2418][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:52][2418][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:52][2418][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:52][2418][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:52][2418][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:52][2418][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:52][2418][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:52][2418][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:52][2418][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:52][2418][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:52][2418][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:52][2418][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:52][2418][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:52][2418][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:52][2418][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:52][2418][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:52][2418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:52][2418][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:52][2418][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:52][2418][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:52][2418][INFO][MAIN] Duplicate execution. +[28 10:37:55][2424][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:55][2424][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:55][2424][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:55][2424][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:55][2424][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:55][2424][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:55][2424][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:55][2424][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:55][2424][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:55][2424][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:55][2424][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:55][2424][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:55][2424][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:55][2424][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:55][2424][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:55][2424][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:55][2424][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:55][2424][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:55][2424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:55][2424][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:55][2424][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:55][2424][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:55][2424][INFO][MAIN] Duplicate execution. +[28 10:37:58][2430][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:37:58][2430][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:37:58][2430][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:37:58][2430][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:37:58][2430][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:37:58][2430][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:37:58][2430][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:37:58][2430][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:37:58][2430][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:37:58][2430][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:37:58][2430][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:37:58][2430][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:37:58][2430][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:37:58][2430][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:37:58][2430][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:37:58][2430][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:37:58][2430][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:37:58][2430][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:37:58][2430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:37:58][2430][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:37:58][2430][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:37:58][2430][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:37:58][2430][INFO][MAIN] Duplicate execution. +[28 10:38:01][2436][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:01][2436][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:01][2436][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:01][2436][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:01][2436][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:01][2436][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:01][2436][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:01][2436][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:01][2436][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:01][2436][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:01][2436][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:01][2436][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:01][2436][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:01][2436][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:01][2436][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:01][2436][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:01][2436][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:01][2436][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:01][2436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:01][2436][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:01][2436][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:01][2436][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:01][2436][INFO][MAIN] Duplicate execution. +[28 10:38:04][2442][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:04][2442][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:04][2442][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:04][2442][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:04][2442][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:04][2442][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:04][2442][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:04][2442][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:04][2442][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:04][2442][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:04][2442][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:04][2442][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:04][2442][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:04][2442][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:04][2442][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:04][2442][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:04][2442][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:04][2442][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:04][2442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:04][2442][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:04][2442][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:04][2442][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:04][2442][INFO][MAIN] Duplicate execution. +[28 10:38:07][2448][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:07][2448][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:07][2448][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:07][2448][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:07][2448][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:07][2448][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:07][2448][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:07][2448][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:07][2448][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:07][2448][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:07][2448][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:07][2448][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:07][2448][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:07][2448][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:07][2448][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:07][2448][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:07][2448][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:07][2448][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:07][2448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:07][2448][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:07][2448][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:07][2448][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:07][2448][INFO][MAIN] Duplicate execution. +[28 10:38:10][2454][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:10][2454][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:10][2454][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:10][2454][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:10][2454][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:10][2454][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:10][2454][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:10][2454][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:10][2454][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:10][2454][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:10][2454][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:10][2454][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:10][2454][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:10][2454][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:10][2454][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:10][2454][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:10][2454][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:10][2454][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:10][2454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:10][2454][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:10][2454][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:10][2454][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:10][2454][INFO][MAIN] Duplicate execution. +[28 10:38:13][2460][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:13][2460][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:13][2460][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:13][2460][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:13][2460][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:13][2460][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:13][2460][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:13][2460][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:13][2460][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:13][2460][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:13][2460][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:13][2460][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:13][2460][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:13][2460][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:13][2460][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:13][2460][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:13][2460][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:13][2460][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:13][2460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:13][2460][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:13][2460][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:13][2460][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:13][2460][INFO][MAIN] Duplicate execution. +[28 10:38:16][2466][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:16][2466][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:16][2466][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:16][2466][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:16][2466][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:16][2466][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:16][2466][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:16][2466][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:16][2466][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:16][2466][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:16][2466][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:16][2466][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:16][2466][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:16][2466][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:16][2466][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:16][2466][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:16][2466][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:16][2466][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:16][2466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:16][2466][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:16][2466][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:16][2466][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:16][2466][INFO][MAIN] Duplicate execution. +[28 10:38:19][2472][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:19][2472][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:19][2472][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:19][2472][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:19][2472][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:19][2472][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:19][2472][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:19][2472][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:19][2472][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:19][2472][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:19][2472][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:19][2472][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:19][2472][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:19][2472][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:19][2472][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:19][2472][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:19][2472][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:19][2472][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:19][2472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:19][2472][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:19][2472][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:19][2472][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:19][2472][INFO][MAIN] Duplicate execution. +[28 10:38:22][2478][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:22][2478][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:22][2478][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:22][2478][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:22][2478][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:22][2478][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:22][2478][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:22][2478][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:22][2478][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:22][2478][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:22][2478][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:22][2478][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:22][2478][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:22][2478][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:22][2478][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:22][2478][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:22][2478][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:22][2478][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:22][2478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:22][2478][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:22][2478][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:22][2478][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:22][2478][INFO][MAIN] Duplicate execution. +[28 10:38:25][2484][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:25][2484][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:25][2484][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:25][2484][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:25][2484][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:25][2484][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:25][2484][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:25][2484][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:25][2484][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:25][2484][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:25][2484][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:25][2484][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:25][2484][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:25][2484][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:25][2484][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:25][2484][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:25][2484][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:25][2484][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:25][2484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:25][2484][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:25][2484][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:25][2484][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:25][2484][INFO][MAIN] Duplicate execution. +[28 10:38:28][2490][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:28][2490][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:28][2490][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:28][2490][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:28][2490][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:28][2490][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:28][2490][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:28][2490][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:28][2490][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:28][2490][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:28][2490][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:28][2490][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:28][2490][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:28][2490][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:28][2490][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:28][2490][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:28][2490][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:28][2490][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:28][2490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:28][2490][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:28][2490][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:28][2490][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:28][2490][INFO][MAIN] Duplicate execution. +[28 10:38:31][2496][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:31][2496][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:31][2496][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:31][2496][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:31][2496][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:31][2496][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:31][2496][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:31][2496][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:31][2496][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:31][2496][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:31][2496][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:31][2496][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:31][2496][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:31][2496][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:31][2496][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:31][2496][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:31][2496][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:31][2496][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:31][2496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:31][2496][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:31][2496][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:31][2496][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:31][2496][INFO][MAIN] Duplicate execution. +[28 10:38:34][2502][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:34][2502][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:34][2502][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:34][2502][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:34][2502][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:34][2502][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:34][2502][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:34][2502][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:34][2502][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:34][2502][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:34][2502][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:34][2502][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:34][2502][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:34][2502][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:34][2502][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:34][2502][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:34][2502][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:34][2502][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:34][2502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:34][2502][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:34][2502][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:34][2502][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:34][2502][INFO][MAIN] Duplicate execution. +[28 10:38:37][2508][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:37][2508][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:37][2508][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:37][2508][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:37][2508][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:37][2508][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:37][2508][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:37][2508][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:37][2508][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:37][2508][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:37][2508][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:37][2508][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:37][2508][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:37][2508][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:37][2508][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:37][2508][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:37][2508][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:37][2508][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:37][2508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:37][2508][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:37][2508][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:37][2508][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:37][2508][INFO][MAIN] Duplicate execution. +[28 10:38:40][2514][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:40][2514][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:40][2514][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:40][2514][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:40][2514][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:40][2514][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:40][2514][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:40][2514][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:40][2514][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:40][2514][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:40][2514][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:40][2514][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:40][2514][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:40][2514][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:40][2514][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:40][2514][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:40][2514][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:40][2514][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:40][2514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:40][2514][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:40][2514][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:40][2514][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:40][2514][INFO][MAIN] Duplicate execution. +[28 10:38:43][2520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:43][2520][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:43][2520][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:43][2520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:43][2520][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:43][2520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:43][2520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:43][2520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:43][2520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:43][2520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:43][2520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:43][2520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:43][2520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:43][2520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:43][2520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:43][2520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:43][2520][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:43][2520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:43][2520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:43][2520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:43][2520][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:43][2520][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:43][2520][INFO][MAIN] Duplicate execution. +[28 10:38:46][2526][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:46][2526][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:46][2526][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:46][2526][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:46][2526][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:46][2526][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:46][2526][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:46][2526][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:46][2526][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:46][2526][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:46][2526][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:46][2526][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:46][2526][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:46][2526][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:46][2526][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:46][2526][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:46][2526][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:46][2526][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:46][2526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:46][2526][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:46][2526][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:46][2526][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:46][2526][INFO][MAIN] Duplicate execution. +[28 10:38:49][2532][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:49][2532][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:49][2532][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:49][2532][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:49][2532][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:49][2532][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:49][2532][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:49][2532][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:49][2532][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:49][2532][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:49][2532][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:49][2532][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:49][2532][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:49][2532][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:49][2532][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:49][2532][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:49][2532][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:49][2532][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:49][2532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:49][2532][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:49][2532][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:49][2532][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:49][2532][INFO][MAIN] Duplicate execution. +[28 10:38:52][2538][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:52][2538][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:52][2538][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:52][2538][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:52][2538][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:52][2538][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:52][2538][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:52][2538][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:52][2538][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:52][2538][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:52][2538][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:52][2538][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:52][2538][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:52][2538][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:52][2538][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:52][2538][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:52][2538][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:52][2538][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:52][2538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:52][2538][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:52][2538][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:52][2538][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:52][2538][INFO][MAIN] Duplicate execution. +[28 10:38:55][2544][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:55][2544][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:55][2544][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:55][2544][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:55][2544][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:55][2544][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:55][2544][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:55][2544][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:55][2544][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:55][2544][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:55][2544][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:55][2544][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:55][2544][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:55][2544][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:55][2544][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:55][2544][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:55][2544][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:55][2544][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:55][2544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:55][2544][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:55][2544][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:55][2544][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:55][2544][INFO][MAIN] Duplicate execution. +[28 10:38:58][2550][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:38:58][2550][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:38:58][2550][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:38:58][2550][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:38:58][2550][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:38:58][2550][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:38:58][2550][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:38:58][2550][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:38:58][2550][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:38:58][2550][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:38:58][2550][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:38:58][2550][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:38:58][2550][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:38:58][2550][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:38:58][2550][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:38:58][2550][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:38:58][2550][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:38:58][2550][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:38:58][2550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:38:58][2550][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:38:58][2550][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:38:58][2550][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:38:58][2550][INFO][MAIN] Duplicate execution. +[28 10:39:01][2556][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:01][2556][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:01][2556][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:01][2556][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:01][2556][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:01][2556][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:01][2556][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:01][2556][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:01][2556][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:01][2556][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:01][2556][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:01][2556][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:01][2556][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:01][2556][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:01][2556][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:01][2556][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:01][2556][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:01][2556][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:01][2556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:01][2556][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:01][2556][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:01][2556][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:01][2556][INFO][MAIN] Duplicate execution. +[28 10:39:04][2562][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:04][2562][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:04][2562][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:04][2562][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:04][2562][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:04][2562][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:04][2562][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:04][2562][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:04][2562][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:04][2562][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:04][2562][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:04][2562][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:04][2562][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:04][2562][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:04][2562][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:04][2562][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:04][2562][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:04][2562][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:04][2562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:04][2562][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:04][2562][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:04][2562][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:04][2562][INFO][MAIN] Duplicate execution. +[28 10:39:07][2568][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:07][2568][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:07][2568][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:07][2568][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:07][2568][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:07][2568][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:07][2568][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:07][2568][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:07][2568][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:07][2568][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:07][2568][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:07][2568][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:07][2568][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:07][2568][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:07][2568][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:07][2568][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:07][2568][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:07][2568][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:07][2568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:07][2568][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:07][2568][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:07][2568][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:07][2568][INFO][MAIN] Duplicate execution. +[28 10:39:10][2574][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:10][2574][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:10][2574][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:10][2574][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:10][2574][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:10][2574][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:10][2574][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:10][2574][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:10][2574][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:10][2574][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:10][2574][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:10][2574][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:10][2574][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:10][2574][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:10][2574][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:10][2574][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:10][2574][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:10][2574][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:10][2574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:10][2574][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:10][2574][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:10][2574][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:10][2574][INFO][MAIN] Duplicate execution. +[28 10:39:13][2580][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:13][2580][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:13][2580][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:13][2580][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:13][2580][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:13][2580][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:13][2580][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:13][2580][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:13][2580][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:13][2580][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:13][2580][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:13][2580][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:13][2580][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:13][2580][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:13][2580][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:13][2580][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:13][2580][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:13][2580][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:13][2580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:13][2580][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:13][2580][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:13][2580][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:13][2580][INFO][MAIN] Duplicate execution. +[28 10:39:16][2586][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:16][2586][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:16][2586][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:16][2586][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:16][2586][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:16][2586][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:16][2586][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:16][2586][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:16][2586][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:16][2586][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:16][2586][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:16][2586][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:16][2586][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:16][2586][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:16][2586][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:16][2586][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:16][2586][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:16][2586][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:16][2586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:16][2586][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:16][2586][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:16][2586][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:16][2586][INFO][MAIN] Duplicate execution. +[28 10:39:19][2592][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:19][2592][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:19][2592][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:19][2592][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:19][2592][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:19][2592][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:19][2592][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:19][2592][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:19][2592][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:19][2592][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:19][2592][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:19][2592][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:19][2592][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:19][2592][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:19][2592][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:19][2592][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:19][2592][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:19][2592][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:19][2592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:19][2592][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:19][2592][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:19][2592][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:19][2592][INFO][MAIN] Duplicate execution. +[28 10:39:22][2598][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:22][2598][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:22][2598][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:22][2598][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:22][2598][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:22][2598][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:22][2598][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:22][2598][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:22][2598][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:22][2598][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:22][2598][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:22][2598][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:22][2598][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:22][2598][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:22][2598][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:22][2598][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:22][2598][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:22][2598][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:22][2598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:22][2598][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:22][2598][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:22][2598][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:22][2598][INFO][MAIN] Duplicate execution. +[28 10:39:25][2604][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:25][2604][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:25][2604][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:25][2604][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:25][2604][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:25][2604][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:25][2604][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:25][2604][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:25][2604][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:25][2604][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:25][2604][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:25][2604][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:25][2604][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:25][2604][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:25][2604][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:25][2604][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:25][2604][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:25][2604][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:25][2604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:25][2604][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:25][2604][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:25][2604][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:25][2604][INFO][MAIN] Duplicate execution. +[28 10:39:28][2610][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:28][2610][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:28][2610][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:28][2610][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:28][2610][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:28][2610][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:28][2610][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:28][2610][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:28][2610][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:28][2610][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:28][2610][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:28][2610][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:28][2610][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:28][2610][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:28][2610][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:28][2610][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:28][2610][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:28][2610][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:28][2610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:28][2610][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:28][2610][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:28][2610][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:28][2610][INFO][MAIN] Duplicate execution. +[28 10:39:31][2616][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:31][2616][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:31][2616][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:31][2616][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:31][2616][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:31][2616][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:31][2616][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:31][2616][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:31][2616][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:31][2616][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:31][2616][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:31][2616][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:31][2616][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:31][2616][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:31][2616][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:31][2616][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:31][2616][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:31][2616][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:31][2616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:31][2616][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:31][2616][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:31][2616][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:31][2616][INFO][MAIN] Duplicate execution. +[28 10:39:34][2622][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:34][2622][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:34][2622][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:34][2622][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:34][2622][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:34][2622][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:34][2622][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:34][2622][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:34][2622][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:34][2622][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:34][2622][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:34][2622][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:34][2622][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:34][2622][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:34][2622][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:34][2622][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:34][2622][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:34][2622][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:34][2622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:34][2622][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:34][2622][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:34][2622][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:34][2622][INFO][MAIN] Duplicate execution. +[28 10:39:37][2628][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:37][2628][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:37][2628][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:37][2628][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:37][2628][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:37][2628][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:37][2628][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:37][2628][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:37][2628][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:37][2628][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:37][2628][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:37][2628][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:37][2628][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:37][2628][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:37][2628][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:37][2628][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:37][2628][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:37][2628][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:37][2628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:37][2628][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:37][2628][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:37][2628][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:37][2628][INFO][MAIN] Duplicate execution. +[28 10:39:40][2634][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:40][2634][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:40][2634][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:40][2634][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:40][2634][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:40][2634][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:40][2634][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:40][2634][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:40][2634][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:40][2634][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:40][2634][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:40][2634][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:40][2634][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:40][2634][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:40][2634][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:40][2634][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:40][2634][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:40][2634][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:40][2634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:40][2634][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:40][2634][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:40][2634][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:40][2634][INFO][MAIN] Duplicate execution. +[28 10:39:43][2640][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:43][2640][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:43][2640][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:43][2640][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:43][2640][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:43][2640][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:43][2640][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:43][2640][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:43][2640][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:43][2640][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:43][2640][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:43][2640][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:43][2640][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:43][2640][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:43][2640][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:43][2640][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:43][2640][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:43][2640][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:43][2640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:43][2640][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:43][2640][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:43][2640][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:43][2640][INFO][MAIN] Duplicate execution. +[28 10:39:46][2646][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:46][2646][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:46][2646][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:46][2646][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:46][2646][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:46][2646][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:46][2646][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:46][2646][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:46][2646][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:46][2646][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:46][2646][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:46][2646][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:46][2646][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:46][2646][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:46][2646][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:46][2646][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:46][2646][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:46][2646][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:46][2646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:46][2646][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:46][2646][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:46][2646][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:46][2646][INFO][MAIN] Duplicate execution. +[28 10:39:49][2652][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:49][2652][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:49][2652][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:49][2652][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:49][2652][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:49][2652][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:49][2652][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:49][2652][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:49][2652][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:49][2652][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:49][2652][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:49][2652][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:49][2652][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:49][2652][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:49][2652][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:49][2652][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:49][2652][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:49][2652][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:49][2652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:49][2652][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:49][2652][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:49][2652][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:49][2652][INFO][MAIN] Duplicate execution. +[28 10:39:52][2658][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:52][2658][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:52][2658][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:52][2658][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:52][2658][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:52][2658][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:52][2658][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:52][2658][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:52][2658][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:52][2658][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:52][2658][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:52][2658][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:52][2658][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:52][2658][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:52][2658][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:52][2658][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:52][2658][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:52][2658][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:52][2658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:52][2658][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:52][2658][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:52][2658][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:52][2658][INFO][MAIN] Duplicate execution. +[28 10:39:55][2664][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:55][2664][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:55][2664][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:55][2664][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:55][2664][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:55][2664][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:55][2664][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:55][2664][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:55][2664][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:55][2664][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:55][2664][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:55][2664][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:55][2664][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:55][2664][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:55][2664][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:55][2664][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:55][2664][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:55][2664][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:55][2664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:55][2664][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:55][2664][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:55][2664][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:55][2664][INFO][MAIN] Duplicate execution. +[28 10:39:58][2670][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:39:58][2670][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:39:58][2670][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:39:58][2670][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:39:58][2670][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:39:58][2670][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:39:58][2670][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:39:58][2670][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:39:58][2670][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:39:58][2670][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:39:58][2670][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:39:58][2670][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:39:58][2670][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:39:58][2670][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:39:58][2670][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:39:58][2670][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:39:58][2670][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:39:58][2670][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:39:58][2670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:39:58][2670][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:39:58][2670][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:39:58][2670][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:39:58][2670][INFO][MAIN] Duplicate execution. +[28 10:40:01][2676][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:01][2676][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:01][2676][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:01][2676][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:01][2676][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:01][2676][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:01][2676][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:01][2676][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:01][2676][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:01][2676][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:01][2676][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:01][2676][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:01][2676][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:01][2676][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:01][2676][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:01][2676][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:01][2676][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:01][2676][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:01][2676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:01][2676][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:01][2676][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:01][2676][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:01][2676][INFO][MAIN] Duplicate execution. +[28 10:40:04][2682][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:04][2682][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:04][2682][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:04][2682][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:04][2682][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:04][2682][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:04][2682][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:04][2682][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:04][2682][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:04][2682][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:04][2682][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:04][2682][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:04][2682][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:04][2682][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:04][2682][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:04][2682][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:04][2682][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:04][2682][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:04][2682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:04][2682][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:04][2682][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:04][2682][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:04][2682][INFO][MAIN] Duplicate execution. +[28 10:40:07][2688][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:07][2688][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:07][2688][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:07][2688][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:07][2688][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:07][2688][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:07][2688][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:07][2688][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:07][2688][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:07][2688][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:07][2688][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:07][2688][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:07][2688][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:07][2688][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:07][2688][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:07][2688][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:07][2688][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:07][2688][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:07][2688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:07][2688][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:07][2688][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:07][2688][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:07][2688][INFO][MAIN] Duplicate execution. +[28 10:40:10][2694][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:10][2694][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:10][2694][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:10][2694][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:10][2694][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:10][2694][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:10][2694][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:10][2694][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:10][2694][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:10][2694][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:10][2694][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:10][2694][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:10][2694][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:10][2694][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:10][2694][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:10][2694][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:10][2694][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:10][2694][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:10][2694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:10][2694][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:10][2694][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:10][2694][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:10][2694][INFO][MAIN] Duplicate execution. +[28 10:40:13][2700][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:13][2700][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:13][2700][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:13][2700][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:13][2700][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:13][2700][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:13][2700][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:13][2700][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:13][2700][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:13][2700][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:13][2700][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:13][2700][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:13][2700][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:13][2700][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:13][2700][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:13][2700][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:13][2700][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:13][2700][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:13][2700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:13][2700][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:13][2700][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:13][2700][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:13][2700][INFO][MAIN] Duplicate execution. +[28 10:40:16][2706][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:16][2706][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:16][2706][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:16][2706][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:16][2706][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:16][2706][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:16][2706][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:16][2706][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:16][2706][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:16][2706][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:16][2706][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:16][2706][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:16][2706][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:16][2706][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:16][2706][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:16][2706][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:16][2706][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:16][2706][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:16][2706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:16][2706][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:16][2706][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:16][2706][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:16][2706][INFO][MAIN] Duplicate execution. +[28 10:40:19][2712][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:19][2712][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:19][2712][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:19][2712][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:19][2712][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:19][2712][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:19][2712][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:19][2712][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:19][2712][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:19][2712][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:19][2712][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:19][2712][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:19][2712][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:19][2712][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:19][2712][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:19][2712][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:19][2712][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:19][2712][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:19][2712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:19][2712][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:19][2712][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:19][2712][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:19][2712][INFO][MAIN] Duplicate execution. +[28 10:40:22][2718][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:22][2718][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:22][2718][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:22][2718][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:22][2718][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:22][2718][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:22][2718][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:22][2718][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:22][2718][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:22][2718][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:22][2718][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:22][2718][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:22][2718][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:22][2718][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:22][2718][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:22][2718][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:22][2718][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:22][2718][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:22][2718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:22][2718][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:22][2718][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:22][2718][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:22][2718][INFO][MAIN] Duplicate execution. +[28 10:40:25][2724][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:25][2724][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:25][2724][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:25][2724][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:25][2724][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:25][2724][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:25][2724][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:25][2724][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:25][2724][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:25][2724][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:25][2724][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:25][2724][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:25][2724][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:25][2724][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:25][2724][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:25][2724][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:25][2724][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:25][2724][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:25][2724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:25][2724][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:25][2724][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:25][2724][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:25][2724][INFO][MAIN] Duplicate execution. +[28 10:40:28][2730][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:28][2730][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:28][2730][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:28][2730][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:28][2730][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:28][2730][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:28][2730][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:28][2730][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:28][2730][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:28][2730][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:28][2730][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:28][2730][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:28][2730][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:28][2730][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:28][2730][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:28][2730][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:28][2730][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:28][2730][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:28][2730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:28][2730][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:28][2730][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:28][2730][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:28][2730][INFO][MAIN] Duplicate execution. +[28 10:40:31][2736][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:31][2736][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:31][2736][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:31][2736][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:31][2736][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:31][2736][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:31][2736][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:31][2736][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:31][2736][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:31][2736][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:31][2736][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:31][2736][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:31][2736][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:31][2736][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:31][2736][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:31][2736][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:31][2736][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:31][2736][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:31][2736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:31][2736][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:31][2736][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:31][2736][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:31][2736][INFO][MAIN] Duplicate execution. +[28 10:40:34][2742][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:34][2742][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:34][2742][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:34][2742][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:34][2742][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:34][2742][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:34][2742][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:34][2742][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:34][2742][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:34][2742][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:34][2742][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:34][2742][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:34][2742][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:34][2742][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:34][2742][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:34][2742][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:34][2742][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:34][2742][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:34][2742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:34][2742][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:34][2742][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:34][2742][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:34][2742][INFO][MAIN] Duplicate execution. +[28 10:40:37][2748][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:37][2748][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:37][2748][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:37][2748][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:37][2748][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:37][2748][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:37][2748][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:37][2748][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:37][2748][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:37][2748][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:37][2748][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:37][2748][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:37][2748][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:37][2748][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:37][2748][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:37][2748][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:37][2748][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:37][2748][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:37][2748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:37][2748][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:37][2748][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:37][2748][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:37][2748][INFO][MAIN] Duplicate execution. +[28 10:40:40][2754][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:40][2754][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:40][2754][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:40][2754][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:40][2754][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:40][2754][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:40][2754][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:40][2754][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:40][2754][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:40][2754][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:40][2754][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:40][2754][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:40][2754][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:40][2754][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:40][2754][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:40][2754][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:40][2754][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:40][2754][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:40][2754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:40][2754][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:40][2754][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:40][2754][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:40][2754][INFO][MAIN] Duplicate execution. +[28 10:40:43][2760][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:43][2760][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:43][2760][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:43][2760][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:43][2760][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:43][2760][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:43][2760][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:43][2760][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:43][2760][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:43][2760][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:43][2760][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:43][2760][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:43][2760][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:43][2760][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:43][2760][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:43][2760][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:43][2760][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:43][2760][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:43][2760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:43][2760][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:43][2760][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:43][2760][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:43][2760][INFO][MAIN] Duplicate execution. +[28 10:40:46][2766][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:46][2766][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:46][2766][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:46][2766][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:46][2766][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:46][2766][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:46][2766][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:46][2766][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:46][2766][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:46][2766][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:46][2766][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:46][2766][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:46][2766][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:46][2766][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:46][2766][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:46][2766][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:46][2766][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:46][2766][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:46][2766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:46][2766][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:46][2766][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:46][2766][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:46][2766][INFO][MAIN] Duplicate execution. +[28 10:40:49][2772][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:49][2772][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:49][2772][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:49][2772][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:49][2772][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:49][2772][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:49][2772][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:49][2772][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:49][2772][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:49][2772][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:49][2772][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:49][2772][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:49][2772][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:49][2772][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:49][2772][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:49][2772][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:49][2772][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:49][2772][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:49][2772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:49][2772][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:49][2772][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:49][2772][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:49][2772][INFO][MAIN] Duplicate execution. +[28 10:40:52][2778][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:52][2778][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:52][2778][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:52][2778][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:52][2778][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:52][2778][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:52][2778][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:52][2778][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:52][2778][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:52][2778][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:52][2778][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:52][2778][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:52][2778][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:52][2778][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:52][2778][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:52][2778][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:52][2778][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:52][2778][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:52][2778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:52][2778][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:52][2778][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:52][2778][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:52][2778][INFO][MAIN] Duplicate execution. +[28 10:40:55][2784][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:55][2784][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:55][2784][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:55][2784][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:55][2784][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:55][2784][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:55][2784][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:55][2784][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:55][2784][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:55][2784][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:55][2784][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:55][2784][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:55][2784][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:55][2784][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:55][2784][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:55][2784][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:55][2784][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:55][2784][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:55][2784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:55][2784][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:55][2784][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:55][2784][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:55][2784][INFO][MAIN] Duplicate execution. +[28 10:40:58][2790][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:40:58][2790][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:40:58][2790][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:40:58][2790][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:40:58][2790][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:40:58][2790][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:40:58][2790][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:40:58][2790][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:40:58][2790][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:40:58][2790][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:40:58][2790][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:40:58][2790][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:40:58][2790][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:40:58][2790][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:40:58][2790][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:40:58][2790][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:40:58][2790][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:40:58][2790][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:40:58][2790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:40:58][2790][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:40:58][2790][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:40:58][2790][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:40:58][2790][INFO][MAIN] Duplicate execution. +[28 10:41:01][2796][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:01][2796][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:01][2796][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:01][2796][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:01][2796][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:01][2796][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:01][2796][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:01][2796][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:01][2796][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:01][2796][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:01][2796][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:01][2796][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:01][2796][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:01][2796][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:01][2796][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:01][2796][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:01][2796][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:01][2796][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:01][2796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:01][2796][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:01][2796][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:01][2796][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:01][2796][INFO][MAIN] Duplicate execution. +[28 10:41:04][2802][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:04][2802][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:04][2802][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:04][2802][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:04][2802][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:04][2802][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:04][2802][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:04][2802][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:04][2802][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:04][2802][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:04][2802][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:04][2802][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:04][2802][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:04][2802][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:04][2802][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:04][2802][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:04][2802][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:04][2802][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:04][2802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:04][2802][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:04][2802][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:04][2802][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:04][2802][INFO][MAIN] Duplicate execution. +[28 10:41:07][2808][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:07][2808][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:07][2808][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:07][2808][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:07][2808][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:07][2808][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:07][2808][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:07][2808][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:07][2808][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:07][2808][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:07][2808][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:07][2808][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:07][2808][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:07][2808][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:07][2808][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:07][2808][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:07][2808][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:07][2808][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:07][2808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:07][2808][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:07][2808][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:07][2808][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:07][2808][INFO][MAIN] Duplicate execution. +[28 10:41:10][2814][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:10][2814][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:10][2814][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:10][2814][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:10][2814][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:10][2814][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:10][2814][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:10][2814][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:10][2814][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:10][2814][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:10][2814][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:10][2814][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:10][2814][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:10][2814][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:10][2814][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:10][2814][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:10][2814][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:10][2814][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:10][2814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:10][2814][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:10][2814][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:10][2814][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:10][2814][INFO][MAIN] Duplicate execution. +[28 10:41:13][2820][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:13][2820][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:13][2820][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:13][2820][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:13][2820][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:13][2820][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:13][2820][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:13][2820][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:13][2820][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:13][2820][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:13][2820][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:13][2820][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:13][2820][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:13][2820][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:13][2820][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:13][2820][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:13][2820][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:13][2820][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:13][2820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:13][2820][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:13][2820][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:13][2820][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:13][2820][INFO][MAIN] Duplicate execution. +[28 10:41:16][2826][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:16][2826][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:16][2826][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:16][2826][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:16][2826][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:16][2826][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:16][2826][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:16][2826][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:16][2826][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:16][2826][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:16][2826][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:16][2826][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:16][2826][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:16][2826][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:16][2826][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:16][2826][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:16][2826][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:16][2826][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:16][2826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:16][2826][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:16][2826][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:16][2826][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:16][2826][INFO][MAIN] Duplicate execution. +[28 10:41:19][2832][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:19][2832][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:19][2832][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:19][2832][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:19][2832][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:19][2832][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:19][2832][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:19][2832][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:19][2832][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:19][2832][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:19][2832][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:19][2832][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:19][2832][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:19][2832][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:19][2832][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:19][2832][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:19][2832][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:19][2832][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:19][2832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:19][2832][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:19][2832][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:19][2832][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:19][2832][INFO][MAIN] Duplicate execution. +[28 10:41:22][2838][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:22][2838][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:22][2838][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:22][2838][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:22][2838][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:22][2838][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:22][2838][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:22][2838][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:22][2838][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:22][2838][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:22][2838][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:22][2838][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:22][2838][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:22][2838][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:22][2838][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:22][2838][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:22][2838][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:22][2838][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:22][2838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:22][2838][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:22][2838][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:22][2838][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:22][2838][INFO][MAIN] Duplicate execution. +[28 10:41:25][2844][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:25][2844][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:25][2844][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:25][2844][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:25][2844][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:25][2844][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:25][2844][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:25][2844][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:25][2844][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:25][2844][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:25][2844][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:25][2844][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:25][2844][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:25][2844][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:25][2844][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:25][2844][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:25][2844][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:25][2844][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:25][2844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:25][2844][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:25][2844][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:25][2844][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:25][2844][INFO][MAIN] Duplicate execution. +[28 10:41:28][2850][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:28][2850][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:28][2850][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:28][2850][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:28][2850][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:28][2850][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:28][2850][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:28][2850][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:28][2850][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:28][2850][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:28][2850][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:28][2850][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:28][2850][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:28][2850][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:28][2850][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:28][2850][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:28][2850][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:28][2850][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:28][2850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:28][2850][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:28][2850][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:28][2850][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:28][2850][INFO][MAIN] Duplicate execution. +[28 10:41:31][2856][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:31][2856][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:31][2856][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:31][2856][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:31][2856][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:31][2856][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:31][2856][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:31][2856][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:31][2856][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:31][2856][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:31][2856][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:31][2856][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:31][2856][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:31][2856][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:31][2856][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:31][2856][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:31][2856][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:31][2856][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:31][2856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:31][2856][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:31][2856][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:31][2856][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:31][2856][INFO][MAIN] Duplicate execution. +[28 10:41:34][2862][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:34][2862][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:34][2862][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:34][2862][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:34][2862][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:34][2862][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:34][2862][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:34][2862][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:34][2862][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:34][2862][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:34][2862][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:34][2862][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:34][2862][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:34][2862][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:34][2862][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:34][2862][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:34][2862][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:34][2862][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:34][2862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:34][2862][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:34][2862][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:34][2862][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:34][2862][INFO][MAIN] Duplicate execution. +[28 10:41:37][2868][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:37][2868][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:37][2868][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:37][2868][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:37][2868][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:37][2868][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:37][2868][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:37][2868][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:37][2868][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:37][2868][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:37][2868][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:37][2868][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:37][2868][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:37][2868][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:37][2868][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:37][2868][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:37][2868][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:37][2868][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:37][2868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:37][2868][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:37][2868][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:37][2868][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:37][2868][INFO][MAIN] Duplicate execution. +[28 10:41:40][2874][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:40][2874][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:40][2874][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:40][2874][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:40][2874][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:40][2874][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:40][2874][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:40][2874][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:40][2874][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:40][2874][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:40][2874][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:40][2874][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:40][2874][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:40][2874][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:40][2874][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:40][2874][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:40][2874][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:40][2874][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:40][2874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:40][2874][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:40][2874][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:40][2874][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:40][2874][INFO][MAIN] Duplicate execution. +[28 10:41:43][2880][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:43][2880][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:43][2880][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:43][2880][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:43][2880][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:43][2880][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:43][2880][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:43][2880][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:43][2880][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:43][2880][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:43][2880][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:43][2880][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:43][2880][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:43][2880][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:43][2880][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:43][2880][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:43][2880][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:43][2880][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:43][2880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:43][2880][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:43][2880][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:43][2880][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:43][2880][INFO][MAIN] Duplicate execution. +[28 10:41:46][2886][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:46][2886][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:46][2886][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:46][2886][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:46][2886][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:46][2886][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:46][2886][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:46][2886][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:46][2886][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:46][2886][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:46][2886][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:46][2886][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:46][2886][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:46][2886][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:46][2886][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:46][2886][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:46][2886][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:46][2886][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:46][2886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:46][2886][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:46][2886][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:46][2886][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:46][2886][INFO][MAIN] Duplicate execution. +[28 10:41:49][2892][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:49][2892][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:49][2892][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:49][2892][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:49][2892][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:49][2892][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:49][2892][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:49][2892][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:49][2892][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:49][2892][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:49][2892][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:49][2892][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:49][2892][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:49][2892][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:49][2892][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:49][2892][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:49][2892][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:49][2892][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:49][2892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:49][2892][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:49][2892][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:49][2892][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:49][2892][INFO][MAIN] Duplicate execution. +[28 10:41:52][2898][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:52][2898][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:52][2898][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:52][2898][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:52][2898][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:52][2898][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:52][2898][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:52][2898][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:52][2898][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:52][2898][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:52][2898][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:52][2898][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:52][2898][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:52][2898][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:52][2898][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:52][2898][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:52][2898][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:52][2898][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:52][2898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:52][2898][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:52][2898][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:52][2898][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:52][2898][INFO][MAIN] Duplicate execution. +[28 10:41:55][2904][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:55][2904][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:55][2904][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:55][2904][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:55][2904][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:55][2904][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:55][2904][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:55][2904][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:55][2904][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:55][2904][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:55][2904][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:55][2904][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:55][2904][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:55][2904][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:55][2904][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:55][2904][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:55][2904][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:55][2904][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:55][2904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:55][2904][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:55][2904][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:55][2904][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:55][2904][INFO][MAIN] Duplicate execution. +[28 10:41:58][2910][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:41:58][2910][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:41:58][2910][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:41:58][2910][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:41:58][2910][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:41:58][2910][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:41:58][2910][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:41:58][2910][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:41:58][2910][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:41:58][2910][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:41:58][2910][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:41:58][2910][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:41:58][2910][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:41:58][2910][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:41:58][2910][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:41:58][2910][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:41:58][2910][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:41:58][2910][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:41:58][2910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:41:58][2910][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:41:58][2910][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:41:58][2910][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:41:58][2910][INFO][MAIN] Duplicate execution. +[28 10:42:01][2916][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:01][2916][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:01][2916][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:01][2916][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:01][2916][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:01][2916][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:01][2916][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:01][2916][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:01][2916][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:01][2916][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:01][2916][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:01][2916][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:01][2916][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:01][2916][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:01][2916][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:01][2916][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:01][2916][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:01][2916][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:01][2916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:01][2916][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:01][2916][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:01][2916][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:01][2916][INFO][MAIN] Duplicate execution. +[28 10:42:04][2922][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:04][2922][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:04][2922][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:04][2922][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:04][2922][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:04][2922][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:04][2922][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:04][2922][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:04][2922][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:04][2922][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:04][2922][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:04][2922][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:04][2922][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:04][2922][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:04][2922][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:04][2922][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:04][2922][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:04][2922][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:04][2922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:04][2922][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:04][2922][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:04][2922][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:04][2922][INFO][MAIN] Duplicate execution. +[28 10:42:07][2928][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:07][2928][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:07][2928][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:07][2928][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:07][2928][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:07][2928][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:07][2928][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:07][2928][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:07][2928][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:07][2928][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:07][2928][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:07][2928][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:07][2928][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:07][2928][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:07][2928][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:07][2928][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:07][2928][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:07][2928][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:07][2928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:07][2928][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:07][2928][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:07][2928][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:07][2928][INFO][MAIN] Duplicate execution. +[28 10:42:10][2934][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:10][2934][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:10][2934][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:10][2934][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:10][2934][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:10][2934][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:10][2934][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:10][2934][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:10][2934][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:10][2934][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:10][2934][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:10][2934][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:10][2934][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:10][2934][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:10][2934][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:10][2934][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:10][2934][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:10][2934][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:10][2934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:10][2934][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:10][2934][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:10][2934][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:10][2934][INFO][MAIN] Duplicate execution. +[28 10:42:13][2940][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:13][2940][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:13][2940][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:13][2940][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:13][2940][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:13][2940][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:13][2940][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:13][2940][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:13][2940][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:13][2940][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:13][2940][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:13][2940][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:13][2940][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:13][2940][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:13][2940][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:13][2940][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:13][2940][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:13][2940][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:13][2940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:13][2940][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:13][2940][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:13][2940][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:13][2940][INFO][MAIN] Duplicate execution. +[28 10:42:16][2946][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:16][2946][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:16][2946][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:16][2946][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:16][2946][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:16][2946][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:16][2946][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:16][2946][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:16][2946][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:16][2946][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:16][2946][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:16][2946][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:16][2946][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:16][2946][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:16][2946][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:16][2946][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:16][2946][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:16][2946][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:16][2946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:16][2946][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:16][2946][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:16][2946][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:16][2946][INFO][MAIN] Duplicate execution. +[28 10:42:19][2952][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:19][2952][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:19][2952][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:19][2952][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:19][2952][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:19][2952][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:19][2952][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:19][2952][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:19][2952][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:19][2952][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:19][2952][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:19][2952][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:19][2952][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:19][2952][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:19][2952][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:19][2952][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:19][2952][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:19][2952][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:19][2952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:19][2952][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:19][2952][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:19][2952][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:19][2952][INFO][MAIN] Duplicate execution. +[28 10:42:22][2958][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:22][2958][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:22][2958][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:22][2958][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:22][2958][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:22][2958][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:22][2958][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:22][2958][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:22][2958][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:22][2958][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:22][2958][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:22][2958][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:22][2958][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:22][2958][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:22][2958][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:22][2958][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:22][2958][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:22][2958][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:22][2958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:22][2958][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:22][2958][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:22][2958][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:22][2958][INFO][MAIN] Duplicate execution. +[28 10:42:25][2964][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:25][2964][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:25][2964][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:25][2964][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:25][2964][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:25][2964][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:25][2964][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:25][2964][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:25][2964][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:25][2964][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:25][2964][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:25][2964][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:25][2964][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:25][2964][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:25][2964][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:25][2964][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:25][2964][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:25][2964][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:25][2964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:25][2964][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:25][2964][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:25][2964][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:25][2964][INFO][MAIN] Duplicate execution. +[28 10:42:28][2970][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:28][2970][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:28][2970][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:28][2970][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:28][2970][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:28][2970][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:28][2970][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:28][2970][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:28][2970][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:28][2970][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:28][2970][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:28][2970][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:28][2970][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:28][2970][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:28][2970][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:28][2970][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:28][2970][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:28][2970][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:28][2970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:28][2970][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:28][2970][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:28][2970][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:28][2970][INFO][MAIN] Duplicate execution. +[28 10:42:31][2976][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:31][2976][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:31][2976][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:31][2976][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:31][2976][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:31][2976][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:31][2976][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:31][2976][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:31][2976][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:31][2976][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:31][2976][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:31][2976][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:31][2976][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:31][2976][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:31][2976][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:31][2976][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:31][2976][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:31][2976][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:31][2976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:31][2976][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:31][2976][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:31][2976][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:31][2976][INFO][MAIN] Duplicate execution. +[28 10:42:34][2982][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:34][2982][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:34][2982][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:34][2982][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:34][2982][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:34][2982][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:34][2982][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:34][2982][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:34][2982][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:34][2982][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:34][2982][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:34][2982][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:34][2982][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:34][2982][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:34][2982][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:34][2982][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:34][2982][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:34][2982][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:34][2982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:34][2982][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:34][2982][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:34][2982][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:34][2982][INFO][MAIN] Duplicate execution. +[28 10:42:37][2988][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:37][2988][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:37][2988][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:37][2988][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:37][2988][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:37][2988][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:37][2988][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:37][2988][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:37][2988][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:37][2988][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:37][2988][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:37][2988][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:37][2988][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:37][2988][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:37][2988][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:37][2988][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:37][2988][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:37][2988][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:37][2988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:37][2988][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:37][2988][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:37][2988][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:37][2988][INFO][MAIN] Duplicate execution. +[28 10:42:40][2994][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:40][2994][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:40][2994][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:40][2994][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:40][2994][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:40][2994][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:40][2994][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:40][2994][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:40][2994][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:40][2994][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:40][2994][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:40][2994][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:40][2994][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:40][2994][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:40][2994][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:40][2994][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:40][2994][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:40][2994][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:40][2994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:40][2994][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:40][2994][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:40][2994][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:40][2994][INFO][MAIN] Duplicate execution. +[28 10:42:43][3000][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:43][3000][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:43][3000][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:43][3000][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:43][3000][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:43][3000][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:43][3000][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:43][3000][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:43][3000][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:43][3000][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:43][3000][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:43][3000][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:43][3000][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:43][3000][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:43][3000][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:43][3000][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:43][3000][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:43][3000][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:43][3000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:43][3000][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:43][3000][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:43][3000][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:43][3000][INFO][MAIN] Duplicate execution. +[28 10:42:46][3006][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:46][3006][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:46][3006][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:46][3006][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:46][3006][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:46][3006][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:46][3006][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:46][3006][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:46][3006][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:46][3006][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:46][3006][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:46][3006][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:46][3006][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:46][3006][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:46][3006][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:46][3006][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:46][3006][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:46][3006][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:46][3006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:46][3006][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:46][3006][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:46][3006][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:46][3006][INFO][MAIN] Duplicate execution. +[28 10:42:49][3012][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:49][3012][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:49][3012][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:49][3012][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:49][3012][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:49][3012][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:49][3012][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:49][3012][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:49][3012][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:49][3012][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:49][3012][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:49][3012][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:49][3012][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:49][3012][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:49][3012][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:49][3012][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:49][3012][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:49][3012][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:49][3012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:49][3012][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:49][3012][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:49][3012][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:49][3012][INFO][MAIN] Duplicate execution. +[28 10:42:52][3018][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:52][3018][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:52][3018][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:52][3018][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:52][3018][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:52][3018][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:52][3018][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:52][3018][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:52][3018][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:52][3018][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:52][3018][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:52][3018][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:52][3018][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:52][3018][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:52][3018][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:52][3018][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:52][3018][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:52][3018][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:52][3018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:52][3018][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:52][3018][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:52][3018][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:52][3018][INFO][MAIN] Duplicate execution. +[28 10:42:55][3024][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:55][3024][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:55][3024][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:55][3024][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:55][3024][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:55][3024][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:55][3024][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:55][3024][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:55][3024][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:55][3024][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:55][3024][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:55][3024][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:55][3024][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:55][3024][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:55][3024][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:55][3024][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:55][3024][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:55][3024][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:55][3024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:55][3024][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:55][3024][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:55][3024][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:55][3024][INFO][MAIN] Duplicate execution. +[28 10:42:58][3030][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:42:58][3030][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:42:58][3030][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:42:58][3030][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:42:58][3030][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:42:58][3030][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:42:58][3030][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:42:58][3030][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:42:58][3030][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:42:58][3030][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:42:58][3030][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:42:58][3030][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:42:58][3030][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:42:58][3030][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:42:58][3030][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:42:58][3030][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:42:58][3030][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:42:58][3030][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:42:58][3030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:42:58][3030][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:42:58][3030][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:42:58][3030][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:42:58][3030][INFO][MAIN] Duplicate execution. +[28 10:43:01][3036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:01][3036][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:01][3036][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:01][3036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:01][3036][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:01][3036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:01][3036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:01][3036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:01][3036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:01][3036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:01][3036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:01][3036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:01][3036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:01][3036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:01][3036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:01][3036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:01][3036][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:01][3036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:01][3036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:01][3036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:01][3036][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:01][3036][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:01][3036][INFO][MAIN] Duplicate execution. +[28 10:43:04][3042][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:04][3042][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:04][3042][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:04][3042][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:04][3042][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:04][3042][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:04][3042][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:04][3042][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:04][3042][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:04][3042][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:04][3042][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:04][3042][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:04][3042][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:04][3042][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:04][3042][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:04][3042][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:04][3042][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:04][3042][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:04][3042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:04][3042][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:04][3042][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:04][3042][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:04][3042][INFO][MAIN] Duplicate execution. +[28 10:43:07][3048][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:07][3048][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:07][3048][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:07][3048][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:07][3048][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:07][3048][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:07][3048][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:07][3048][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:07][3048][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:07][3048][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:07][3048][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:07][3048][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:07][3048][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:07][3048][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:07][3048][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:07][3048][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:07][3048][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:07][3048][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:07][3048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:07][3048][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:07][3048][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:07][3048][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:07][3048][INFO][MAIN] Duplicate execution. +[28 10:43:10][3054][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:10][3054][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:10][3054][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:10][3054][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:10][3054][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:10][3054][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:10][3054][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:10][3054][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:10][3054][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:10][3054][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:10][3054][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:10][3054][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:10][3054][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:10][3054][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:10][3054][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:10][3054][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:10][3054][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:10][3054][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:10][3054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:10][3054][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:10][3054][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:10][3054][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:10][3054][INFO][MAIN] Duplicate execution. +[28 10:43:13][3060][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:13][3060][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:13][3060][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:13][3060][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:13][3060][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:13][3060][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:13][3060][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:13][3060][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:13][3060][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:13][3060][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:13][3060][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:13][3060][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:13][3060][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:13][3060][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:13][3060][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:13][3060][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:13][3060][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:13][3060][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:13][3060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:13][3060][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:13][3060][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:13][3060][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:13][3060][INFO][MAIN] Duplicate execution. +[28 10:43:16][3066][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:16][3066][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:16][3066][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:16][3066][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:16][3066][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:16][3066][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:16][3066][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:16][3066][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:16][3066][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:16][3066][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:16][3066][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:16][3066][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:16][3066][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:16][3066][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:16][3066][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:16][3066][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:16][3066][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:16][3066][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:16][3066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:16][3066][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:16][3066][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:16][3066][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:16][3066][INFO][MAIN] Duplicate execution. +[28 10:43:19][3072][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:19][3072][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:19][3072][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:19][3072][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:19][3072][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:19][3072][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:19][3072][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:19][3072][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:19][3072][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:19][3072][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:19][3072][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:19][3072][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:19][3072][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:19][3072][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:19][3072][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:19][3072][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:19][3072][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:19][3072][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:19][3072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:19][3072][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:19][3072][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:19][3072][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:19][3072][INFO][MAIN] Duplicate execution. +[28 10:43:22][3078][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:22][3078][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:22][3078][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:22][3078][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:22][3078][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:22][3078][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:22][3078][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:22][3078][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:22][3078][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:22][3078][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:22][3078][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:22][3078][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:22][3078][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:22][3078][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:22][3078][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:22][3078][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:22][3078][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:22][3078][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:22][3078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:22][3078][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:22][3078][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:22][3078][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:22][3078][INFO][MAIN] Duplicate execution. +[28 10:43:25][3084][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:25][3084][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:25][3084][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:25][3084][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:25][3084][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:25][3084][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:25][3084][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:25][3084][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:25][3084][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:25][3084][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:25][3084][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:25][3084][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:25][3084][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:25][3084][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:25][3084][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:25][3084][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:25][3084][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:25][3084][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:25][3084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:25][3084][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:25][3084][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:25][3084][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:25][3084][INFO][MAIN] Duplicate execution. +[28 10:43:28][3090][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:28][3090][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:28][3090][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:28][3090][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:28][3090][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:28][3090][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:28][3090][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:28][3090][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:28][3090][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:28][3090][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:28][3090][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:28][3090][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:28][3090][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:28][3090][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:28][3090][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:28][3090][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:28][3090][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:28][3090][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:28][3090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:28][3090][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:28][3090][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:28][3090][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:28][3090][INFO][MAIN] Duplicate execution. +[28 10:43:31][3096][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:31][3096][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:31][3096][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:31][3096][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:31][3096][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:31][3096][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:31][3096][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:31][3096][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:31][3096][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:31][3096][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:31][3096][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:31][3096][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:31][3096][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:31][3096][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:31][3096][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:31][3096][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:31][3096][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:31][3096][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:31][3096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:31][3096][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:31][3096][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:31][3096][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:31][3096][INFO][MAIN] Duplicate execution. +[28 10:43:34][3102][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:34][3102][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:34][3102][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:34][3102][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:34][3102][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:34][3102][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:34][3102][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:34][3102][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:34][3102][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:34][3102][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:34][3102][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:34][3102][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:34][3102][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:34][3102][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:34][3102][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:34][3102][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:34][3102][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:34][3102][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:34][3102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:34][3102][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:34][3102][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:34][3102][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:34][3102][INFO][MAIN] Duplicate execution. +[28 10:43:37][3108][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:37][3108][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:37][3108][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:37][3108][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:37][3108][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:37][3108][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:37][3108][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:37][3108][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:37][3108][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:37][3108][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:37][3108][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:37][3108][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:37][3108][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:37][3108][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:37][3108][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:37][3108][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:37][3108][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:37][3108][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:37][3108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:37][3108][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:37][3108][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:37][3108][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:37][3108][INFO][MAIN] Duplicate execution. +[28 10:43:40][3114][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:40][3114][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:40][3114][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:40][3114][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:40][3114][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:40][3114][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:40][3114][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:40][3114][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:40][3114][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:40][3114][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:40][3114][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:40][3114][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:40][3114][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:40][3114][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:40][3114][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:40][3114][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:40][3114][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:40][3114][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:40][3114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:40][3114][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:40][3114][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:40][3114][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:40][3114][INFO][MAIN] Duplicate execution. +[28 10:43:43][3120][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:43][3120][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:43][3120][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:43][3120][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:43][3120][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:43][3120][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:43][3120][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:43][3120][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:43][3120][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:43][3120][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:43][3120][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:43][3120][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:43][3120][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:43][3120][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:43][3120][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:43][3120][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:43][3120][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:43][3120][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:43][3120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:43][3120][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:43][3120][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:43][3120][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:43][3120][INFO][MAIN] Duplicate execution. +[28 10:43:46][3126][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:46][3126][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:46][3126][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:46][3126][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:46][3126][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:46][3126][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:46][3126][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:46][3126][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:46][3126][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:46][3126][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:46][3126][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:46][3126][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:46][3126][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:46][3126][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:46][3126][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:46][3126][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:46][3126][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:46][3126][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:46][3126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:46][3126][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:46][3126][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:46][3126][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:46][3126][INFO][MAIN] Duplicate execution. +[28 10:43:49][3132][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:49][3132][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:49][3132][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:49][3132][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:49][3132][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:49][3132][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:49][3132][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:49][3132][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:49][3132][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:49][3132][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:49][3132][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:49][3132][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:49][3132][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:49][3132][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:49][3132][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:49][3132][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:49][3132][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:49][3132][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:49][3132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:49][3132][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:49][3132][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:49][3132][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:49][3132][INFO][MAIN] Duplicate execution. +[28 10:43:52][3138][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:52][3138][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:52][3138][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:52][3138][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:52][3138][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:52][3138][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:52][3138][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:52][3138][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:52][3138][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:52][3138][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:52][3138][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:52][3138][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:52][3138][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:52][3138][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:52][3138][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:52][3138][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:52][3138][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:52][3138][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:52][3138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:52][3138][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:52][3138][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:52][3138][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:52][3138][INFO][MAIN] Duplicate execution. +[28 10:43:55][3144][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:55][3144][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:55][3144][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:55][3144][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:55][3144][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:55][3144][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:55][3144][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:55][3144][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:55][3144][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:55][3144][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:55][3144][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:55][3144][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:55][3144][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:55][3144][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:55][3144][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:55][3144][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:55][3144][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:55][3144][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:55][3144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:55][3144][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:55][3144][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:55][3144][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:55][3144][INFO][MAIN] Duplicate execution. +[28 10:43:58][3150][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:43:58][3150][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:43:58][3150][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:43:58][3150][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:43:58][3150][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:43:58][3150][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:43:58][3150][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:43:58][3150][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:43:58][3150][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:43:58][3150][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:43:58][3150][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:43:58][3150][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:43:58][3150][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:43:58][3150][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:43:58][3150][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:43:58][3150][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:43:58][3150][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:43:58][3150][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:43:58][3150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:43:58][3150][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:43:58][3150][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:43:58][3150][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:43:58][3150][INFO][MAIN] Duplicate execution. +[28 10:44:01][3156][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:01][3156][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:01][3156][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:01][3156][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:01][3156][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:01][3156][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:01][3156][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:01][3156][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:01][3156][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:01][3156][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:01][3156][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:01][3156][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:01][3156][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:01][3156][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:01][3156][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:01][3156][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:01][3156][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:01][3156][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:01][3156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:01][3156][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:01][3156][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:01][3156][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:01][3156][INFO][MAIN] Duplicate execution. +[28 10:44:04][3162][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:04][3162][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:04][3162][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:04][3162][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:04][3162][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:04][3162][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:04][3162][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:04][3162][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:04][3162][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:04][3162][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:04][3162][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:04][3162][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:04][3162][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:04][3162][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:04][3162][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:04][3162][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:04][3162][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:04][3162][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:04][3162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:04][3162][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:04][3162][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:04][3162][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:04][3162][INFO][MAIN] Duplicate execution. +[28 10:44:07][3168][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:07][3168][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:07][3168][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:07][3168][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:07][3168][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:07][3168][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:07][3168][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:07][3168][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:07][3168][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:07][3168][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:07][3168][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:07][3168][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:07][3168][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:07][3168][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:07][3168][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:07][3168][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:07][3168][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:07][3168][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:07][3168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:07][3168][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:07][3168][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:07][3168][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:07][3168][INFO][MAIN] Duplicate execution. +[28 10:44:10][3174][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:10][3174][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:10][3174][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:10][3174][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:10][3174][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:10][3174][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:10][3174][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:10][3174][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:10][3174][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:10][3174][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:10][3174][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:10][3174][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:10][3174][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:10][3174][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:10][3174][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:10][3174][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:10][3174][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:10][3174][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:10][3174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:10][3174][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:10][3174][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:10][3174][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:10][3174][INFO][MAIN] Duplicate execution. +[28 10:44:13][3180][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:13][3180][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:13][3180][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:13][3180][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:13][3180][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:13][3180][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:13][3180][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:13][3180][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:13][3180][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:13][3180][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:13][3180][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:13][3180][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:13][3180][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:13][3180][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:13][3180][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:13][3180][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:13][3180][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:13][3180][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:13][3180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:13][3180][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:13][3180][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:13][3180][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:13][3180][INFO][MAIN] Duplicate execution. +[28 10:44:16][3186][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:16][3186][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:16][3186][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:16][3186][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:16][3186][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:16][3186][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:16][3186][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:16][3186][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:16][3186][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:16][3186][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:16][3186][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:16][3186][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:16][3186][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:16][3186][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:16][3186][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:16][3186][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:16][3186][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:16][3186][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:16][3186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:16][3186][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:16][3186][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:16][3186][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:16][3186][INFO][MAIN] Duplicate execution. +[28 10:44:19][3192][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:19][3192][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:19][3192][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:19][3192][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:19][3192][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:19][3192][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:19][3192][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:19][3192][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:19][3192][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:19][3192][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:19][3192][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:19][3192][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:19][3192][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:19][3192][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:19][3192][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:19][3192][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:19][3192][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:19][3192][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:19][3192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:19][3192][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:19][3192][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:19][3192][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:19][3192][INFO][MAIN] Duplicate execution. +[28 10:44:22][3198][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:22][3198][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:22][3198][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:22][3198][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:22][3198][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:22][3198][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:22][3198][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:22][3198][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:22][3198][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:22][3198][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:22][3198][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:22][3198][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:22][3198][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:22][3198][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:22][3198][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:22][3198][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:22][3198][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:22][3198][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:22][3198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:22][3198][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:22][3198][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:22][3198][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:22][3198][INFO][MAIN] Duplicate execution. +[28 10:44:25][3204][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:25][3204][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:25][3204][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:25][3204][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:25][3204][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:25][3204][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:25][3204][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:25][3204][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:25][3204][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:25][3204][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:25][3204][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:25][3204][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:25][3204][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:25][3204][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:25][3204][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:25][3204][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:25][3204][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:25][3204][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:25][3204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:25][3204][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:25][3204][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:25][3204][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:25][3204][INFO][MAIN] Duplicate execution. +[28 10:44:28][3210][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:28][3210][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:28][3210][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:28][3210][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:28][3210][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:28][3210][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:28][3210][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:28][3210][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:28][3210][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:28][3210][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:28][3210][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:28][3210][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:28][3210][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:28][3210][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:28][3210][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:28][3210][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:28][3210][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:28][3210][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:28][3210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:28][3210][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:28][3210][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:28][3210][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:28][3210][INFO][MAIN] Duplicate execution. +[28 10:44:31][3216][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:31][3216][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:31][3216][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:31][3216][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:31][3216][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:31][3216][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:31][3216][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:31][3216][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:31][3216][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:31][3216][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:31][3216][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:31][3216][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:31][3216][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:31][3216][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:31][3216][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:31][3216][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:31][3216][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:31][3216][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:31][3216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:31][3216][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:31][3216][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:31][3216][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:31][3216][INFO][MAIN] Duplicate execution. +[28 10:44:34][3222][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:34][3222][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:34][3222][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:34][3222][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:34][3222][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:34][3222][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:34][3222][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:34][3222][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:34][3222][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:34][3222][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:34][3222][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:34][3222][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:34][3222][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:34][3222][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:34][3222][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:34][3222][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:34][3222][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:34][3222][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:34][3222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:34][3222][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:34][3222][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:34][3222][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:34][3222][INFO][MAIN] Duplicate execution. +[28 10:44:37][3228][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:37][3228][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:37][3228][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:37][3228][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:37][3228][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:37][3228][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:37][3228][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:37][3228][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:37][3228][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:37][3228][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:37][3228][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:37][3228][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:37][3228][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:37][3228][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:37][3228][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:37][3228][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:37][3228][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:37][3228][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:37][3228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:37][3228][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:37][3228][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:37][3228][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:37][3228][INFO][MAIN] Duplicate execution. +[28 10:44:40][3234][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:40][3234][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:40][3234][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:40][3234][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:40][3234][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:40][3234][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:40][3234][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:40][3234][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:40][3234][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:40][3234][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:40][3234][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:40][3234][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:40][3234][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:40][3234][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:40][3234][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:40][3234][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:40][3234][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:40][3234][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:40][3234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:40][3234][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:40][3234][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:40][3234][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:40][3234][INFO][MAIN] Duplicate execution. +[28 10:44:43][3240][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:43][3240][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:43][3240][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:43][3240][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:43][3240][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:43][3240][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:43][3240][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:43][3240][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:43][3240][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:43][3240][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:43][3240][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:43][3240][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:43][3240][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:43][3240][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:43][3240][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:43][3240][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:43][3240][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:43][3240][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:43][3240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:43][3240][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:43][3240][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:43][3240][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:43][3240][INFO][MAIN] Duplicate execution. +[28 10:44:46][3246][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:46][3246][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:46][3246][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:46][3246][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:46][3246][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:46][3246][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:46][3246][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:46][3246][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:46][3246][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:46][3246][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:46][3246][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:46][3246][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:46][3246][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:46][3246][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:46][3246][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:46][3246][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:46][3246][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:46][3246][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:46][3246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:46][3246][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:46][3246][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:46][3246][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:46][3246][INFO][MAIN] Duplicate execution. +[28 10:44:49][3252][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:49][3252][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:49][3252][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:49][3252][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:49][3252][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:49][3252][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:49][3252][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:49][3252][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:49][3252][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:49][3252][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:49][3252][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:49][3252][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:49][3252][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:49][3252][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:49][3252][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:49][3252][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:49][3252][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:49][3252][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:49][3252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:49][3252][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:49][3252][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:49][3252][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:49][3252][INFO][MAIN] Duplicate execution. +[28 10:44:52][3258][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:52][3258][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:52][3258][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:52][3258][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:52][3258][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:52][3258][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:52][3258][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:52][3258][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:52][3258][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:52][3258][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:52][3258][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:52][3258][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:52][3258][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:52][3258][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:52][3258][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:52][3258][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:52][3258][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:52][3258][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:52][3258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:52][3258][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:52][3258][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:52][3258][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:52][3258][INFO][MAIN] Duplicate execution. +[28 10:44:55][3264][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:55][3264][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:55][3264][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:55][3264][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:55][3264][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:55][3264][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:55][3264][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:55][3264][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:55][3264][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:55][3264][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:55][3264][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:55][3264][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:55][3264][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:55][3264][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:55][3264][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:55][3264][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:55][3264][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:55][3264][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:55][3264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:55][3264][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:55][3264][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:55][3264][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:55][3264][INFO][MAIN] Duplicate execution. +[28 10:44:58][3270][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:44:58][3270][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:44:58][3270][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:44:58][3270][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:44:58][3270][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:44:58][3270][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:44:58][3270][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:44:58][3270][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:44:58][3270][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:44:58][3270][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:44:58][3270][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:44:58][3270][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:44:58][3270][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:44:58][3270][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:44:58][3270][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:44:58][3270][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:44:58][3270][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:44:58][3270][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:44:58][3270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:44:58][3270][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:44:58][3270][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:44:58][3270][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:44:58][3270][INFO][MAIN] Duplicate execution. +[28 10:45:01][3276][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:01][3276][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:01][3276][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:01][3276][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:01][3276][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:01][3276][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:01][3276][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:01][3276][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:01][3276][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:01][3276][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:01][3276][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:01][3276][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:01][3276][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:01][3276][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:01][3276][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:01][3276][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:01][3276][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:01][3276][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:01][3276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:01][3276][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:01][3276][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:01][3276][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:01][3276][INFO][MAIN] Duplicate execution. +[28 10:45:04][3282][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:04][3282][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:04][3282][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:04][3282][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:04][3282][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:04][3282][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:04][3282][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:04][3282][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:04][3282][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:04][3282][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:04][3282][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:04][3282][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:04][3282][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:04][3282][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:04][3282][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:04][3282][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:04][3282][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:04][3282][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:04][3282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:04][3282][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:04][3282][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:04][3282][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:04][3282][INFO][MAIN] Duplicate execution. +[28 10:45:07][3288][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:07][3288][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:07][3288][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:07][3288][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:07][3288][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:07][3288][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:07][3288][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:07][3288][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:07][3288][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:07][3288][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:07][3288][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:07][3288][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:07][3288][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:07][3288][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:07][3288][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:07][3288][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:07][3288][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:07][3288][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:07][3288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:07][3288][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:07][3288][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:07][3288][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:07][3288][INFO][MAIN] Duplicate execution. +[28 10:45:10][3294][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:10][3294][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:10][3294][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:10][3294][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:10][3294][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:10][3294][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:10][3294][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:10][3294][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:10][3294][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:10][3294][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:10][3294][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:10][3294][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:10][3294][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:10][3294][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:10][3294][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:10][3294][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:10][3294][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:10][3294][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:10][3294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:10][3294][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:10][3294][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:10][3294][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:10][3294][INFO][MAIN] Duplicate execution. +[28 10:45:13][3300][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:13][3300][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:13][3300][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:13][3300][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:13][3300][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:13][3300][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:13][3300][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:13][3300][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:13][3300][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:13][3300][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:13][3300][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:13][3300][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:13][3300][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:13][3300][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:13][3300][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:13][3300][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:13][3300][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:13][3300][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:13][3300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:13][3300][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:13][3300][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:13][3300][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:13][3300][INFO][MAIN] Duplicate execution. +[28 10:45:16][3306][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:16][3306][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:16][3306][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:16][3306][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:16][3306][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:16][3306][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:16][3306][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:16][3306][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:16][3306][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:16][3306][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:16][3306][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:16][3306][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:16][3306][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:16][3306][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:16][3306][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:16][3306][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:16][3306][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:16][3306][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:16][3306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:16][3306][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:16][3306][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:16][3306][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:16][3306][INFO][MAIN] Duplicate execution. +[28 10:45:19][3312][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:19][3312][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:19][3312][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:19][3312][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:19][3312][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:19][3312][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:19][3312][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:19][3312][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:19][3312][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:19][3312][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:19][3312][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:19][3312][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:19][3312][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:19][3312][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:19][3312][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:19][3312][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:19][3312][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:19][3312][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:19][3312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:19][3312][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:19][3312][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:19][3312][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:19][3312][INFO][MAIN] Duplicate execution. +[28 10:45:22][3318][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:22][3318][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:22][3318][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:22][3318][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:22][3318][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:22][3318][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:22][3318][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:22][3318][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:22][3318][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:22][3318][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:22][3318][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:22][3318][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:22][3318][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:22][3318][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:22][3318][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:22][3318][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:22][3318][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:22][3318][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:22][3318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:22][3318][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:22][3318][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:22][3318][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:22][3318][INFO][MAIN] Duplicate execution. +[28 10:45:25][3324][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:25][3324][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:25][3324][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:25][3324][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:25][3324][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:25][3324][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:25][3324][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:25][3324][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:25][3324][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:25][3324][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:25][3324][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:25][3324][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:25][3324][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:25][3324][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:25][3324][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:25][3324][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:25][3324][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:25][3324][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:25][3324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:25][3324][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:25][3324][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:25][3324][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:25][3324][INFO][MAIN] Duplicate execution. +[28 10:45:28][3330][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:28][3330][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:28][3330][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:28][3330][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:28][3330][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:28][3330][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:28][3330][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:28][3330][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:28][3330][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:28][3330][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:28][3330][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:28][3330][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:28][3330][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:28][3330][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:28][3330][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:28][3330][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:28][3330][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:28][3330][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:28][3330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:28][3330][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:28][3330][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:28][3330][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:28][3330][INFO][MAIN] Duplicate execution. +[28 10:45:31][3336][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:31][3336][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:31][3336][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:31][3336][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:31][3336][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:31][3336][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:31][3336][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:31][3336][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:31][3336][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:31][3336][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:31][3336][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:31][3336][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:31][3336][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:31][3336][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:31][3336][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:31][3336][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:31][3336][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:31][3336][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:31][3336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:31][3336][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:31][3336][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:31][3336][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:31][3336][INFO][MAIN] Duplicate execution. +[28 10:45:34][3342][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:34][3342][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:34][3342][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:34][3342][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:34][3342][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:34][3342][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:34][3342][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:34][3342][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:34][3342][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:34][3342][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:34][3342][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:34][3342][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:34][3342][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:34][3342][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:34][3342][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:34][3342][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:34][3342][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:34][3342][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:34][3342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:34][3342][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:34][3342][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:34][3342][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:34][3342][INFO][MAIN] Duplicate execution. +[28 10:45:37][3348][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:37][3348][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:37][3348][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:37][3348][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:37][3348][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:37][3348][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:37][3348][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:37][3348][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:37][3348][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:37][3348][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:37][3348][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:37][3348][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:37][3348][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:37][3348][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:37][3348][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:37][3348][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:37][3348][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:37][3348][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:37][3348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:37][3348][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:37][3348][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:37][3348][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:37][3348][INFO][MAIN] Duplicate execution. +[28 10:45:40][3354][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:40][3354][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:40][3354][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:40][3354][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:40][3354][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:40][3354][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:40][3354][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:40][3354][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:40][3354][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:40][3354][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:40][3354][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:40][3354][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:40][3354][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:40][3354][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:40][3354][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:40][3354][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:40][3354][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:40][3354][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:40][3354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:40][3354][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:40][3354][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:40][3354][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:40][3354][INFO][MAIN] Duplicate execution. +[28 10:45:43][3360][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:43][3360][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:43][3360][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:43][3360][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:43][3360][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:43][3360][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:43][3360][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:43][3360][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:43][3360][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:43][3360][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:43][3360][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:43][3360][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:43][3360][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:43][3360][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:43][3360][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:43][3360][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:43][3360][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:43][3360][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:43][3360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:43][3360][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:43][3360][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:43][3360][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:43][3360][INFO][MAIN] Duplicate execution. +[28 10:45:46][3366][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:46][3366][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:46][3366][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:46][3366][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:46][3366][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:46][3366][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:46][3366][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:46][3366][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:46][3366][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:46][3366][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:46][3366][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:46][3366][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:46][3366][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:46][3366][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:46][3366][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:46][3366][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:46][3366][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:46][3366][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:46][3366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:46][3366][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:46][3366][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:46][3366][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:46][3366][INFO][MAIN] Duplicate execution. +[28 10:45:49][3372][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:49][3372][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:49][3372][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:49][3372][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:49][3372][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:49][3372][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:49][3372][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:49][3372][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:49][3372][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:49][3372][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:49][3372][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:49][3372][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:49][3372][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:49][3372][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:49][3372][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:49][3372][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:49][3372][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:49][3372][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:49][3372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:49][3372][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:49][3372][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:49][3372][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:49][3372][INFO][MAIN] Duplicate execution. +[28 10:45:52][3378][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:52][3378][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:52][3378][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:52][3378][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:52][3378][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:52][3378][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:52][3378][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:52][3378][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:52][3378][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:52][3378][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:52][3378][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:52][3378][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:52][3378][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:52][3378][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:52][3378][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:52][3378][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:52][3378][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:52][3378][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:52][3378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:52][3378][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:52][3378][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:52][3378][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:52][3378][INFO][MAIN] Duplicate execution. +[28 10:45:55][3384][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:55][3384][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:55][3384][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:55][3384][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:55][3384][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:55][3384][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:55][3384][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:55][3384][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:55][3384][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:55][3384][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:55][3384][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:55][3384][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:55][3384][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:55][3384][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:55][3384][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:55][3384][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:55][3384][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:55][3384][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:55][3384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:55][3384][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:55][3384][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:55][3384][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:55][3384][INFO][MAIN] Duplicate execution. +[28 10:45:58][3390][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:45:58][3390][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:45:58][3390][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:45:58][3390][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:45:58][3390][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:45:58][3390][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:45:58][3390][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:45:58][3390][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:45:58][3390][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:45:58][3390][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:45:58][3390][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:45:58][3390][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:45:58][3390][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:45:58][3390][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:45:58][3390][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:45:58][3390][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:45:58][3390][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:45:58][3390][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:45:58][3390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:45:58][3390][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:45:58][3390][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:45:58][3390][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:45:58][3390][INFO][MAIN] Duplicate execution. +[28 10:46:01][3396][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:01][3396][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:01][3396][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:01][3396][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:01][3396][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:01][3396][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:01][3396][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:01][3396][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:01][3396][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:01][3396][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:01][3396][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:01][3396][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:01][3396][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:01][3396][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:01][3396][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:01][3396][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:01][3396][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:01][3396][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:01][3396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:01][3396][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:01][3396][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:01][3396][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:01][3396][INFO][MAIN] Duplicate execution. +[28 10:46:04][3402][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:04][3402][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:04][3402][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:04][3402][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:04][3402][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:04][3402][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:04][3402][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:04][3402][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:04][3402][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:04][3402][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:04][3402][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:04][3402][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:04][3402][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:04][3402][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:04][3402][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:04][3402][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:04][3402][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:04][3402][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:04][3402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:04][3402][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:04][3402][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:04][3402][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:04][3402][INFO][MAIN] Duplicate execution. +[28 10:46:07][3408][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:07][3408][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:07][3408][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:07][3408][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:07][3408][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:07][3408][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:07][3408][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:07][3408][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:07][3408][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:07][3408][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:07][3408][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:07][3408][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:07][3408][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:07][3408][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:07][3408][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:07][3408][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:07][3408][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:07][3408][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:07][3408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:07][3408][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:07][3408][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:07][3408][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:07][3408][INFO][MAIN] Duplicate execution. +[28 10:46:10][3414][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:10][3414][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:10][3414][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:10][3414][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:10][3414][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:10][3414][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:10][3414][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:10][3414][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:10][3414][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:10][3414][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:10][3414][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:10][3414][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:10][3414][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:10][3414][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:10][3414][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:10][3414][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:10][3414][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:10][3414][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:10][3414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:10][3414][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:10][3414][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:10][3414][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:10][3414][INFO][MAIN] Duplicate execution. +[28 10:46:13][3420][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:13][3420][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:13][3420][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:13][3420][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:13][3420][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:13][3420][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:13][3420][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:13][3420][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:13][3420][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:13][3420][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:13][3420][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:13][3420][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:13][3420][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:13][3420][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:13][3420][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:13][3420][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:13][3420][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:13][3420][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:13][3420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:13][3420][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:13][3420][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:13][3420][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:13][3420][INFO][MAIN] Duplicate execution. +[28 10:46:16][3426][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:16][3426][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:16][3426][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:16][3426][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:16][3426][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:16][3426][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:16][3426][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:16][3426][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:16][3426][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:16][3426][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:16][3426][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:16][3426][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:16][3426][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:16][3426][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:16][3426][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:16][3426][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:16][3426][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:16][3426][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:16][3426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:16][3426][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:16][3426][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:16][3426][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:16][3426][INFO][MAIN] Duplicate execution. +[28 10:46:19][3432][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:19][3432][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:19][3432][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:19][3432][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:19][3432][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:19][3432][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:19][3432][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:19][3432][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:19][3432][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:19][3432][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:19][3432][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:19][3432][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:19][3432][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:19][3432][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:19][3432][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:19][3432][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:19][3432][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:19][3432][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:19][3432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:19][3432][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:19][3432][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:19][3432][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:19][3432][INFO][MAIN] Duplicate execution. +[28 10:46:22][3438][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:22][3438][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:22][3438][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:22][3438][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:22][3438][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:22][3438][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:22][3438][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:22][3438][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:22][3438][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:22][3438][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:22][3438][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:22][3438][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:22][3438][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:22][3438][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:22][3438][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:22][3438][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:22][3438][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:22][3438][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:22][3438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:22][3438][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:22][3438][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:22][3438][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:22][3438][INFO][MAIN] Duplicate execution. +[28 10:46:25][3444][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:25][3444][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:25][3444][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:25][3444][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:25][3444][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:25][3444][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:25][3444][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:25][3444][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:25][3444][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:25][3444][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:25][3444][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:25][3444][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:25][3444][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:25][3444][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:25][3444][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:25][3444][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:25][3444][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:25][3444][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:25][3444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:25][3444][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:25][3444][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:25][3444][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:25][3444][INFO][MAIN] Duplicate execution. +[28 10:46:28][3450][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:28][3450][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:28][3450][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:28][3450][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:28][3450][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:28][3450][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:28][3450][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:28][3450][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:28][3450][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:28][3450][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:28][3450][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:28][3450][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:28][3450][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:28][3450][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:28][3450][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:28][3450][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:28][3450][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:28][3450][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:28][3450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:28][3450][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:28][3450][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:28][3450][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:28][3450][INFO][MAIN] Duplicate execution. +[28 10:46:31][3456][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:31][3456][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:31][3456][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:31][3456][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:31][3456][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:31][3456][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:31][3456][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:31][3456][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:31][3456][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:31][3456][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:31][3456][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:31][3456][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:31][3456][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:31][3456][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:31][3456][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:31][3456][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:31][3456][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:31][3456][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:31][3456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:31][3456][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:31][3456][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:31][3456][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:31][3456][INFO][MAIN] Duplicate execution. +[28 10:46:34][3462][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:34][3462][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:34][3462][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:34][3462][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:34][3462][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:34][3462][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:34][3462][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:34][3462][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:34][3462][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:34][3462][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:34][3462][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:34][3462][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:34][3462][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:34][3462][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:34][3462][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:34][3462][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:34][3462][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:34][3462][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:34][3462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:34][3462][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:34][3462][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:34][3462][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:34][3462][INFO][MAIN] Duplicate execution. +[28 10:46:37][3468][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:37][3468][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:37][3468][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:37][3468][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:37][3468][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:37][3468][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:37][3468][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:37][3468][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:37][3468][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:37][3468][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:37][3468][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:37][3468][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:37][3468][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:37][3468][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:37][3468][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:37][3468][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:37][3468][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:37][3468][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:37][3468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:37][3468][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:37][3468][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:37][3468][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:37][3468][INFO][MAIN] Duplicate execution. +[28 10:46:40][3474][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:40][3474][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:40][3474][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:40][3474][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:40][3474][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:40][3474][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:40][3474][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:40][3474][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:40][3474][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:40][3474][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:40][3474][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:40][3474][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:40][3474][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:40][3474][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:40][3474][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:40][3474][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:40][3474][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:40][3474][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:40][3474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:40][3474][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:40][3474][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:40][3474][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:40][3474][INFO][MAIN] Duplicate execution. +[28 10:46:43][3480][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:43][3480][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:43][3480][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:43][3480][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:43][3480][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:43][3480][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:43][3480][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:43][3480][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:43][3480][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:43][3480][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:43][3480][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:43][3480][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:43][3480][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:43][3480][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:43][3480][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:43][3480][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:43][3480][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:43][3480][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:43][3480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:43][3480][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:43][3480][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:43][3480][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:43][3480][INFO][MAIN] Duplicate execution. +[28 10:46:46][3486][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:46][3486][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:46][3486][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:46][3486][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:46][3486][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:46][3486][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:46][3486][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:46][3486][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:46][3486][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:46][3486][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:46][3486][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:46][3486][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:46][3486][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:46][3486][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:46][3486][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:46][3486][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:46][3486][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:46][3486][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:46][3486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:46][3486][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:46][3486][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:46][3486][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:46][3486][INFO][MAIN] Duplicate execution. +[28 10:46:49][3492][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:49][3492][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:49][3492][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:49][3492][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:49][3492][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:49][3492][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:49][3492][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:49][3492][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:49][3492][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:49][3492][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:49][3492][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:49][3492][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:49][3492][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:49][3492][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:49][3492][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:49][3492][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:49][3492][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:49][3492][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:49][3492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:49][3492][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:49][3492][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:49][3492][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:49][3492][INFO][MAIN] Duplicate execution. +[28 10:46:52][3498][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:52][3498][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:52][3498][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:52][3498][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:52][3498][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:52][3498][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:52][3498][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:52][3498][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:52][3498][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:52][3498][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:52][3498][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:52][3498][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:52][3498][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:52][3498][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:52][3498][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:52][3498][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:52][3498][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:52][3498][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:52][3498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:52][3498][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:52][3498][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:52][3498][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:52][3498][INFO][MAIN] Duplicate execution. +[28 10:46:55][3504][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:55][3504][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:55][3504][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:55][3504][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:55][3504][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:55][3504][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:55][3504][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:55][3504][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:55][3504][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:55][3504][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:55][3504][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:55][3504][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:55][3504][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:55][3504][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:55][3504][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:55][3504][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:55][3504][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:55][3504][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:55][3504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:55][3504][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:55][3504][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:55][3504][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:55][3504][INFO][MAIN] Duplicate execution. +[28 10:46:58][3510][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:46:58][3510][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:46:58][3510][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:46:58][3510][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:46:58][3510][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:46:58][3510][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:46:58][3510][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:46:58][3510][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:46:58][3510][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:46:58][3510][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:46:58][3510][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:46:58][3510][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:46:58][3510][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:46:58][3510][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:46:58][3510][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:46:58][3510][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:46:58][3510][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:46:58][3510][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:46:58][3510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:46:58][3510][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:46:58][3510][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:46:58][3510][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:46:58][3510][INFO][MAIN] Duplicate execution. +[28 10:47:01][3516][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:01][3516][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:01][3516][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:01][3516][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:01][3516][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:01][3516][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:01][3516][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:01][3516][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:01][3516][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:01][3516][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:01][3516][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:01][3516][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:01][3516][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:01][3516][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:01][3516][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:01][3516][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:01][3516][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:01][3516][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:01][3516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:01][3516][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:01][3516][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:01][3516][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:01][3516][INFO][MAIN] Duplicate execution. +[28 10:47:04][3522][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:04][3522][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:04][3522][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:04][3522][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:04][3522][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:04][3522][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:04][3522][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:04][3522][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:04][3522][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:04][3522][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:04][3522][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:04][3522][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:04][3522][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:04][3522][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:04][3522][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:04][3522][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:04][3522][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:04][3522][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:04][3522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:04][3522][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:04][3522][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:04][3522][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:04][3522][INFO][MAIN] Duplicate execution. +[28 10:47:07][3528][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:07][3528][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:07][3528][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:07][3528][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:07][3528][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:07][3528][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:07][3528][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:07][3528][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:07][3528][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:07][3528][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:07][3528][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:07][3528][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:07][3528][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:07][3528][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:07][3528][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:07][3528][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:07][3528][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:07][3528][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:07][3528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:07][3528][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:07][3528][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:07][3528][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:07][3528][INFO][MAIN] Duplicate execution. +[28 10:47:10][3534][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:10][3534][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:10][3534][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:10][3534][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:10][3534][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:10][3534][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:10][3534][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:10][3534][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:10][3534][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:10][3534][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:10][3534][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:10][3534][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:10][3534][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:10][3534][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:10][3534][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:10][3534][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:10][3534][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:10][3534][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:10][3534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:10][3534][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:10][3534][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:10][3534][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:10][3534][INFO][MAIN] Duplicate execution. +[28 10:47:13][3540][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:13][3540][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:13][3540][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:13][3540][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:13][3540][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:13][3540][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:13][3540][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:13][3540][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:13][3540][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:13][3540][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:13][3540][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:13][3540][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:13][3540][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:13][3540][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:13][3540][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:13][3540][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:13][3540][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:13][3540][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:13][3540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:13][3540][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:13][3540][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:13][3540][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:13][3540][INFO][MAIN] Duplicate execution. +[28 10:47:16][3546][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:16][3546][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:16][3546][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:16][3546][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:16][3546][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:16][3546][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:16][3546][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:16][3546][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:16][3546][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:16][3546][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:16][3546][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:16][3546][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:16][3546][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:16][3546][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:16][3546][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:16][3546][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:16][3546][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:16][3546][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:16][3546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:16][3546][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:16][3546][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:16][3546][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:16][3546][INFO][MAIN] Duplicate execution. +[28 10:47:19][3552][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:19][3552][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:19][3552][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:19][3552][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:19][3552][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:19][3552][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:19][3552][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:19][3552][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:19][3552][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:19][3552][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:19][3552][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:19][3552][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:19][3552][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:19][3552][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:19][3552][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:19][3552][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:19][3552][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:19][3552][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:19][3552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:19][3552][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:19][3552][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:19][3552][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:19][3552][INFO][MAIN] Duplicate execution. +[28 10:47:22][3558][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:22][3558][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:22][3558][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:22][3558][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:22][3558][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:22][3558][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:22][3558][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:22][3558][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:22][3558][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:22][3558][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:22][3558][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:22][3558][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:22][3558][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:22][3558][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:22][3558][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:22][3558][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:22][3558][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:22][3558][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:22][3558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:22][3558][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:22][3558][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:22][3558][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:22][3558][INFO][MAIN] Duplicate execution. +[28 10:47:25][3564][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:25][3564][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:25][3564][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:25][3564][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:25][3564][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:25][3564][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:25][3564][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:25][3564][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:25][3564][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:25][3564][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:25][3564][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:25][3564][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:25][3564][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:25][3564][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:25][3564][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:25][3564][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:25][3564][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:25][3564][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:25][3564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:25][3564][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:25][3564][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:25][3564][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:25][3564][INFO][MAIN] Duplicate execution. +[28 10:47:28][3570][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:28][3570][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:28][3570][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:28][3570][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:28][3570][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:28][3570][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:28][3570][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:28][3570][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:28][3570][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:28][3570][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:28][3570][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:28][3570][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:28][3570][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:28][3570][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:28][3570][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:28][3570][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:28][3570][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:28][3570][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:28][3570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:28][3570][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:28][3570][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:28][3570][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:28][3570][INFO][MAIN] Duplicate execution. +[28 10:47:31][3576][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:31][3576][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:31][3576][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:31][3576][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:31][3576][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:31][3576][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:31][3576][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:31][3576][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:31][3576][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:31][3576][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:31][3576][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:31][3576][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:31][3576][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:31][3576][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:31][3576][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:31][3576][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:31][3576][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:31][3576][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:31][3576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:31][3576][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:31][3576][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:31][3576][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:31][3576][INFO][MAIN] Duplicate execution. +[28 10:47:34][3582][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:34][3582][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:34][3582][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:34][3582][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:34][3582][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:34][3582][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:34][3582][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:34][3582][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:34][3582][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:34][3582][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:34][3582][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:34][3582][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:34][3582][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:34][3582][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:34][3582][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:34][3582][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:34][3582][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:34][3582][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:34][3582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:34][3582][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:34][3582][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:34][3582][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:34][3582][INFO][MAIN] Duplicate execution. +[28 10:47:37][3588][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:37][3588][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:37][3588][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:37][3588][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:37][3588][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:37][3588][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:37][3588][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:37][3588][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:37][3588][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:37][3588][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:37][3588][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:37][3588][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:37][3588][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:37][3588][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:37][3588][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:37][3588][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:37][3588][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:37][3588][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:37][3588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:37][3588][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:37][3588][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:37][3588][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:37][3588][INFO][MAIN] Duplicate execution. +[28 10:47:40][3594][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:40][3594][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:40][3594][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:40][3594][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:40][3594][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:40][3594][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:40][3594][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:40][3594][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:40][3594][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:40][3594][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:40][3594][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:40][3594][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:40][3594][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:40][3594][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:40][3594][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:40][3594][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:40][3594][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:40][3594][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:40][3594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:40][3594][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:40][3594][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:40][3594][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:40][3594][INFO][MAIN] Duplicate execution. +[28 10:47:43][3600][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:43][3600][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:43][3600][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:43][3600][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:43][3600][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:43][3600][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:43][3600][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:43][3600][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:43][3600][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:43][3600][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:43][3600][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:43][3600][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:43][3600][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:43][3600][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:43][3600][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:43][3600][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:43][3600][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:43][3600][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:43][3600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:43][3600][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:43][3600][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:43][3600][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:43][3600][INFO][MAIN] Duplicate execution. +[28 10:47:46][3606][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:46][3606][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:46][3606][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:46][3606][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:46][3606][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:46][3606][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:46][3606][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:46][3606][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:46][3606][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:46][3606][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:46][3606][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:46][3606][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:46][3606][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:46][3606][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:46][3606][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:46][3606][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:46][3606][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:46][3606][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:46][3606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:46][3606][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:46][3606][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:46][3606][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:46][3606][INFO][MAIN] Duplicate execution. +[28 10:47:49][3612][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:49][3612][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:49][3612][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:49][3612][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:49][3612][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:49][3612][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:49][3612][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:49][3612][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:49][3612][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:49][3612][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:49][3612][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:49][3612][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:49][3612][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:49][3612][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:49][3612][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:49][3612][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:49][3612][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:49][3612][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:49][3612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:49][3612][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:49][3612][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:49][3612][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:49][3612][INFO][MAIN] Duplicate execution. +[28 10:47:52][3618][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:52][3618][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:52][3618][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:52][3618][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:52][3618][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:52][3618][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:52][3618][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:52][3618][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:52][3618][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:52][3618][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:52][3618][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:52][3618][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:52][3618][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:52][3618][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:52][3618][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:52][3618][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:52][3618][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:52][3618][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:52][3618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:52][3618][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:52][3618][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:52][3618][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:52][3618][INFO][MAIN] Duplicate execution. +[28 10:47:55][3624][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:55][3624][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:55][3624][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:55][3624][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:55][3624][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:55][3624][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:55][3624][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:55][3624][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:55][3624][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:55][3624][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:55][3624][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:55][3624][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:55][3624][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:55][3624][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:55][3624][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:55][3624][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:55][3624][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:55][3624][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:55][3624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:55][3624][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:55][3624][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:55][3624][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:55][3624][INFO][MAIN] Duplicate execution. +[28 10:47:58][3630][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:47:58][3630][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:47:58][3630][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:47:58][3630][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:47:58][3630][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:47:58][3630][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:47:58][3630][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:47:58][3630][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:47:58][3630][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:47:58][3630][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:47:58][3630][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:47:58][3630][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:47:58][3630][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:47:58][3630][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:47:58][3630][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:47:58][3630][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:47:58][3630][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:47:58][3630][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:47:58][3630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:47:58][3630][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:47:58][3630][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:47:58][3630][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:47:58][3630][INFO][MAIN] Duplicate execution. +[28 10:48:01][3636][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:01][3636][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:01][3636][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:01][3636][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:01][3636][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:01][3636][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:01][3636][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:01][3636][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:01][3636][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:01][3636][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:01][3636][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:01][3636][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:01][3636][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:01][3636][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:01][3636][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:01][3636][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:01][3636][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:01][3636][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:01][3636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:01][3636][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:01][3636][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:01][3636][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:01][3636][INFO][MAIN] Duplicate execution. +[28 10:48:04][3642][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:04][3642][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:04][3642][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:04][3642][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:04][3642][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:04][3642][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:04][3642][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:04][3642][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:04][3642][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:04][3642][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:04][3642][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:04][3642][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:04][3642][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:04][3642][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:04][3642][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:04][3642][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:04][3642][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:04][3642][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:04][3642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:04][3642][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:04][3642][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:04][3642][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:04][3642][INFO][MAIN] Duplicate execution. +[28 10:48:07][3648][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:07][3648][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:07][3648][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:07][3648][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:07][3648][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:07][3648][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:07][3648][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:07][3648][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:07][3648][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:07][3648][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:07][3648][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:07][3648][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:07][3648][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:07][3648][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:07][3648][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:07][3648][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:07][3648][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:07][3648][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:07][3648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:07][3648][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:07][3648][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:07][3648][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:07][3648][INFO][MAIN] Duplicate execution. +[28 10:48:10][3654][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:10][3654][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:10][3654][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:10][3654][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:10][3654][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:10][3654][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:10][3654][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:10][3654][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:10][3654][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:10][3654][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:10][3654][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:10][3654][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:10][3654][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:10][3654][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:10][3654][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:10][3654][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:10][3654][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:10][3654][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:10][3654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:10][3654][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:10][3654][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:10][3654][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:10][3654][INFO][MAIN] Duplicate execution. +[28 10:48:13][3660][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:13][3660][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:13][3660][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:13][3660][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:13][3660][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:13][3660][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:13][3660][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:13][3660][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:13][3660][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:13][3660][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:13][3660][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:13][3660][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:13][3660][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:13][3660][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:13][3660][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:13][3660][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:13][3660][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:13][3660][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:13][3660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:13][3660][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:13][3660][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:13][3660][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:13][3660][INFO][MAIN] Duplicate execution. +[28 10:48:16][3666][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:16][3666][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:16][3666][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:16][3666][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:16][3666][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:16][3666][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:16][3666][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:16][3666][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:16][3666][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:16][3666][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:16][3666][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:16][3666][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:16][3666][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:16][3666][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:16][3666][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:16][3666][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:16][3666][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:16][3666][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:16][3666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:16][3666][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:16][3666][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:16][3666][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:16][3666][INFO][MAIN] Duplicate execution. +[28 10:48:19][3672][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:19][3672][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:19][3672][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:19][3672][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:19][3672][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:19][3672][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:19][3672][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:19][3672][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:19][3672][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:19][3672][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:19][3672][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:19][3672][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:19][3672][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:19][3672][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:19][3672][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:19][3672][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:19][3672][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:19][3672][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:19][3672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:19][3672][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:19][3672][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:19][3672][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:19][3672][INFO][MAIN] Duplicate execution. +[28 10:48:22][3678][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:22][3678][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:22][3678][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:22][3678][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:22][3678][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:22][3678][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:22][3678][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:22][3678][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:22][3678][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:22][3678][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:22][3678][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:22][3678][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:22][3678][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:22][3678][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:22][3678][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:22][3678][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:22][3678][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:22][3678][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:22][3678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:22][3678][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:22][3678][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:22][3678][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:22][3678][INFO][MAIN] Duplicate execution. +[28 10:48:25][3684][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:25][3684][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:25][3684][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:25][3684][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:25][3684][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:25][3684][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:25][3684][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:25][3684][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:25][3684][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:25][3684][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:25][3684][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:25][3684][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:25][3684][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:25][3684][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:25][3684][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:25][3684][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:25][3684][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:25][3684][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:25][3684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:25][3684][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:25][3684][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:25][3684][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:25][3684][INFO][MAIN] Duplicate execution. +[28 10:48:28][3690][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:28][3690][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:28][3690][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:28][3690][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:28][3690][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:28][3690][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:28][3690][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:28][3690][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:28][3690][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:28][3690][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:28][3690][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:28][3690][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:28][3690][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:28][3690][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:28][3690][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:28][3690][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:28][3690][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:28][3690][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:28][3690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:28][3690][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:28][3690][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:28][3690][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:28][3690][INFO][MAIN] Duplicate execution. +[28 10:48:31][3696][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:31][3696][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:31][3696][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:31][3696][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:31][3696][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:31][3696][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:31][3696][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:31][3696][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:31][3696][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:31][3696][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:31][3696][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:31][3696][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:31][3696][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:31][3696][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:31][3696][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:31][3696][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:31][3696][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:31][3696][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:31][3696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:31][3696][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:31][3696][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:31][3696][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:31][3696][INFO][MAIN] Duplicate execution. +[28 10:48:34][3702][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:34][3702][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:34][3702][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:34][3702][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:34][3702][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:34][3702][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:34][3702][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:34][3702][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:34][3702][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:34][3702][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:34][3702][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:34][3702][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:34][3702][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:34][3702][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:34][3702][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:34][3702][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:34][3702][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:34][3702][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:34][3702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:34][3702][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:34][3702][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:34][3702][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:34][3702][INFO][MAIN] Duplicate execution. +[28 10:48:37][3708][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:37][3708][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:37][3708][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:37][3708][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:37][3708][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:37][3708][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:37][3708][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:37][3708][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:37][3708][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:37][3708][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:37][3708][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:37][3708][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:37][3708][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:37][3708][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:37][3708][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:37][3708][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:37][3708][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:37][3708][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:37][3708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:37][3708][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:37][3708][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:37][3708][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:37][3708][INFO][MAIN] Duplicate execution. +[28 10:48:40][3714][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:40][3714][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:40][3714][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:40][3714][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:40][3714][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:40][3714][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:40][3714][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:40][3714][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:40][3714][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:40][3714][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:40][3714][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:40][3714][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:40][3714][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:40][3714][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:40][3714][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:40][3714][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:40][3714][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:40][3714][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:40][3714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:40][3714][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:40][3714][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:40][3714][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:40][3714][INFO][MAIN] Duplicate execution. +[28 10:48:43][3720][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:43][3720][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:43][3720][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:43][3720][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:43][3720][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:43][3720][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:43][3720][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:43][3720][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:43][3720][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:43][3720][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:43][3720][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:43][3720][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:43][3720][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:43][3720][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:43][3720][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:43][3720][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:43][3720][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:43][3720][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:43][3720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:43][3720][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:43][3720][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:43][3720][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:43][3720][INFO][MAIN] Duplicate execution. +[28 10:48:46][3726][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:46][3726][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:46][3726][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:46][3726][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:46][3726][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:46][3726][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:46][3726][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:46][3726][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:46][3726][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:46][3726][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:46][3726][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:46][3726][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:46][3726][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:46][3726][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:46][3726][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:46][3726][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:46][3726][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:46][3726][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:46][3726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:46][3726][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:46][3726][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:46][3726][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:46][3726][INFO][MAIN] Duplicate execution. +[28 10:48:49][3732][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:49][3732][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:49][3732][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:49][3732][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:49][3732][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:49][3732][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:49][3732][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:49][3732][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:49][3732][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:49][3732][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:49][3732][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:49][3732][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:49][3732][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:49][3732][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:49][3732][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:49][3732][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:49][3732][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:49][3732][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:49][3732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:49][3732][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:49][3732][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:49][3732][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:49][3732][INFO][MAIN] Duplicate execution. +[28 10:48:52][3738][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:52][3738][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:52][3738][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:52][3738][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:52][3738][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:52][3738][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:52][3738][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:52][3738][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:52][3738][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:52][3738][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:52][3738][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:52][3738][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:52][3738][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:52][3738][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:52][3738][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:52][3738][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:52][3738][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:52][3738][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:52][3738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:52][3738][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:52][3738][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:52][3738][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:52][3738][INFO][MAIN] Duplicate execution. +[28 10:48:55][3744][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:55][3744][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:55][3744][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:55][3744][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:55][3744][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:55][3744][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:55][3744][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:55][3744][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:55][3744][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:55][3744][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:55][3744][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:55][3744][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:55][3744][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:55][3744][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:55][3744][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:55][3744][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:55][3744][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:55][3744][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:55][3744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:55][3744][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:55][3744][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:55][3744][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:55][3744][INFO][MAIN] Duplicate execution. +[28 10:48:58][3750][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:48:58][3750][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:48:58][3750][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:48:58][3750][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:48:58][3750][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:48:58][3750][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:48:58][3750][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:48:58][3750][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:48:58][3750][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:48:58][3750][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:48:58][3750][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:48:58][3750][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:48:58][3750][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:48:58][3750][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:48:58][3750][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:48:58][3750][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:48:58][3750][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:48:58][3750][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:48:58][3750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:48:58][3750][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:48:58][3750][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:48:58][3750][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:48:58][3750][INFO][MAIN] Duplicate execution. +[28 10:49:01][3756][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:01][3756][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:01][3756][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:01][3756][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:01][3756][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:01][3756][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:01][3756][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:01][3756][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:01][3756][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:01][3756][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:01][3756][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:01][3756][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:01][3756][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:01][3756][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:01][3756][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:01][3756][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:01][3756][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:01][3756][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:01][3756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:01][3756][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:01][3756][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:01][3756][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:01][3756][INFO][MAIN] Duplicate execution. +[28 10:49:04][3762][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:04][3762][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:04][3762][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:04][3762][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:04][3762][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:04][3762][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:04][3762][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:04][3762][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:04][3762][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:04][3762][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:04][3762][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:04][3762][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:04][3762][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:04][3762][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:04][3762][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:04][3762][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:04][3762][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:04][3762][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:04][3762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:04][3762][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:04][3762][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:04][3762][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:04][3762][INFO][MAIN] Duplicate execution. +[28 10:49:07][3768][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:07][3768][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:07][3768][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:07][3768][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:07][3768][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:07][3768][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:07][3768][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:07][3768][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:07][3768][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:07][3768][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:07][3768][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:07][3768][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:07][3768][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:07][3768][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:07][3768][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:07][3768][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:07][3768][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:07][3768][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:07][3768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:07][3768][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:07][3768][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:07][3768][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:07][3768][INFO][MAIN] Duplicate execution. +[28 10:49:10][3774][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:10][3774][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:10][3774][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:10][3774][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:10][3774][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:10][3774][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:10][3774][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:10][3774][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:10][3774][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:10][3774][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:10][3774][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:10][3774][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:10][3774][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:10][3774][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:10][3774][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:10][3774][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:10][3774][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:10][3774][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:10][3774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:10][3774][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:10][3774][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:10][3774][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:10][3774][INFO][MAIN] Duplicate execution. +[28 10:49:13][3780][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:13][3780][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:13][3780][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:13][3780][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:13][3780][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:13][3780][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:13][3780][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:13][3780][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:13][3780][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:13][3780][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:13][3780][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:13][3780][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:13][3780][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:13][3780][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:13][3780][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:13][3780][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:13][3780][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:13][3780][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:13][3780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:13][3780][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:13][3780][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:13][3780][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:13][3780][INFO][MAIN] Duplicate execution. +[28 10:49:16][3786][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:16][3786][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:16][3786][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:16][3786][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:16][3786][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:16][3786][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:16][3786][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:16][3786][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:16][3786][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:16][3786][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:16][3786][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:16][3786][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:16][3786][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:16][3786][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:16][3786][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:16][3786][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:16][3786][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:16][3786][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:16][3786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:16][3786][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:16][3786][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:16][3786][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:16][3786][INFO][MAIN] Duplicate execution. +[28 10:49:19][3792][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:19][3792][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:19][3792][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:19][3792][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:19][3792][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:19][3792][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:19][3792][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:19][3792][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:19][3792][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:19][3792][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:19][3792][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:19][3792][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:19][3792][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:19][3792][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:19][3792][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:19][3792][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:19][3792][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:19][3792][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:19][3792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:19][3792][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:19][3792][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:19][3792][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:19][3792][INFO][MAIN] Duplicate execution. +[28 10:49:22][3798][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:22][3798][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:22][3798][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:22][3798][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:22][3798][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:22][3798][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:22][3798][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:22][3798][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:22][3798][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:22][3798][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:22][3798][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:22][3798][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:22][3798][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:22][3798][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:22][3798][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:22][3798][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:22][3798][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:22][3798][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:22][3798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:22][3798][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:22][3798][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:22][3798][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:22][3798][INFO][MAIN] Duplicate execution. +[28 10:49:25][3804][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:25][3804][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:25][3804][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:25][3804][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:25][3804][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:25][3804][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:25][3804][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:25][3804][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:25][3804][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:25][3804][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:25][3804][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:25][3804][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:25][3804][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:25][3804][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:25][3804][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:25][3804][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:25][3804][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:25][3804][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:25][3804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:25][3804][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:25][3804][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:25][3804][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:25][3804][INFO][MAIN] Duplicate execution. +[28 10:49:28][3810][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:28][3810][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:28][3810][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:28][3810][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:28][3810][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:28][3810][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:28][3810][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:28][3810][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:28][3810][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:28][3810][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:28][3810][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:28][3810][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:28][3810][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:28][3810][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:28][3810][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:28][3810][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:28][3810][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:28][3810][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:28][3810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:28][3810][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:28][3810][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:28][3810][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:28][3810][INFO][MAIN] Duplicate execution. +[28 10:49:31][3816][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:31][3816][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:31][3816][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:31][3816][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:31][3816][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:31][3816][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:31][3816][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:31][3816][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:31][3816][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:31][3816][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:31][3816][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:31][3816][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:31][3816][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:31][3816][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:31][3816][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:31][3816][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:31][3816][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:31][3816][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:31][3816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:31][3816][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:31][3816][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:31][3816][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:31][3816][INFO][MAIN] Duplicate execution. +[28 10:49:34][3822][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:34][3822][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:34][3822][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:34][3822][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:34][3822][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:34][3822][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:34][3822][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:34][3822][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:34][3822][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:34][3822][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:34][3822][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:34][3822][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:34][3822][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:34][3822][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:34][3822][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:34][3822][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:34][3822][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:34][3822][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:34][3822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:34][3822][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:34][3822][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:34][3822][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:34][3822][INFO][MAIN] Duplicate execution. +[28 10:49:37][3828][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:37][3828][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:37][3828][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:37][3828][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:37][3828][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:37][3828][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:37][3828][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:37][3828][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:37][3828][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:37][3828][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:37][3828][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:37][3828][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:37][3828][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:37][3828][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:37][3828][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:37][3828][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:37][3828][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:37][3828][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:37][3828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:37][3828][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:37][3828][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:37][3828][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:37][3828][INFO][MAIN] Duplicate execution. +[28 10:49:40][3834][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:40][3834][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:40][3834][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:40][3834][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:40][3834][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:40][3834][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:40][3834][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:40][3834][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:40][3834][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:40][3834][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:40][3834][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:40][3834][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:40][3834][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:40][3834][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:40][3834][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:40][3834][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:40][3834][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:40][3834][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:40][3834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:40][3834][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:40][3834][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:40][3834][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:40][3834][INFO][MAIN] Duplicate execution. +[28 10:49:43][3840][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:43][3840][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:43][3840][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:43][3840][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:43][3840][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:43][3840][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:43][3840][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:43][3840][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:43][3840][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:43][3840][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:43][3840][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:43][3840][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:43][3840][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:43][3840][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:43][3840][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:43][3840][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:43][3840][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:43][3840][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:43][3840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:43][3840][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:43][3840][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:43][3840][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:43][3840][INFO][MAIN] Duplicate execution. +[28 10:49:46][3846][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:46][3846][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:46][3846][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:46][3846][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:46][3846][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:46][3846][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:46][3846][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:46][3846][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:46][3846][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:46][3846][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:46][3846][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:46][3846][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:46][3846][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:46][3846][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:46][3846][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:46][3846][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:46][3846][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:46][3846][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:46][3846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:46][3846][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:46][3846][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:46][3846][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:46][3846][INFO][MAIN] Duplicate execution. +[28 10:49:49][3852][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:49][3852][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:49][3852][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:49][3852][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:49][3852][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:49][3852][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:49][3852][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:49][3852][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:49][3852][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:49][3852][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:49][3852][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:49][3852][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:49][3852][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:49][3852][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:49][3852][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:49][3852][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:49][3852][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:49][3852][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:49][3852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:49][3852][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:49][3852][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:49][3852][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:49][3852][INFO][MAIN] Duplicate execution. +[28 10:49:52][3858][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:52][3858][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:52][3858][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:52][3858][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:52][3858][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:52][3858][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:52][3858][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:52][3858][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:52][3858][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:52][3858][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:52][3858][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:52][3858][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:52][3858][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:52][3858][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:52][3858][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:52][3858][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:52][3858][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:52][3858][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:52][3858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:52][3858][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:52][3858][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:52][3858][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:52][3858][INFO][MAIN] Duplicate execution. +[28 10:49:55][3864][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:55][3864][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:55][3864][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:55][3864][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:55][3864][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:55][3864][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:55][3864][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:55][3864][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:55][3864][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:55][3864][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:55][3864][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:55][3864][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:55][3864][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:55][3864][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:55][3864][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:55][3864][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:55][3864][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:55][3864][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:55][3864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:55][3864][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:55][3864][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:55][3864][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:55][3864][INFO][MAIN] Duplicate execution. +[28 10:49:58][3870][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:49:58][3870][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:49:58][3870][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:49:58][3870][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:49:58][3870][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:49:58][3870][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:49:58][3870][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:49:58][3870][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:49:58][3870][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:49:58][3870][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:49:58][3870][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:49:58][3870][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:49:58][3870][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:49:58][3870][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:49:58][3870][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:49:58][3870][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:49:58][3870][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:49:58][3870][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:49:58][3870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:49:58][3870][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:49:58][3870][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:49:58][3870][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:49:58][3870][INFO][MAIN] Duplicate execution. +[28 10:50:01][3876][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:01][3876][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:01][3876][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:01][3876][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:01][3876][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:01][3876][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:01][3876][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:01][3876][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:01][3876][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:01][3876][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:01][3876][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:01][3876][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:01][3876][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:01][3876][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:01][3876][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:01][3876][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:01][3876][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:01][3876][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:01][3876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:01][3876][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:01][3876][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:01][3876][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:01][3876][INFO][MAIN] Duplicate execution. +[28 10:50:04][3882][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:04][3882][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:04][3882][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:04][3882][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:04][3882][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:04][3882][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:04][3882][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:04][3882][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:04][3882][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:04][3882][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:04][3882][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:04][3882][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:04][3882][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:04][3882][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:04][3882][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:04][3882][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:04][3882][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:04][3882][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:04][3882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:04][3882][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:04][3882][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:04][3882][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:04][3882][INFO][MAIN] Duplicate execution. +[28 10:50:07][3888][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:07][3888][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:07][3888][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:07][3888][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:07][3888][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:07][3888][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:07][3888][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:07][3888][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:07][3888][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:07][3888][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:07][3888][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:07][3888][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:07][3888][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:07][3888][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:07][3888][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:07][3888][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:07][3888][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:07][3888][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:07][3888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:07][3888][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:07][3888][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:07][3888][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:07][3888][INFO][MAIN] Duplicate execution. +[28 10:50:10][3894][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:10][3894][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:10][3894][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:10][3894][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:10][3894][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:10][3894][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:10][3894][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:10][3894][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:10][3894][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:10][3894][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:10][3894][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:10][3894][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:10][3894][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:10][3894][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:10][3894][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:10][3894][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:10][3894][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:10][3894][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:10][3894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:10][3894][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:10][3894][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:10][3894][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:10][3894][INFO][MAIN] Duplicate execution. +[28 10:50:13][3900][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:13][3900][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:13][3900][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:13][3900][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:13][3900][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:13][3900][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:13][3900][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:13][3900][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:13][3900][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:13][3900][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:13][3900][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:13][3900][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:13][3900][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:13][3900][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:13][3900][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:13][3900][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:13][3900][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:13][3900][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:13][3900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:13][3900][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:13][3900][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:13][3900][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:13][3900][INFO][MAIN] Duplicate execution. +[28 10:50:16][3906][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:16][3906][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:16][3906][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:16][3906][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:16][3906][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:16][3906][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:16][3906][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:16][3906][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:16][3906][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:16][3906][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:16][3906][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:16][3906][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:16][3906][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:16][3906][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:16][3906][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:16][3906][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:16][3906][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:16][3906][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:16][3906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:16][3906][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:16][3906][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:16][3906][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:16][3906][INFO][MAIN] Duplicate execution. +[28 10:50:19][3912][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:19][3912][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:19][3912][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:19][3912][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:19][3912][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:19][3912][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:19][3912][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:19][3912][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:19][3912][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:19][3912][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:19][3912][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:19][3912][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:19][3912][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:19][3912][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:19][3912][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:19][3912][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:19][3912][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:19][3912][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:19][3912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:19][3912][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:19][3912][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:19][3912][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:19][3912][INFO][MAIN] Duplicate execution. +[28 10:50:22][3918][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:22][3918][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:22][3918][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:22][3918][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:22][3918][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:22][3918][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:22][3918][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:22][3918][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:22][3918][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:22][3918][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:22][3918][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:22][3918][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:22][3918][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:22][3918][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:22][3918][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:22][3918][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:22][3918][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:22][3918][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:22][3918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:22][3918][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:22][3918][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:22][3918][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:22][3918][INFO][MAIN] Duplicate execution. +[28 10:50:25][3924][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:25][3924][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:25][3924][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:25][3924][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:25][3924][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:25][3924][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:25][3924][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:25][3924][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:25][3924][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:25][3924][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:25][3924][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:25][3924][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:25][3924][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:25][3924][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:25][3924][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:25][3924][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:25][3924][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:25][3924][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:25][3924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:25][3924][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:25][3924][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:25][3924][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:25][3924][INFO][MAIN] Duplicate execution. +[28 10:50:28][3930][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:28][3930][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:28][3930][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:28][3930][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:28][3930][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:28][3930][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:28][3930][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:28][3930][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:28][3930][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:28][3930][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:28][3930][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:28][3930][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:28][3930][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:28][3930][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:28][3930][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:28][3930][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:28][3930][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:28][3930][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:28][3930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:28][3930][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:28][3930][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:28][3930][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:28][3930][INFO][MAIN] Duplicate execution. +[28 10:50:31][3936][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:31][3936][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:31][3936][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:31][3936][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:31][3936][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:31][3936][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:31][3936][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:31][3936][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:31][3936][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:31][3936][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:31][3936][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:31][3936][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:31][3936][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:31][3936][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:31][3936][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:31][3936][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:31][3936][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:31][3936][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:31][3936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:31][3936][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:31][3936][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:31][3936][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:31][3936][INFO][MAIN] Duplicate execution. +[28 10:50:34][3942][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:34][3942][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:34][3942][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:34][3942][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:34][3942][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:34][3942][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:34][3942][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:34][3942][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:34][3942][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:34][3942][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:34][3942][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:34][3942][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:34][3942][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:34][3942][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:34][3942][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:34][3942][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:34][3942][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:34][3942][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:34][3942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:34][3942][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:34][3942][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:34][3942][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:34][3942][INFO][MAIN] Duplicate execution. +[28 10:50:37][3948][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:37][3948][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:37][3948][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:37][3948][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:37][3948][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:37][3948][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:37][3948][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:37][3948][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:37][3948][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:37][3948][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:37][3948][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:37][3948][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:37][3948][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:37][3948][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:37][3948][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:37][3948][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:37][3948][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:37][3948][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:37][3948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:37][3948][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:37][3948][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:37][3948][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:37][3948][INFO][MAIN] Duplicate execution. +[28 10:50:40][3954][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:40][3954][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:40][3954][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:40][3954][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:40][3954][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:40][3954][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:40][3954][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:40][3954][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:40][3954][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:40][3954][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:40][3954][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:40][3954][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:40][3954][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:40][3954][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:40][3954][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:40][3954][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:40][3954][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:40][3954][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:40][3954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:40][3954][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:40][3954][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:40][3954][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:40][3954][INFO][MAIN] Duplicate execution. +[28 10:50:43][3960][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:43][3960][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:43][3960][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:43][3960][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:43][3960][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:43][3960][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:43][3960][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:43][3960][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:43][3960][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:43][3960][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:43][3960][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:43][3960][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:43][3960][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:43][3960][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:43][3960][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:43][3960][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:43][3960][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:43][3960][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:43][3960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:43][3960][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:43][3960][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:43][3960][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:43][3960][INFO][MAIN] Duplicate execution. +[28 10:50:46][3966][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:46][3966][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:46][3966][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:46][3966][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:46][3966][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:46][3966][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:46][3966][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:46][3966][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:46][3966][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:46][3966][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:46][3966][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:46][3966][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:46][3966][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:46][3966][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:46][3966][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:46][3966][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:46][3966][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:46][3966][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:46][3966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:46][3966][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:46][3966][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:46][3966][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:46][3966][INFO][MAIN] Duplicate execution. +[28 10:50:49][3972][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:49][3972][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:49][3972][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:49][3972][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:49][3972][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:49][3972][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:49][3972][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:49][3972][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:49][3972][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:49][3972][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:49][3972][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:49][3972][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:49][3972][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:49][3972][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:49][3972][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:49][3972][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:49][3972][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:49][3972][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:49][3972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:49][3972][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:49][3972][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:49][3972][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:49][3972][INFO][MAIN] Duplicate execution. +[28 10:50:52][3978][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:52][3978][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:52][3978][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:52][3978][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:52][3978][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:52][3978][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:52][3978][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:52][3978][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:52][3978][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:52][3978][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:52][3978][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:52][3978][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:52][3978][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:52][3978][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:52][3978][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:52][3978][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:52][3978][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:52][3978][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:52][3978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:52][3978][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:52][3978][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:52][3978][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:52][3978][INFO][MAIN] Duplicate execution. +[28 10:50:55][3984][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:55][3984][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:55][3984][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:55][3984][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:55][3984][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:55][3984][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:55][3984][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:55][3984][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:55][3984][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:55][3984][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:55][3984][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:55][3984][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:55][3984][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:55][3984][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:55][3984][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:55][3984][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:55][3984][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:55][3984][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:55][3984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:55][3984][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:55][3984][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:55][3984][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:55][3984][INFO][MAIN] Duplicate execution. +[28 10:50:58][3990][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:50:58][3990][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:50:58][3990][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:50:58][3990][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:50:58][3990][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:50:58][3990][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:50:58][3990][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:50:58][3990][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:50:58][3990][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:50:58][3990][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:50:58][3990][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:50:58][3990][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:50:58][3990][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:50:58][3990][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:50:58][3990][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:50:58][3990][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:50:58][3990][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:50:58][3990][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:50:58][3990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:50:58][3990][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:50:58][3990][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:50:58][3990][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:50:58][3990][INFO][MAIN] Duplicate execution. +[28 10:51:01][3996][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:01][3996][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:01][3996][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:01][3996][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:01][3996][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:01][3996][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:01][3996][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:01][3996][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:01][3996][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:01][3996][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:01][3996][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:01][3996][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:01][3996][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:01][3996][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:01][3996][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:01][3996][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:01][3996][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:01][3996][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:01][3996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:01][3996][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:01][3996][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:01][3996][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:01][3996][INFO][MAIN] Duplicate execution. +[28 10:51:04][4002][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:04][4002][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:04][4002][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:04][4002][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:04][4002][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:04][4002][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:04][4002][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:04][4002][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:04][4002][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:04][4002][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:04][4002][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:04][4002][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:04][4002][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:04][4002][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:04][4002][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:04][4002][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:04][4002][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:04][4002][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:04][4002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:04][4002][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:04][4002][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:04][4002][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:04][4002][INFO][MAIN] Duplicate execution. +[28 10:51:07][4008][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:07][4008][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:07][4008][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:07][4008][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:07][4008][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:07][4008][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:07][4008][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:07][4008][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:07][4008][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:07][4008][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:07][4008][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:07][4008][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:07][4008][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:07][4008][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:07][4008][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:07][4008][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:07][4008][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:07][4008][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:07][4008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:07][4008][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:07][4008][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:07][4008][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:07][4008][INFO][MAIN] Duplicate execution. +[28 10:51:10][4014][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:10][4014][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:10][4014][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:10][4014][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:10][4014][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:10][4014][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:10][4014][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:10][4014][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:10][4014][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:10][4014][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:10][4014][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:10][4014][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:10][4014][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:10][4014][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:10][4014][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:10][4014][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:10][4014][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:10][4014][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:10][4014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:10][4014][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:10][4014][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:10][4014][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:10][4014][INFO][MAIN] Duplicate execution. +[28 10:51:13][4020][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:13][4020][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:13][4020][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:13][4020][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:13][4020][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:13][4020][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:13][4020][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:13][4020][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:13][4020][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:13][4020][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:13][4020][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:13][4020][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:13][4020][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:13][4020][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:13][4020][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:13][4020][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:13][4020][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:13][4020][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:13][4020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:13][4020][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:13][4020][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:13][4020][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:13][4020][INFO][MAIN] Duplicate execution. +[28 10:51:16][4026][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:16][4026][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:16][4026][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:16][4026][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:16][4026][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:16][4026][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:16][4026][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:16][4026][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:16][4026][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:16][4026][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:16][4026][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:16][4026][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:16][4026][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:16][4026][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:16][4026][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:16][4026][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:16][4026][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:16][4026][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:16][4026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:16][4026][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:16][4026][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:16][4026][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:16][4026][INFO][MAIN] Duplicate execution. +[28 10:51:19][4032][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:19][4032][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:19][4032][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:19][4032][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:19][4032][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:19][4032][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:19][4032][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:19][4032][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:19][4032][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:19][4032][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:19][4032][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:19][4032][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:19][4032][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:19][4032][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:19][4032][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:19][4032][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:19][4032][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:19][4032][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:19][4032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:19][4032][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:19][4032][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:19][4032][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:19][4032][INFO][MAIN] Duplicate execution. +[28 10:51:22][4038][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:22][4038][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:22][4038][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:22][4038][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:22][4038][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:22][4038][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:22][4038][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:22][4038][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:22][4038][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:22][4038][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:22][4038][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:22][4038][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:22][4038][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:22][4038][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:22][4038][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:22][4038][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:22][4038][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:22][4038][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:22][4038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:22][4038][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:22][4038][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:22][4038][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:22][4038][INFO][MAIN] Duplicate execution. +[28 10:51:25][4044][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:25][4044][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:25][4044][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:25][4044][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:25][4044][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:25][4044][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:25][4044][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:25][4044][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:25][4044][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:25][4044][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:25][4044][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:25][4044][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:25][4044][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:25][4044][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:25][4044][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:25][4044][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:25][4044][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:25][4044][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:25][4044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:25][4044][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:25][4044][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:25][4044][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:25][4044][INFO][MAIN] Duplicate execution. +[28 10:51:28][4050][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:28][4050][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:28][4050][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:28][4050][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:28][4050][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:28][4050][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:28][4050][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:28][4050][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:28][4050][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:28][4050][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:28][4050][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:28][4050][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:28][4050][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:28][4050][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:28][4050][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:28][4050][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:28][4050][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:28][4050][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:28][4050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:28][4050][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:28][4050][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:28][4050][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:28][4050][INFO][MAIN] Duplicate execution. +[28 10:51:31][4056][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:31][4056][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:31][4056][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:31][4056][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:31][4056][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:31][4056][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:31][4056][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:31][4056][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:31][4056][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:31][4056][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:31][4056][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:31][4056][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:31][4056][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:31][4056][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:31][4056][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:31][4056][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:31][4056][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:31][4056][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:31][4056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:31][4056][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:31][4056][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:31][4056][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:31][4056][INFO][MAIN] Duplicate execution. +[28 10:51:34][4062][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:34][4062][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:34][4062][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:34][4062][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:34][4062][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:34][4062][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:34][4062][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:34][4062][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:34][4062][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:34][4062][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:34][4062][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:34][4062][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:34][4062][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:34][4062][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:34][4062][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:34][4062][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:34][4062][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:34][4062][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:34][4062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:34][4062][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:34][4062][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:34][4062][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:34][4062][INFO][MAIN] Duplicate execution. +[28 10:51:37][4068][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:37][4068][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:37][4068][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:37][4068][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:37][4068][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:37][4068][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:37][4068][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:37][4068][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:37][4068][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:37][4068][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:37][4068][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:37][4068][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:37][4068][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:37][4068][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:37][4068][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:37][4068][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:37][4068][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:37][4068][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:37][4068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:37][4068][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:37][4068][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:37][4068][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:37][4068][INFO][MAIN] Duplicate execution. +[28 10:51:40][4074][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:40][4074][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:40][4074][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:40][4074][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:40][4074][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:40][4074][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:40][4074][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:40][4074][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:40][4074][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:40][4074][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:40][4074][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:40][4074][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:40][4074][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:40][4074][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:40][4074][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:40][4074][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:40][4074][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:40][4074][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:40][4074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:40][4074][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:40][4074][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:40][4074][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:40][4074][INFO][MAIN] Duplicate execution. +[28 10:51:43][4080][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:43][4080][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:43][4080][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:43][4080][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:43][4080][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:43][4080][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:43][4080][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:43][4080][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:43][4080][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:43][4080][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:43][4080][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:43][4080][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:43][4080][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:43][4080][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:43][4080][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:43][4080][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:43][4080][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:43][4080][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:43][4080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:43][4080][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:43][4080][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:43][4080][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:43][4080][INFO][MAIN] Duplicate execution. +[28 10:51:46][4086][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:46][4086][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:46][4086][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:46][4086][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:46][4086][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:46][4086][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:46][4086][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:46][4086][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:46][4086][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:46][4086][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:46][4086][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:46][4086][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:46][4086][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:46][4086][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:46][4086][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:46][4086][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:46][4086][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:46][4086][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:46][4086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:46][4086][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:46][4086][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:46][4086][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:46][4086][INFO][MAIN] Duplicate execution. +[28 10:51:49][4092][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:49][4092][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:49][4092][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:49][4092][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:49][4092][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:49][4092][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:49][4092][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:49][4092][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:49][4092][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:49][4092][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:49][4092][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:49][4092][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:49][4092][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:49][4092][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:49][4092][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:49][4092][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:49][4092][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:49][4092][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:49][4092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:49][4092][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:49][4092][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:49][4092][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:49][4092][INFO][MAIN] Duplicate execution. +[28 10:51:52][4098][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:52][4098][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:52][4098][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:52][4098][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:52][4098][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:52][4098][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:52][4098][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:52][4098][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:52][4098][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:52][4098][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:52][4098][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:52][4098][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:52][4098][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:52][4098][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:52][4098][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:52][4098][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:52][4098][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:52][4098][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:52][4098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:52][4098][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:52][4098][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:52][4098][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:52][4098][INFO][MAIN] Duplicate execution. +[28 10:51:55][4104][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:55][4104][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:55][4104][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:55][4104][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:55][4104][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:55][4104][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:55][4104][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:55][4104][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:55][4104][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:55][4104][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:55][4104][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:55][4104][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:55][4104][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:55][4104][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:55][4104][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:55][4104][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:55][4104][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:55][4104][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:55][4104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:55][4104][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:55][4104][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:55][4104][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:55][4104][INFO][MAIN] Duplicate execution. +[28 10:51:58][4110][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:51:58][4110][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:51:58][4110][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:51:58][4110][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:51:58][4110][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:51:58][4110][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:51:58][4110][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:51:58][4110][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:51:58][4110][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:51:58][4110][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:51:58][4110][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:51:58][4110][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:51:58][4110][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:51:58][4110][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:51:58][4110][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:51:58][4110][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:51:58][4110][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:51:58][4110][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:51:58][4110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:51:58][4110][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:51:58][4110][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:51:58][4110][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:51:58][4110][INFO][MAIN] Duplicate execution. +[28 10:52:01][4116][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:01][4116][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:01][4116][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:01][4116][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:01][4116][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:01][4116][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:01][4116][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:01][4116][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:01][4116][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:01][4116][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:01][4116][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:01][4116][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:01][4116][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:01][4116][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:01][4116][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:01][4116][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:01][4116][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:01][4116][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:01][4116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:01][4116][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:01][4116][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:01][4116][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:01][4116][INFO][MAIN] Duplicate execution. +[28 10:52:04][4122][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:04][4122][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:04][4122][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:04][4122][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:04][4122][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:04][4122][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:04][4122][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:04][4122][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:04][4122][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:04][4122][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:04][4122][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:04][4122][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:04][4122][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:04][4122][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:04][4122][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:04][4122][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:04][4122][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:04][4122][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:04][4122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:04][4122][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:04][4122][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:04][4122][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:04][4122][INFO][MAIN] Duplicate execution. +[28 10:52:07][4128][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:07][4128][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:07][4128][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:07][4128][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:07][4128][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:07][4128][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:07][4128][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:07][4128][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:07][4128][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:07][4128][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:07][4128][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:07][4128][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:07][4128][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:07][4128][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:07][4128][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:07][4128][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:07][4128][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:07][4128][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:07][4128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:07][4128][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:07][4128][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:07][4128][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:07][4128][INFO][MAIN] Duplicate execution. +[28 10:52:10][4134][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:10][4134][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:10][4134][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:10][4134][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:10][4134][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:10][4134][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:10][4134][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:10][4134][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:10][4134][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:10][4134][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:10][4134][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:10][4134][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:10][4134][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:10][4134][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:10][4134][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:10][4134][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:10][4134][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:10][4134][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:10][4134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:10][4134][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:10][4134][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:10][4134][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:10][4134][INFO][MAIN] Duplicate execution. +[28 10:52:13][4140][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:13][4140][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:13][4140][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:13][4140][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:13][4140][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:13][4140][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:13][4140][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:13][4140][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:13][4140][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:13][4140][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:13][4140][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:13][4140][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:13][4140][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:13][4140][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:13][4140][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:13][4140][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:13][4140][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:13][4140][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:13][4140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:13][4140][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:13][4140][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:13][4140][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:13][4140][INFO][MAIN] Duplicate execution. +[28 10:52:16][4146][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:16][4146][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:16][4146][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:16][4146][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:16][4146][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:16][4146][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:16][4146][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:16][4146][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:16][4146][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:16][4146][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:16][4146][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:16][4146][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:16][4146][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:16][4146][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:16][4146][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:16][4146][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:16][4146][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:16][4146][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:16][4146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:16][4146][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:16][4146][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:16][4146][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:16][4146][INFO][MAIN] Duplicate execution. +[28 10:52:19][4152][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:19][4152][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:19][4152][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:19][4152][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:19][4152][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:19][4152][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:19][4152][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:19][4152][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:19][4152][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:19][4152][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:19][4152][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:19][4152][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:19][4152][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:19][4152][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:19][4152][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:19][4152][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:19][4152][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:19][4152][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:19][4152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:19][4152][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:19][4152][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:19][4152][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:19][4152][INFO][MAIN] Duplicate execution. +[28 10:52:22][4158][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:22][4158][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:22][4158][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:22][4158][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:22][4158][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:22][4158][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:22][4158][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:22][4158][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:22][4158][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:22][4158][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:22][4158][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:22][4158][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:22][4158][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:22][4158][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:22][4158][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:22][4158][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:22][4158][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:22][4158][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:22][4158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:22][4158][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:22][4158][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:22][4158][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:22][4158][INFO][MAIN] Duplicate execution. +[28 10:52:25][4164][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:25][4164][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:25][4164][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:25][4164][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:25][4164][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:25][4164][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:25][4164][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:25][4164][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:25][4164][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:25][4164][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:25][4164][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:25][4164][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:25][4164][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:25][4164][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:25][4164][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:25][4164][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:25][4164][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:25][4164][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:25][4164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:25][4164][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:25][4164][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:25][4164][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:25][4164][INFO][MAIN] Duplicate execution. +[28 10:52:28][4170][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:28][4170][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:28][4170][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:28][4170][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:28][4170][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:28][4170][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:28][4170][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:28][4170][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:28][4170][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:28][4170][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:28][4170][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:28][4170][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:28][4170][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:28][4170][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:28][4170][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:28][4170][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:28][4170][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:28][4170][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:28][4170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:28][4170][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:28][4170][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:28][4170][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:28][4170][INFO][MAIN] Duplicate execution. +[28 10:52:31][4176][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:31][4176][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:31][4176][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:31][4176][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:31][4176][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:31][4176][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:31][4176][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:31][4176][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:31][4176][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:31][4176][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:31][4176][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:31][4176][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:31][4176][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:31][4176][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:31][4176][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:31][4176][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:31][4176][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:31][4176][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:31][4176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:31][4176][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:31][4176][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:31][4176][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:31][4176][INFO][MAIN] Duplicate execution. +[28 10:52:34][4182][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:34][4182][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:34][4182][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:34][4182][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:34][4182][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:34][4182][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:34][4182][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:34][4182][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:34][4182][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:34][4182][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:34][4182][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:34][4182][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:34][4182][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:34][4182][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:34][4182][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:34][4182][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:34][4182][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:34][4182][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:34][4182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:34][4182][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:34][4182][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:34][4182][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:34][4182][INFO][MAIN] Duplicate execution. +[28 10:52:37][4188][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:37][4188][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:37][4188][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:37][4188][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:37][4188][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:37][4188][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:37][4188][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:37][4188][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:37][4188][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:37][4188][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:37][4188][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:37][4188][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:37][4188][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:37][4188][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:37][4188][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:37][4188][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:37][4188][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:37][4188][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:37][4188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:37][4188][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:37][4188][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:37][4188][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:37][4188][INFO][MAIN] Duplicate execution. +[28 10:52:40][4194][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:40][4194][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:40][4194][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:40][4194][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:40][4194][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:40][4194][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:40][4194][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:40][4194][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:40][4194][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:40][4194][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:40][4194][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:40][4194][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:40][4194][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:40][4194][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:40][4194][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:40][4194][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:40][4194][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:40][4194][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:40][4194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:40][4194][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:40][4194][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:40][4194][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:40][4194][INFO][MAIN] Duplicate execution. +[28 10:52:43][4200][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:43][4200][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:43][4200][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:43][4200][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:43][4200][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:43][4200][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:43][4200][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:43][4200][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:43][4200][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:43][4200][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:43][4200][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:43][4200][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:43][4200][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:43][4200][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:43][4200][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:43][4200][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:43][4200][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:43][4200][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:43][4200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:43][4200][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:43][4200][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:43][4200][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:43][4200][INFO][MAIN] Duplicate execution. +[28 10:52:46][4206][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:46][4206][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:46][4206][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:46][4206][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:46][4206][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:46][4206][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:46][4206][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:46][4206][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:46][4206][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:46][4206][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:46][4206][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:46][4206][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:46][4206][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:46][4206][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:46][4206][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:46][4206][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:46][4206][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:46][4206][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:46][4206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:46][4206][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:46][4206][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:46][4206][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:46][4206][INFO][MAIN] Duplicate execution. +[28 10:52:49][4212][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:49][4212][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:49][4212][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:49][4212][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:49][4212][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:49][4212][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:49][4212][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:49][4212][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:49][4212][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:49][4212][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:49][4212][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:49][4212][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:49][4212][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:49][4212][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:49][4212][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:49][4212][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:49][4212][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:49][4212][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:49][4212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:49][4212][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:49][4212][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:49][4212][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:49][4212][INFO][MAIN] Duplicate execution. +[28 10:52:52][4218][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:52][4218][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:52][4218][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:52][4218][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:52][4218][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:52][4218][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:52][4218][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:52][4218][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:52][4218][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:52][4218][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:52][4218][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:52][4218][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:52][4218][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:52][4218][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:52][4218][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:52][4218][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:52][4218][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:52][4218][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:52][4218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:52][4218][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:52][4218][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:52][4218][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:52][4218][INFO][MAIN] Duplicate execution. +[28 10:52:55][4224][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:55][4224][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:55][4224][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:55][4224][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:55][4224][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:55][4224][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:55][4224][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:55][4224][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:55][4224][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:55][4224][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:55][4224][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:55][4224][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:55][4224][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:55][4224][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:55][4224][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:55][4224][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:55][4224][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:55][4224][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:55][4224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:55][4224][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:55][4224][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:55][4224][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:55][4224][INFO][MAIN] Duplicate execution. +[28 10:52:58][4230][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:52:58][4230][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:52:58][4230][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:52:58][4230][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:52:58][4230][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:52:58][4230][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:52:58][4230][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:52:58][4230][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:52:58][4230][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:52:58][4230][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:52:58][4230][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:52:58][4230][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:52:58][4230][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:52:58][4230][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:52:58][4230][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:52:58][4230][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:52:58][4230][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:52:58][4230][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:52:58][4230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:52:58][4230][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:52:58][4230][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:52:58][4230][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:52:58][4230][INFO][MAIN] Duplicate execution. +[28 10:53:01][4236][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:01][4236][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:01][4236][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:01][4236][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:01][4236][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:01][4236][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:01][4236][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:01][4236][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:01][4236][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:01][4236][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:01][4236][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:01][4236][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:01][4236][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:01][4236][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:01][4236][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:01][4236][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:01][4236][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:01][4236][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:01][4236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:01][4236][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:01][4236][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:01][4236][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:01][4236][INFO][MAIN] Duplicate execution. +[28 10:53:04][4242][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:04][4242][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:04][4242][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:04][4242][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:04][4242][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:04][4242][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:04][4242][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:04][4242][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:04][4242][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:04][4242][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:04][4242][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:04][4242][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:04][4242][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:04][4242][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:04][4242][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:04][4242][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:04][4242][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:04][4242][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:04][4242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:04][4242][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:04][4242][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:04][4242][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:04][4242][INFO][MAIN] Duplicate execution. +[28 10:53:07][4248][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:07][4248][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:07][4248][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:07][4248][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:07][4248][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:07][4248][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:07][4248][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:07][4248][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:07][4248][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:07][4248][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:07][4248][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:07][4248][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:07][4248][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:07][4248][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:07][4248][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:07][4248][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:07][4248][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:07][4248][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:07][4248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:07][4248][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:07][4248][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:07][4248][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:07][4248][INFO][MAIN] Duplicate execution. +[28 10:53:10][4254][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:10][4254][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:10][4254][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:10][4254][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:10][4254][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:10][4254][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:10][4254][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:10][4254][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:10][4254][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:10][4254][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:10][4254][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:10][4254][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:10][4254][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:10][4254][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:10][4254][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:10][4254][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:10][4254][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:10][4254][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:10][4254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:10][4254][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:10][4254][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:10][4254][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:10][4254][INFO][MAIN] Duplicate execution. +[28 10:53:13][4260][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:13][4260][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:13][4260][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:13][4260][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:13][4260][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:13][4260][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:13][4260][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:13][4260][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:13][4260][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:13][4260][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:13][4260][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:13][4260][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:13][4260][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:13][4260][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:13][4260][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:13][4260][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:13][4260][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:13][4260][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:13][4260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:13][4260][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:13][4260][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:13][4260][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:13][4260][INFO][MAIN] Duplicate execution. +[28 10:53:16][4266][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:16][4266][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:16][4266][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:16][4266][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:16][4266][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:16][4266][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:16][4266][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:16][4266][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:16][4266][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:16][4266][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:16][4266][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:16][4266][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:16][4266][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:16][4266][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:16][4266][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:16][4266][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:16][4266][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:16][4266][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:16][4266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:16][4266][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:16][4266][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:16][4266][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:16][4266][INFO][MAIN] Duplicate execution. +[28 10:53:19][4272][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:19][4272][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:19][4272][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:19][4272][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:19][4272][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:19][4272][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:19][4272][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:19][4272][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:19][4272][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:19][4272][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:19][4272][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:19][4272][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:19][4272][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:19][4272][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:19][4272][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:19][4272][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:19][4272][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:19][4272][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:19][4272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:19][4272][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:19][4272][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:19][4272][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:19][4272][INFO][MAIN] Duplicate execution. +[28 10:53:22][4278][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:22][4278][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:22][4278][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:22][4278][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:22][4278][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:22][4278][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:22][4278][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:22][4278][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:22][4278][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:22][4278][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:22][4278][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:22][4278][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:22][4278][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:22][4278][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:22][4278][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:22][4278][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:22][4278][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:22][4278][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:22][4278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:22][4278][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:22][4278][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:22][4278][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:22][4278][INFO][MAIN] Duplicate execution. +[28 10:53:25][4284][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:25][4284][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:25][4284][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:25][4284][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:25][4284][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:25][4284][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:25][4284][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:25][4284][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:25][4284][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:25][4284][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:25][4284][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:25][4284][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:25][4284][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:25][4284][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:25][4284][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:25][4284][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:25][4284][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:25][4284][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:25][4284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:25][4284][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:25][4284][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:25][4284][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:25][4284][INFO][MAIN] Duplicate execution. +[28 10:53:28][4290][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:28][4290][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:28][4290][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:28][4290][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:28][4290][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:28][4290][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:28][4290][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:28][4290][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:28][4290][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:28][4290][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:28][4290][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:28][4290][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:28][4290][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:28][4290][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:28][4290][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:28][4290][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:28][4290][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:28][4290][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:28][4290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:28][4290][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:28][4290][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:28][4290][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:28][4290][INFO][MAIN] Duplicate execution. +[28 10:53:31][4296][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:31][4296][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:31][4296][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:31][4296][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:31][4296][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:31][4296][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:31][4296][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:31][4296][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:31][4296][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:31][4296][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:31][4296][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:31][4296][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:31][4296][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:31][4296][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:31][4296][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:31][4296][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:31][4296][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:31][4296][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:31][4296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:31][4296][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:31][4296][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:31][4296][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:31][4296][INFO][MAIN] Duplicate execution. +[28 10:53:34][4302][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:34][4302][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:34][4302][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:34][4302][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:34][4302][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:34][4302][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:34][4302][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:34][4302][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:34][4302][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:34][4302][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:34][4302][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:34][4302][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:34][4302][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:34][4302][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:34][4302][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:34][4302][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:34][4302][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:34][4302][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:34][4302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:34][4302][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:34][4302][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:34][4302][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:34][4302][INFO][MAIN] Duplicate execution. +[28 10:53:37][4308][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:37][4308][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:37][4308][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:37][4308][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:37][4308][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:37][4308][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:37][4308][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:37][4308][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:37][4308][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:37][4308][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:37][4308][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:37][4308][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:37][4308][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:37][4308][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:37][4308][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:37][4308][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:37][4308][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:37][4308][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:37][4308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:37][4308][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:37][4308][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:37][4308][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:37][4308][INFO][MAIN] Duplicate execution. +[28 10:53:40][4314][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:40][4314][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:40][4314][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:40][4314][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:40][4314][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:40][4314][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:40][4314][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:40][4314][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:40][4314][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:40][4314][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:40][4314][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:40][4314][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:40][4314][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:40][4314][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:40][4314][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:40][4314][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:40][4314][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:40][4314][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:40][4314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:40][4314][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:40][4314][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:40][4314][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:40][4314][INFO][MAIN] Duplicate execution. +[28 10:53:43][4320][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:43][4320][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:43][4320][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:43][4320][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:43][4320][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:43][4320][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:43][4320][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:43][4320][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:43][4320][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:43][4320][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:43][4320][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:43][4320][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:43][4320][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:43][4320][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:43][4320][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:43][4320][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:43][4320][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:43][4320][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:43][4320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:43][4320][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:43][4320][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:43][4320][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:43][4320][INFO][MAIN] Duplicate execution. +[28 10:53:46][4326][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:46][4326][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:46][4326][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:46][4326][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:46][4326][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:46][4326][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:46][4326][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:46][4326][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:46][4326][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:46][4326][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:46][4326][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:46][4326][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:46][4326][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:46][4326][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:46][4326][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:46][4326][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:46][4326][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:46][4326][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:46][4326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:46][4326][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:46][4326][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:46][4326][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:46][4326][INFO][MAIN] Duplicate execution. +[28 10:53:49][4332][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:49][4332][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:49][4332][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:49][4332][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:49][4332][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:49][4332][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:49][4332][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:49][4332][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:49][4332][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:49][4332][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:49][4332][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:49][4332][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:49][4332][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:49][4332][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:49][4332][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:49][4332][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:49][4332][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:49][4332][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:49][4332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:49][4332][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:49][4332][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:49][4332][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:49][4332][INFO][MAIN] Duplicate execution. +[28 10:53:52][4338][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:52][4338][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:52][4338][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:52][4338][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:52][4338][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:52][4338][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:52][4338][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:52][4338][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:52][4338][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:52][4338][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:52][4338][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:52][4338][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:52][4338][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:52][4338][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:52][4338][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:52][4338][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:52][4338][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:52][4338][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:52][4338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:52][4338][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:52][4338][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:52][4338][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:52][4338][INFO][MAIN] Duplicate execution. +[28 10:53:55][4344][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:55][4344][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:55][4344][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:55][4344][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:55][4344][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:55][4344][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:55][4344][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:55][4344][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:55][4344][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:55][4344][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:55][4344][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:55][4344][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:55][4344][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:55][4344][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:55][4344][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:55][4344][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:55][4344][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:55][4344][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:55][4344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:55][4344][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:55][4344][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:55][4344][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:55][4344][INFO][MAIN] Duplicate execution. +[28 10:53:58][4350][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:53:58][4350][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:53:58][4350][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:53:58][4350][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:53:58][4350][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:53:58][4350][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:53:58][4350][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:53:58][4350][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:53:58][4350][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:53:58][4350][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:53:58][4350][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:53:58][4350][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:53:58][4350][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:53:58][4350][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:53:58][4350][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:53:58][4350][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:53:58][4350][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:53:58][4350][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:53:58][4350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:53:58][4350][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:53:58][4350][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:53:58][4350][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:53:58][4350][INFO][MAIN] Duplicate execution. +[28 10:54:01][4356][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:01][4356][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:01][4356][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:01][4356][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:01][4356][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:01][4356][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:01][4356][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:01][4356][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:01][4356][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:01][4356][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:01][4356][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:01][4356][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:01][4356][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:01][4356][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:01][4356][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:01][4356][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:01][4356][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:01][4356][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:01][4356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:01][4356][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:01][4356][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:01][4356][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:01][4356][INFO][MAIN] Duplicate execution. +[28 10:54:04][4362][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:04][4362][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:04][4362][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:04][4362][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:04][4362][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:04][4362][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:04][4362][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:04][4362][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:04][4362][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:04][4362][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:04][4362][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:04][4362][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:04][4362][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:04][4362][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:04][4362][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:04][4362][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:04][4362][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:04][4362][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:04][4362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:04][4362][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:04][4362][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:04][4362][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:04][4362][INFO][MAIN] Duplicate execution. +[28 10:54:07][4368][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:07][4368][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:07][4368][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:07][4368][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:07][4368][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:07][4368][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:07][4368][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:07][4368][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:07][4368][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:07][4368][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:07][4368][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:07][4368][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:07][4368][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:07][4368][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:07][4368][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:07][4368][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:07][4368][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:07][4368][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:07][4368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:07][4368][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:07][4368][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:07][4368][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:07][4368][INFO][MAIN] Duplicate execution. +[28 10:54:10][4374][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:10][4374][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:10][4374][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:10][4374][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:10][4374][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:10][4374][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:10][4374][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:10][4374][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:10][4374][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:10][4374][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:10][4374][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:10][4374][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:10][4374][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:10][4374][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:10][4374][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:10][4374][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:10][4374][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:10][4374][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:10][4374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:10][4374][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:10][4374][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:10][4374][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:10][4374][INFO][MAIN] Duplicate execution. +[28 10:54:13][4380][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:13][4380][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:13][4380][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:13][4380][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:13][4380][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:13][4380][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:13][4380][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:13][4380][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:13][4380][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:13][4380][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:13][4380][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:13][4380][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:13][4380][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:13][4380][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:13][4380][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:13][4380][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:13][4380][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:13][4380][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:13][4380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:13][4380][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:13][4380][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:13][4380][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:13][4380][INFO][MAIN] Duplicate execution. +[28 10:54:16][4386][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:16][4386][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:16][4386][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:16][4386][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:16][4386][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:16][4386][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:16][4386][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:16][4386][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:16][4386][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:16][4386][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:16][4386][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:16][4386][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:16][4386][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:16][4386][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:16][4386][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:16][4386][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:16][4386][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:16][4386][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:16][4386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:16][4386][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:16][4386][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:16][4386][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:16][4386][INFO][MAIN] Duplicate execution. +[28 10:54:19][4392][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:19][4392][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:19][4392][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:19][4392][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:19][4392][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:19][4392][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:19][4392][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:19][4392][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:19][4392][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:19][4392][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:19][4392][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:19][4392][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:19][4392][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:19][4392][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:19][4392][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:19][4392][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:19][4392][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:19][4392][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:19][4392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:19][4392][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:19][4392][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:19][4392][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:19][4392][INFO][MAIN] Duplicate execution. +[28 10:54:22][4398][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:22][4398][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:22][4398][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:22][4398][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:22][4398][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:22][4398][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:22][4398][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:22][4398][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:22][4398][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:22][4398][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:22][4398][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:22][4398][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:22][4398][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:22][4398][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:22][4398][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:22][4398][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:22][4398][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:22][4398][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:22][4398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:22][4398][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:22][4398][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:22][4398][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:22][4398][INFO][MAIN] Duplicate execution. +[28 10:54:25][4404][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:25][4404][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:25][4404][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:25][4404][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:25][4404][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:25][4404][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:25][4404][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:25][4404][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:25][4404][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:25][4404][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:25][4404][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:25][4404][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:25][4404][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:25][4404][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:25][4404][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:25][4404][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:25][4404][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:25][4404][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:25][4404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:25][4404][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:25][4404][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:25][4404][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:25][4404][INFO][MAIN] Duplicate execution. +[28 10:54:28][4410][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:28][4410][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:28][4410][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:28][4410][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:28][4410][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:28][4410][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:28][4410][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:28][4410][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:28][4410][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:28][4410][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:28][4410][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:28][4410][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:28][4410][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:28][4410][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:28][4410][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:28][4410][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:28][4410][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:28][4410][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:28][4410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:28][4410][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:28][4410][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:28][4410][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:28][4410][INFO][MAIN] Duplicate execution. +[28 10:54:31][4416][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:31][4416][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:31][4416][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:31][4416][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:31][4416][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:31][4416][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:31][4416][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:31][4416][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:31][4416][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:31][4416][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:31][4416][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:31][4416][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:31][4416][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:31][4416][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:31][4416][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:31][4416][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:31][4416][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:31][4416][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:31][4416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:31][4416][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:31][4416][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:31][4416][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:31][4416][INFO][MAIN] Duplicate execution. +[28 10:54:34][4422][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:34][4422][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:34][4422][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:34][4422][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:34][4422][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:34][4422][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:34][4422][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:34][4422][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:34][4422][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:34][4422][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:34][4422][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:34][4422][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:34][4422][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:34][4422][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:34][4422][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:34][4422][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:34][4422][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:34][4422][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:34][4422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:34][4422][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:34][4422][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:34][4422][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:34][4422][INFO][MAIN] Duplicate execution. +[28 10:54:37][4428][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:37][4428][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:37][4428][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:37][4428][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:37][4428][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:37][4428][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:37][4428][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:37][4428][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:37][4428][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:37][4428][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:37][4428][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:37][4428][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:37][4428][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:37][4428][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:37][4428][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:37][4428][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:37][4428][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:37][4428][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:37][4428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:37][4428][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:37][4428][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:37][4428][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:37][4428][INFO][MAIN] Duplicate execution. +[28 10:54:40][4434][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:40][4434][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:40][4434][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:40][4434][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:40][4434][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:40][4434][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:40][4434][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:40][4434][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:40][4434][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:40][4434][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:40][4434][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:40][4434][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:40][4434][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:40][4434][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:40][4434][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:40][4434][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:40][4434][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:40][4434][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:40][4434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:40][4434][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:40][4434][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:40][4434][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:40][4434][INFO][MAIN] Duplicate execution. +[28 10:54:43][4440][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:43][4440][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:43][4440][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:43][4440][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:43][4440][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:43][4440][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:43][4440][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:43][4440][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:43][4440][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:43][4440][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:43][4440][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:43][4440][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:43][4440][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:43][4440][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:43][4440][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:43][4440][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:43][4440][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:43][4440][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:43][4440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:43][4440][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:43][4440][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:43][4440][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:43][4440][INFO][MAIN] Duplicate execution. +[28 10:54:46][4446][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:46][4446][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:46][4446][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:46][4446][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:46][4446][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:46][4446][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:46][4446][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:46][4446][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:46][4446][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:46][4446][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:46][4446][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:46][4446][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:46][4446][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:46][4446][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:46][4446][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:46][4446][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:46][4446][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:46][4446][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:46][4446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:46][4446][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:46][4446][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:46][4446][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:46][4446][INFO][MAIN] Duplicate execution. +[28 10:54:49][4452][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:49][4452][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:49][4452][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:49][4452][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:49][4452][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:49][4452][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:49][4452][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:49][4452][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:49][4452][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:49][4452][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:49][4452][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:49][4452][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:49][4452][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:49][4452][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:49][4452][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:49][4452][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:49][4452][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:49][4452][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:49][4452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:49][4452][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:49][4452][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:49][4452][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:49][4452][INFO][MAIN] Duplicate execution. +[28 10:54:52][4458][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:52][4458][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:52][4458][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:52][4458][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:52][4458][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:52][4458][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:52][4458][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:52][4458][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:52][4458][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:52][4458][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:52][4458][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:52][4458][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:52][4458][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:52][4458][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:52][4458][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:52][4458][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:52][4458][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:52][4458][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:52][4458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:52][4458][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:52][4458][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:52][4458][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:52][4458][INFO][MAIN] Duplicate execution. +[28 10:54:55][4464][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:55][4464][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:55][4464][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:55][4464][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:55][4464][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:55][4464][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:55][4464][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:55][4464][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:55][4464][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:55][4464][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:55][4464][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:55][4464][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:55][4464][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:55][4464][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:55][4464][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:55][4464][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:55][4464][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:55][4464][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:55][4464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:55][4464][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:55][4464][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:55][4464][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:55][4464][INFO][MAIN] Duplicate execution. +[28 10:54:58][4470][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:54:58][4470][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:54:58][4470][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:54:58][4470][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:54:58][4470][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:54:58][4470][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:54:58][4470][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:54:58][4470][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:54:58][4470][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:54:58][4470][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:54:58][4470][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:54:58][4470][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:54:58][4470][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:54:58][4470][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:54:58][4470][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:54:58][4470][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:54:58][4470][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:54:58][4470][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:54:58][4470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:54:58][4470][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:54:58][4470][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:54:58][4470][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:54:58][4470][INFO][MAIN] Duplicate execution. +[28 10:55:01][4476][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:01][4476][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:01][4476][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:01][4476][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:01][4476][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:01][4476][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:01][4476][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:01][4476][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:01][4476][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:01][4476][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:01][4476][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:01][4476][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:01][4476][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:01][4476][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:01][4476][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:01][4476][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:01][4476][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:01][4476][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:01][4476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:01][4476][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:01][4476][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:01][4476][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:01][4476][INFO][MAIN] Duplicate execution. +[28 10:55:04][4482][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:04][4482][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:04][4482][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:04][4482][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:04][4482][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:04][4482][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:04][4482][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:04][4482][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:04][4482][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:04][4482][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:04][4482][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:04][4482][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:04][4482][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:04][4482][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:04][4482][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:04][4482][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:04][4482][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:04][4482][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:04][4482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:04][4482][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:04][4482][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:04][4482][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:04][4482][INFO][MAIN] Duplicate execution. +[28 10:55:07][4488][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:07][4488][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:07][4488][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:07][4488][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:07][4488][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:07][4488][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:07][4488][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:07][4488][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:07][4488][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:07][4488][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:07][4488][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:07][4488][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:07][4488][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:07][4488][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:07][4488][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:07][4488][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:07][4488][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:07][4488][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:07][4488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:07][4488][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:07][4488][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:07][4488][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:07][4488][INFO][MAIN] Duplicate execution. +[28 10:55:10][4494][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:10][4494][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:10][4494][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:10][4494][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:10][4494][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:10][4494][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:10][4494][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:10][4494][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:10][4494][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:10][4494][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:10][4494][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:10][4494][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:10][4494][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:10][4494][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:10][4494][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:10][4494][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:10][4494][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:10][4494][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:10][4494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:10][4494][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:10][4494][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:10][4494][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:10][4494][INFO][MAIN] Duplicate execution. +[28 10:55:13][4500][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:13][4500][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:13][4500][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:13][4500][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:13][4500][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:13][4500][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:13][4500][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:13][4500][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:13][4500][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:13][4500][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:13][4500][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:13][4500][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:13][4500][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:13][4500][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:13][4500][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:13][4500][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:13][4500][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:13][4500][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:13][4500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:13][4500][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:13][4500][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:13][4500][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:13][4500][INFO][MAIN] Duplicate execution. +[28 10:55:16][4506][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:16][4506][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:16][4506][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:16][4506][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:16][4506][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:16][4506][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:16][4506][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:16][4506][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:16][4506][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:16][4506][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:16][4506][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:16][4506][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:16][4506][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:16][4506][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:16][4506][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:16][4506][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:16][4506][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:16][4506][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:16][4506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:16][4506][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:16][4506][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:16][4506][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:16][4506][INFO][MAIN] Duplicate execution. +[28 10:55:19][4512][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:19][4512][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:19][4512][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:19][4512][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:19][4512][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:19][4512][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:19][4512][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:19][4512][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:19][4512][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:19][4512][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:19][4512][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:19][4512][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:19][4512][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:19][4512][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:19][4512][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:19][4512][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:19][4512][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:19][4512][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:19][4512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:19][4512][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:19][4512][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:19][4512][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:19][4512][INFO][MAIN] Duplicate execution. +[28 10:55:22][4518][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:22][4518][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:22][4518][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:22][4518][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:22][4518][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:22][4518][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:22][4518][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:22][4518][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:22][4518][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:22][4518][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:22][4518][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:22][4518][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:22][4518][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:22][4518][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:22][4518][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:22][4518][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:22][4518][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:22][4518][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:22][4518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:22][4518][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:22][4518][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:22][4518][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:22][4518][INFO][MAIN] Duplicate execution. +[28 10:55:25][4524][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:25][4524][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:25][4524][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:25][4524][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:25][4524][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:25][4524][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:25][4524][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:25][4524][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:25][4524][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:25][4524][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:25][4524][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:25][4524][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:25][4524][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:25][4524][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:25][4524][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:25][4524][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:25][4524][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:25][4524][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:25][4524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:25][4524][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:25][4524][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:25][4524][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:25][4524][INFO][MAIN] Duplicate execution. +[28 10:55:28][4530][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:28][4530][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:28][4530][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:28][4530][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:28][4530][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:28][4530][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:28][4530][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:28][4530][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:28][4530][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:28][4530][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:28][4530][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:28][4530][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:28][4530][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:28][4530][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:28][4530][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:28][4530][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:28][4530][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:28][4530][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:28][4530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:28][4530][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:28][4530][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:28][4530][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:28][4530][INFO][MAIN] Duplicate execution. +[28 10:55:31][4536][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:31][4536][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:31][4536][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:31][4536][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:31][4536][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:31][4536][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:31][4536][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:31][4536][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:31][4536][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:31][4536][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:31][4536][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:31][4536][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:31][4536][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:31][4536][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:31][4536][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:31][4536][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:31][4536][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:31][4536][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:31][4536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:31][4536][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:31][4536][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:31][4536][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:31][4536][INFO][MAIN] Duplicate execution. +[28 10:55:34][4542][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:34][4542][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:34][4542][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:34][4542][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:34][4542][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:34][4542][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:34][4542][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:34][4542][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:34][4542][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:34][4542][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:34][4542][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:34][4542][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:34][4542][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:34][4542][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:34][4542][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:34][4542][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:34][4542][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:34][4542][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:34][4542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:34][4542][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:34][4542][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:34][4542][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:34][4542][INFO][MAIN] Duplicate execution. +[28 10:55:37][4548][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:37][4548][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:37][4548][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:37][4548][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:37][4548][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:37][4548][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:37][4548][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:37][4548][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:37][4548][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:37][4548][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:37][4548][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:37][4548][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:37][4548][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:37][4548][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:37][4548][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:37][4548][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:37][4548][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:37][4548][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:37][4548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:37][4548][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:37][4548][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:37][4548][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:37][4548][INFO][MAIN] Duplicate execution. +[28 10:55:40][4554][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:40][4554][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:40][4554][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:40][4554][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:40][4554][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:40][4554][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:40][4554][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:40][4554][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:40][4554][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:40][4554][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:40][4554][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:40][4554][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:40][4554][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:40][4554][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:40][4554][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:40][4554][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:40][4554][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:40][4554][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:40][4554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:40][4554][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:40][4554][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:40][4554][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:40][4554][INFO][MAIN] Duplicate execution. +[28 10:55:43][4560][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:43][4560][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:43][4560][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:43][4560][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:43][4560][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:43][4560][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:43][4560][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:43][4560][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:43][4560][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:43][4560][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:43][4560][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:43][4560][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:43][4560][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:43][4560][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:43][4560][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:43][4560][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:43][4560][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:43][4560][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:43][4560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:43][4560][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:43][4560][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:43][4560][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:43][4560][INFO][MAIN] Duplicate execution. +[28 10:55:46][4566][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:46][4566][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:46][4566][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:46][4566][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:46][4566][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:46][4566][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:46][4566][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:46][4566][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:46][4566][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:46][4566][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:46][4566][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:46][4566][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:46][4566][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:46][4566][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:46][4566][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:46][4566][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:46][4566][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:46][4566][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:46][4566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:46][4566][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:46][4566][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:46][4566][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:46][4566][INFO][MAIN] Duplicate execution. +[28 10:55:49][4572][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:49][4572][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:49][4572][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:49][4572][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:49][4572][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:49][4572][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:49][4572][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:49][4572][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:49][4572][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:49][4572][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:49][4572][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:49][4572][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:49][4572][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:49][4572][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:49][4572][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:49][4572][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:49][4572][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:49][4572][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:49][4572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:49][4572][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:49][4572][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:49][4572][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:49][4572][INFO][MAIN] Duplicate execution. +[28 10:55:52][4578][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:52][4578][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:52][4578][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:52][4578][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:52][4578][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:52][4578][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:52][4578][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:52][4578][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:52][4578][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:52][4578][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:52][4578][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:52][4578][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:52][4578][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:52][4578][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:52][4578][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:52][4578][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:52][4578][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:52][4578][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:52][4578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:52][4578][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:52][4578][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:52][4578][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:52][4578][INFO][MAIN] Duplicate execution. +[28 10:55:55][4584][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:55][4584][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:55][4584][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:55][4584][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:55][4584][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:55][4584][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:55][4584][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:55][4584][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:55][4584][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:55][4584][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:55][4584][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:55][4584][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:55][4584][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:55][4584][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:55][4584][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:55][4584][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:55][4584][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:55][4584][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:55][4584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:55][4584][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:55][4584][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:55][4584][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:55][4584][INFO][MAIN] Duplicate execution. +[28 10:55:58][4590][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:55:58][4590][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:55:58][4590][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:55:58][4590][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:55:58][4590][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:55:58][4590][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:55:58][4590][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:55:58][4590][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:55:58][4590][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:55:58][4590][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:55:58][4590][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:55:58][4590][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:55:58][4590][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:55:58][4590][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:55:58][4590][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:55:58][4590][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:55:58][4590][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:55:58][4590][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:55:58][4590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:55:58][4590][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:55:58][4590][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:55:58][4590][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:55:58][4590][INFO][MAIN] Duplicate execution. +[28 10:56:01][4596][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:01][4596][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:01][4596][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:01][4596][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:01][4596][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:01][4596][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:01][4596][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:01][4596][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:01][4596][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:01][4596][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:01][4596][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:01][4596][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:01][4596][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:01][4596][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:01][4596][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:01][4596][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:01][4596][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:01][4596][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:01][4596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:01][4596][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:01][4596][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:01][4596][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:01][4596][INFO][MAIN] Duplicate execution. +[28 10:56:04][4602][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:04][4602][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:04][4602][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:04][4602][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:04][4602][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:04][4602][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:04][4602][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:04][4602][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:04][4602][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:04][4602][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:04][4602][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:04][4602][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:04][4602][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:04][4602][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:04][4602][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:04][4602][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:04][4602][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:04][4602][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:04][4602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:04][4602][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:04][4602][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:04][4602][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:04][4602][INFO][MAIN] Duplicate execution. +[28 10:56:07][4608][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:07][4608][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:07][4608][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:07][4608][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:07][4608][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:07][4608][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:07][4608][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:07][4608][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:07][4608][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:07][4608][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:07][4608][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:07][4608][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:07][4608][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:07][4608][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:07][4608][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:07][4608][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:07][4608][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:07][4608][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:07][4608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:07][4608][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:07][4608][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:07][4608][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:07][4608][INFO][MAIN] Duplicate execution. +[28 10:56:10][4614][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:10][4614][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:10][4614][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:10][4614][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:10][4614][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:10][4614][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:10][4614][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:10][4614][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:10][4614][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:10][4614][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:10][4614][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:10][4614][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:10][4614][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:10][4614][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:10][4614][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:10][4614][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:10][4614][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:10][4614][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:10][4614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:10][4614][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:10][4614][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:10][4614][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:10][4614][INFO][MAIN] Duplicate execution. +[28 10:56:13][4620][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:13][4620][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:13][4620][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:13][4620][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:13][4620][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:13][4620][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:13][4620][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:13][4620][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:13][4620][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:13][4620][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:13][4620][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:13][4620][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:13][4620][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:13][4620][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:13][4620][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:13][4620][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:13][4620][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:13][4620][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:13][4620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:13][4620][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:13][4620][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:13][4620][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:13][4620][INFO][MAIN] Duplicate execution. +[28 10:56:16][4626][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:16][4626][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:16][4626][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:16][4626][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:16][4626][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:16][4626][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:16][4626][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:16][4626][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:16][4626][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:16][4626][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:16][4626][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:16][4626][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:16][4626][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:16][4626][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:16][4626][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:16][4626][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:16][4626][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:16][4626][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:16][4626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:16][4626][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:16][4626][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:16][4626][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:16][4626][INFO][MAIN] Duplicate execution. +[28 10:56:19][4632][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:19][4632][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:19][4632][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:19][4632][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:19][4632][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:19][4632][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:19][4632][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:19][4632][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:19][4632][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:19][4632][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:19][4632][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:19][4632][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:19][4632][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:19][4632][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:19][4632][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:19][4632][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:19][4632][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:19][4632][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:19][4632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:19][4632][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:19][4632][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:19][4632][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:19][4632][INFO][MAIN] Duplicate execution. +[28 10:56:22][4638][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:22][4638][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:22][4638][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:22][4638][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:22][4638][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:22][4638][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:22][4638][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:22][4638][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:22][4638][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:22][4638][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:22][4638][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:22][4638][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:22][4638][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:22][4638][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:22][4638][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:22][4638][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:22][4638][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:22][4638][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:22][4638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:22][4638][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:22][4638][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:22][4638][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:22][4638][INFO][MAIN] Duplicate execution. +[28 10:56:25][4644][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:25][4644][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:25][4644][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:25][4644][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:25][4644][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:25][4644][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:25][4644][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:25][4644][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:25][4644][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:25][4644][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:25][4644][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:25][4644][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:25][4644][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:25][4644][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:25][4644][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:25][4644][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:25][4644][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:25][4644][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:25][4644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:25][4644][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:25][4644][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:25][4644][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:25][4644][INFO][MAIN] Duplicate execution. +[28 10:56:28][4650][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:28][4650][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:28][4650][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:28][4650][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:28][4650][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:28][4650][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:28][4650][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:28][4650][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:28][4650][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:28][4650][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:28][4650][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:28][4650][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:28][4650][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:28][4650][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:28][4650][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:28][4650][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:28][4650][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:28][4650][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:28][4650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:28][4650][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:28][4650][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:28][4650][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:28][4650][INFO][MAIN] Duplicate execution. +[28 10:56:31][4656][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:31][4656][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:31][4656][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:31][4656][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:31][4656][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:31][4656][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:31][4656][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:31][4656][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:31][4656][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:31][4656][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:31][4656][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:31][4656][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:31][4656][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:31][4656][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:31][4656][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:31][4656][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:31][4656][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:31][4656][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:31][4656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:31][4656][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:31][4656][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:31][4656][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:31][4656][INFO][MAIN] Duplicate execution. +[28 10:56:33][4662][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:33][4662][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:33][4662][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:33][4662][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:33][4662][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:33][4662][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:33][4662][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:33][4662][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:33][4662][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:33][4662][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:33][4662][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:33][4662][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:33][4662][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:33][4662][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:33][4662][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:33][4662][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:33][4662][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:33][4662][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:33][4662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:33][4662][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:33][4662][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:33][4662][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:33][4662][INFO][MAIN] Duplicate execution. +[28 10:56:37][4668][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:37][4668][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:37][4668][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:37][4668][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:37][4668][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:37][4668][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:37][4668][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:37][4668][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:37][4668][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:37][4668][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:37][4668][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:37][4668][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:37][4668][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:37][4668][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:37][4668][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:37][4668][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:37][4668][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:37][4668][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:37][4668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:37][4668][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:37][4668][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:37][4668][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:37][4668][INFO][MAIN] Duplicate execution. +[28 10:56:40][4674][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:40][4674][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:40][4674][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:40][4674][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:40][4674][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:40][4674][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:40][4674][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:40][4674][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:40][4674][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:40][4674][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:40][4674][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:40][4674][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:40][4674][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:40][4674][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:40][4674][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:40][4674][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:40][4674][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:40][4674][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:40][4674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:40][4674][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:40][4674][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:40][4674][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:40][4674][INFO][MAIN] Duplicate execution. +[28 10:56:43][4680][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:43][4680][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:43][4680][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:43][4680][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:43][4680][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:43][4680][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:43][4680][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:43][4680][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:43][4680][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:43][4680][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:43][4680][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:43][4680][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:43][4680][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:43][4680][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:43][4680][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:43][4680][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:43][4680][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:43][4680][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:43][4680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:43][4680][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:43][4680][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:43][4680][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:43][4680][INFO][MAIN] Duplicate execution. +[28 10:56:46][4686][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:46][4686][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:46][4686][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:46][4686][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:46][4686][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:46][4686][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:46][4686][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:46][4686][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:46][4686][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:46][4686][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:46][4686][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:46][4686][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:46][4686][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:46][4686][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:46][4686][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:46][4686][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:46][4686][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:46][4686][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:46][4686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:46][4686][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:46][4686][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:46][4686][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:46][4686][INFO][MAIN] Duplicate execution. +[28 10:56:49][4692][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:49][4692][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:49][4692][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:49][4692][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:49][4692][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:49][4692][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:49][4692][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:49][4692][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:49][4692][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:49][4692][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:49][4692][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:49][4692][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:49][4692][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:49][4692][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:49][4692][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:49][4692][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:49][4692][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:49][4692][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:49][4692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:49][4692][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:49][4692][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:49][4692][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:49][4692][INFO][MAIN] Duplicate execution. +[28 10:56:52][4698][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:52][4698][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:52][4698][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:52][4698][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:52][4698][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:52][4698][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:52][4698][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:52][4698][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:52][4698][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:52][4698][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:52][4698][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:52][4698][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:52][4698][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:52][4698][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:52][4698][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:52][4698][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:52][4698][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:52][4698][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:52][4698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:52][4698][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:52][4698][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:52][4698][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:52][4698][INFO][MAIN] Duplicate execution. +[28 10:56:55][4704][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:55][4704][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:55][4704][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:55][4704][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:55][4704][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:55][4704][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:55][4704][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:55][4704][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:55][4704][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:55][4704][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:55][4704][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:55][4704][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:55][4704][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:55][4704][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:55][4704][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:55][4704][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:55][4704][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:55][4704][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:55][4704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:55][4704][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:55][4704][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:55][4704][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:55][4704][INFO][MAIN] Duplicate execution. +[28 10:56:58][4710][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:56:58][4710][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:56:58][4710][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:56:58][4710][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:56:58][4710][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:56:58][4710][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:56:58][4710][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:56:58][4710][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:56:58][4710][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:56:58][4710][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:56:58][4710][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:56:58][4710][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:56:58][4710][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:56:58][4710][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:56:58][4710][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:56:58][4710][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:56:58][4710][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:56:58][4710][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:56:58][4710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:56:58][4710][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:56:58][4710][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:56:58][4710][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:56:58][4710][INFO][MAIN] Duplicate execution. +[28 10:57:01][4716][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:01][4716][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:01][4716][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:01][4716][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:01][4716][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:01][4716][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:01][4716][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:01][4716][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:01][4716][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:01][4716][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:01][4716][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:01][4716][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:01][4716][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:01][4716][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:01][4716][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:01][4716][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:01][4716][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:01][4716][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:01][4716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:01][4716][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:01][4716][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:01][4716][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:01][4716][INFO][MAIN] Duplicate execution. +[28 10:57:04][4722][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:04][4722][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:04][4722][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:04][4722][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:04][4722][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:04][4722][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:04][4722][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:04][4722][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:04][4722][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:04][4722][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:04][4722][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:04][4722][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:04][4722][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:04][4722][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:04][4722][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:04][4722][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:04][4722][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:04][4722][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:04][4722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:04][4722][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:04][4722][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:04][4722][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:04][4722][INFO][MAIN] Duplicate execution. +[28 10:57:07][4728][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:07][4728][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:07][4728][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:07][4728][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:07][4728][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:07][4728][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:07][4728][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:07][4728][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:07][4728][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:07][4728][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:07][4728][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:07][4728][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:07][4728][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:07][4728][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:07][4728][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:07][4728][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:07][4728][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:07][4728][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:07][4728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:07][4728][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:07][4728][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:07][4728][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:07][4728][INFO][MAIN] Duplicate execution. +[28 10:57:10][4734][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:10][4734][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:10][4734][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:10][4734][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:10][4734][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:10][4734][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:10][4734][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:10][4734][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:10][4734][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:10][4734][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:10][4734][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:10][4734][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:10][4734][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:10][4734][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:10][4734][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:10][4734][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:10][4734][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:10][4734][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:10][4734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:10][4734][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:10][4734][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:10][4734][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:10][4734][INFO][MAIN] Duplicate execution. +[28 10:57:13][4740][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:13][4740][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:13][4740][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:13][4740][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:13][4740][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:13][4740][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:13][4740][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:13][4740][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:13][4740][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:13][4740][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:13][4740][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:13][4740][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:13][4740][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:13][4740][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:13][4740][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:13][4740][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:13][4740][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:13][4740][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:13][4740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:13][4740][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:13][4740][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:13][4740][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:13][4740][INFO][MAIN] Duplicate execution. +[28 10:57:16][4746][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:16][4746][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:16][4746][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:16][4746][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:16][4746][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:16][4746][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:16][4746][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:16][4746][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:16][4746][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:16][4746][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:16][4746][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:16][4746][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:16][4746][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:16][4746][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:16][4746][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:16][4746][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:16][4746][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:16][4746][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:16][4746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:16][4746][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:16][4746][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:16][4746][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:16][4746][INFO][MAIN] Duplicate execution. +[28 10:57:19][4752][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:19][4752][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:19][4752][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:19][4752][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:19][4752][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:19][4752][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:19][4752][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:19][4752][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:19][4752][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:19][4752][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:19][4752][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:19][4752][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:19][4752][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:19][4752][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:19][4752][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:19][4752][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:19][4752][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:19][4752][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:19][4752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:19][4752][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:19][4752][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:19][4752][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:19][4752][INFO][MAIN] Duplicate execution. +[28 10:57:22][4758][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:22][4758][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:22][4758][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:22][4758][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:22][4758][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:22][4758][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:22][4758][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:22][4758][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:22][4758][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:22][4758][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:22][4758][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:22][4758][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:22][4758][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:22][4758][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:22][4758][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:22][4758][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:22][4758][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:22][4758][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:22][4758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:22][4758][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:22][4758][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:22][4758][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:22][4758][INFO][MAIN] Duplicate execution. +[28 10:57:25][4764][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:25][4764][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:25][4764][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:25][4764][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:25][4764][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:25][4764][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:25][4764][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:25][4764][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:25][4764][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:25][4764][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:25][4764][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:25][4764][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:25][4764][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:25][4764][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:25][4764][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:25][4764][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:25][4764][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:25][4764][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:25][4764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:25][4764][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:25][4764][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:25][4764][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:25][4764][INFO][MAIN] Duplicate execution. +[28 10:57:28][4770][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:28][4770][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:28][4770][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:28][4770][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:28][4770][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:28][4770][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:28][4770][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:28][4770][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:28][4770][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:28][4770][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:28][4770][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:28][4770][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:28][4770][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:28][4770][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:28][4770][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:28][4770][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:28][4770][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:28][4770][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:28][4770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:28][4770][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:28][4770][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:28][4770][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:28][4770][INFO][MAIN] Duplicate execution. +[28 10:57:31][4776][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:31][4776][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:31][4776][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:31][4776][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:31][4776][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:31][4776][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:31][4776][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:31][4776][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:31][4776][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:31][4776][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:31][4776][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:31][4776][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:31][4776][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:31][4776][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:31][4776][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:31][4776][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:31][4776][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:31][4776][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:31][4776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:31][4776][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:31][4776][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:31][4776][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:31][4776][INFO][MAIN] Duplicate execution. +[28 10:57:34][4782][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:34][4782][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:34][4782][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:34][4782][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:34][4782][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:34][4782][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:34][4782][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:34][4782][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:34][4782][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:34][4782][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:34][4782][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:34][4782][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:34][4782][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:34][4782][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:34][4782][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:34][4782][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:34][4782][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:34][4782][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:34][4782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:34][4782][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:34][4782][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:34][4782][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:34][4782][INFO][MAIN] Duplicate execution. +[28 10:57:37][4788][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:37][4788][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:37][4788][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:37][4788][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:37][4788][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:37][4788][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:37][4788][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:37][4788][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:37][4788][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:37][4788][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:37][4788][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:37][4788][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:37][4788][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:37][4788][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:37][4788][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:37][4788][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:37][4788][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:37][4788][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:37][4788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:37][4788][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:37][4788][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:37][4788][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:37][4788][INFO][MAIN] Duplicate execution. +[28 10:57:40][4794][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:40][4794][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:40][4794][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:40][4794][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:40][4794][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:40][4794][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:40][4794][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:40][4794][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:40][4794][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:40][4794][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:40][4794][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:40][4794][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:40][4794][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:40][4794][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:40][4794][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:40][4794][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:40][4794][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:40][4794][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:40][4794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:40][4794][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:40][4794][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:40][4794][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:40][4794][INFO][MAIN] Duplicate execution. +[28 10:57:43][4800][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:43][4800][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:43][4800][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:43][4800][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:43][4800][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:43][4800][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:43][4800][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:43][4800][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:43][4800][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:43][4800][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:43][4800][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:43][4800][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:43][4800][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:43][4800][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:43][4800][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:43][4800][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:43][4800][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:43][4800][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:43][4800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:43][4800][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:43][4800][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:43][4800][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:43][4800][INFO][MAIN] Duplicate execution. +[28 10:57:46][4806][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:46][4806][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:46][4806][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:46][4806][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:46][4806][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:46][4806][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:46][4806][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:46][4806][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:46][4806][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:46][4806][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:46][4806][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:46][4806][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:46][4806][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:46][4806][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:46][4806][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:46][4806][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:46][4806][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:46][4806][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:46][4806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:46][4806][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:46][4806][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:46][4806][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:46][4806][INFO][MAIN] Duplicate execution. +[28 10:57:49][4812][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:49][4812][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:49][4812][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:49][4812][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:49][4812][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:49][4812][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:49][4812][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:49][4812][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:49][4812][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:49][4812][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:49][4812][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:49][4812][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:49][4812][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:49][4812][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:49][4812][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:49][4812][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:49][4812][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:49][4812][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:49][4812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:49][4812][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:49][4812][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:49][4812][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:49][4812][INFO][MAIN] Duplicate execution. +[28 10:57:52][4818][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:52][4818][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:52][4818][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:52][4818][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:52][4818][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:52][4818][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:52][4818][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:52][4818][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:52][4818][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:52][4818][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:52][4818][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:52][4818][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:52][4818][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:52][4818][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:52][4818][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:52][4818][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:52][4818][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:52][4818][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:52][4818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:52][4818][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:52][4818][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:52][4818][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:52][4818][INFO][MAIN] Duplicate execution. +[28 10:57:55][4824][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:55][4824][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:55][4824][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:55][4824][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:55][4824][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:55][4824][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:55][4824][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:55][4824][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:55][4824][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:55][4824][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:55][4824][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:55][4824][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:55][4824][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:55][4824][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:55][4824][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:55][4824][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:55][4824][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:55][4824][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:55][4824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:55][4824][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:55][4824][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:55][4824][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:55][4824][INFO][MAIN] Duplicate execution. +[28 10:57:58][4830][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:57:58][4830][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:57:58][4830][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:57:58][4830][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:57:58][4830][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:57:58][4830][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:57:58][4830][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:57:58][4830][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:57:58][4830][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:57:58][4830][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:57:58][4830][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:57:58][4830][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:57:58][4830][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:57:58][4830][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:57:58][4830][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:57:58][4830][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:57:58][4830][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:57:58][4830][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:57:58][4830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:57:58][4830][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:57:58][4830][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:57:58][4830][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:57:58][4830][INFO][MAIN] Duplicate execution. +[28 10:58:01][4836][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:01][4836][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:01][4836][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:01][4836][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:01][4836][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:01][4836][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:01][4836][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:01][4836][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:01][4836][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:01][4836][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:01][4836][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:01][4836][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:01][4836][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:01][4836][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:01][4836][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:01][4836][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:01][4836][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:01][4836][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:01][4836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:01][4836][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:01][4836][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:01][4836][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:01][4836][INFO][MAIN] Duplicate execution. +[28 10:58:04][4842][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:04][4842][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:04][4842][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:04][4842][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:04][4842][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:04][4842][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:04][4842][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:04][4842][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:04][4842][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:04][4842][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:04][4842][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:04][4842][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:04][4842][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:04][4842][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:04][4842][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:04][4842][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:04][4842][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:04][4842][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:04][4842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:04][4842][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:04][4842][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:04][4842][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:04][4842][INFO][MAIN] Duplicate execution. +[28 10:58:07][4848][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:07][4848][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:07][4848][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:07][4848][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:07][4848][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:07][4848][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:07][4848][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:07][4848][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:07][4848][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:07][4848][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:07][4848][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:07][4848][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:07][4848][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:07][4848][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:07][4848][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:07][4848][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:07][4848][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:07][4848][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:07][4848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:07][4848][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:07][4848][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:07][4848][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:07][4848][INFO][MAIN] Duplicate execution. +[28 10:58:10][4854][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:10][4854][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:10][4854][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:10][4854][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:10][4854][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:10][4854][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:10][4854][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:10][4854][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:10][4854][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:10][4854][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:10][4854][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:10][4854][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:10][4854][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:10][4854][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:10][4854][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:10][4854][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:10][4854][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:10][4854][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:10][4854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:10][4854][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:10][4854][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:10][4854][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:10][4854][INFO][MAIN] Duplicate execution. +[28 10:58:13][4860][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:13][4860][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:13][4860][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:13][4860][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:13][4860][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:13][4860][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:13][4860][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:13][4860][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:13][4860][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:13][4860][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:13][4860][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:13][4860][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:13][4860][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:13][4860][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:13][4860][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:13][4860][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:13][4860][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:13][4860][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:13][4860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:13][4860][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:13][4860][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:13][4860][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:13][4860][INFO][MAIN] Duplicate execution. +[28 10:58:16][4866][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:16][4866][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:16][4866][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:16][4866][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:16][4866][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:16][4866][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:16][4866][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:16][4866][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:16][4866][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:16][4866][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:16][4866][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:16][4866][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:16][4866][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:16][4866][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:16][4866][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:16][4866][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:16][4866][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:16][4866][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:16][4866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:16][4866][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:16][4866][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:16][4866][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:16][4866][INFO][MAIN] Duplicate execution. +[28 10:58:19][4872][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:19][4872][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:19][4872][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:19][4872][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:19][4872][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:19][4872][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:19][4872][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:19][4872][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:19][4872][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:19][4872][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:19][4872][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:19][4872][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:19][4872][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:19][4872][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:19][4872][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:19][4872][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:19][4872][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:19][4872][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:19][4872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:19][4872][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:19][4872][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:19][4872][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:19][4872][INFO][MAIN] Duplicate execution. +[28 10:58:22][4878][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:22][4878][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:22][4878][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:22][4878][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:22][4878][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:22][4878][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:22][4878][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:22][4878][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:22][4878][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:22][4878][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:22][4878][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:22][4878][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:22][4878][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:22][4878][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:22][4878][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:22][4878][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:22][4878][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:22][4878][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:22][4878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:22][4878][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:22][4878][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:22][4878][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:22][4878][INFO][MAIN] Duplicate execution. +[28 10:58:25][4884][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:25][4884][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:25][4884][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:25][4884][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:25][4884][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:25][4884][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:25][4884][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:25][4884][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:25][4884][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:25][4884][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:25][4884][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:25][4884][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:25][4884][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:25][4884][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:25][4884][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:25][4884][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:25][4884][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:25][4884][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:25][4884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:25][4884][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:25][4884][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:25][4884][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:25][4884][INFO][MAIN] Duplicate execution. +[28 10:58:28][4890][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:28][4890][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:28][4890][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:28][4890][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:28][4890][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:28][4890][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:28][4890][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:28][4890][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:28][4890][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:28][4890][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:28][4890][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:28][4890][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:28][4890][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:28][4890][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:28][4890][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:28][4890][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:28][4890][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:28][4890][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:28][4890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:28][4890][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:28][4890][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:28][4890][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:28][4890][INFO][MAIN] Duplicate execution. +[28 10:58:31][4896][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:31][4896][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:31][4896][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:31][4896][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:31][4896][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:31][4896][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:31][4896][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:31][4896][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:31][4896][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:31][4896][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:31][4896][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:31][4896][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:31][4896][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:31][4896][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:31][4896][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:31][4896][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:31][4896][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:31][4896][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:31][4896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:31][4896][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:31][4896][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:31][4896][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:31][4896][INFO][MAIN] Duplicate execution. +[28 10:58:34][4902][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:34][4902][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:34][4902][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:34][4902][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:34][4902][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:34][4902][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:34][4902][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:34][4902][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:34][4902][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:34][4902][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:34][4902][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:34][4902][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:34][4902][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:34][4902][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:34][4902][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:34][4902][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:34][4902][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:34][4902][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:34][4902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:34][4902][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:34][4902][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:34][4902][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:34][4902][INFO][MAIN] Duplicate execution. +[28 10:58:37][4908][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:37][4908][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:37][4908][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:37][4908][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:37][4908][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:37][4908][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:37][4908][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:37][4908][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:37][4908][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:37][4908][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:37][4908][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:37][4908][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:37][4908][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:37][4908][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:37][4908][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:37][4908][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:37][4908][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:37][4908][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:37][4908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:37][4908][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:37][4908][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:37][4908][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:37][4908][INFO][MAIN] Duplicate execution. +[28 10:58:40][4914][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:40][4914][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:40][4914][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:40][4914][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:40][4914][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:40][4914][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:40][4914][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:40][4914][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:40][4914][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:40][4914][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:40][4914][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:40][4914][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:40][4914][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:40][4914][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:40][4914][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:40][4914][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:40][4914][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:40][4914][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:40][4914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:40][4914][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:40][4914][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:40][4914][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:40][4914][INFO][MAIN] Duplicate execution. +[28 10:58:43][4920][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:43][4920][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:43][4920][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:43][4920][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:43][4920][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:43][4920][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:43][4920][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:43][4920][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:43][4920][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:43][4920][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:43][4920][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:43][4920][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:43][4920][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:43][4920][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:43][4920][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:43][4920][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:43][4920][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:43][4920][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:43][4920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:43][4920][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:43][4920][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:43][4920][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:43][4920][INFO][MAIN] Duplicate execution. +[28 10:58:46][4926][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:46][4926][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:46][4926][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:46][4926][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:46][4926][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:46][4926][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:46][4926][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:46][4926][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:46][4926][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:46][4926][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:46][4926][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:46][4926][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:46][4926][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:46][4926][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:46][4926][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:46][4926][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:46][4926][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:46][4926][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:46][4926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:46][4926][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:46][4926][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:46][4926][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:46][4926][INFO][MAIN] Duplicate execution. +[28 10:58:49][4932][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:49][4932][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:49][4932][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:49][4932][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:49][4932][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:49][4932][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:49][4932][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:49][4932][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:49][4932][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:49][4932][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:49][4932][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:49][4932][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:49][4932][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:49][4932][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:49][4932][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:49][4932][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:49][4932][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:49][4932][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:49][4932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:49][4932][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:49][4932][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:49][4932][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:49][4932][INFO][MAIN] Duplicate execution. +[28 10:58:52][4938][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:52][4938][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:52][4938][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:52][4938][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:52][4938][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:52][4938][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:52][4938][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:52][4938][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:52][4938][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:52][4938][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:52][4938][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:52][4938][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:52][4938][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:52][4938][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:52][4938][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:52][4938][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:52][4938][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:52][4938][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:52][4938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:52][4938][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:52][4938][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:52][4938][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:52][4938][INFO][MAIN] Duplicate execution. +[28 10:58:55][4944][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:55][4944][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:55][4944][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:55][4944][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:55][4944][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:55][4944][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:55][4944][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:55][4944][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:55][4944][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:55][4944][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:55][4944][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:55][4944][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:55][4944][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:55][4944][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:55][4944][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:55][4944][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:55][4944][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:55][4944][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:55][4944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:55][4944][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:55][4944][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:55][4944][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:55][4944][INFO][MAIN] Duplicate execution. +[28 10:58:58][4950][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:58:58][4950][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:58:58][4950][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:58:58][4950][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:58:58][4950][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:58:58][4950][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:58:58][4950][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:58:58][4950][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:58:58][4950][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:58:58][4950][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:58:58][4950][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:58:58][4950][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:58:58][4950][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:58:58][4950][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:58:58][4950][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:58:58][4950][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:58:58][4950][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:58:58][4950][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:58:58][4950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:58:58][4950][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:58:58][4950][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:58:58][4950][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:58:58][4950][INFO][MAIN] Duplicate execution. +[28 10:59:01][4956][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:01][4956][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:01][4956][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:01][4956][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:01][4956][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:01][4956][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:01][4956][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:01][4956][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:01][4956][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:01][4956][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:01][4956][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:01][4956][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:01][4956][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:01][4956][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:01][4956][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:01][4956][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:01][4956][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:01][4956][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:01][4956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:01][4956][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:01][4956][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:01][4956][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:01][4956][INFO][MAIN] Duplicate execution. +[28 10:59:04][4962][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:04][4962][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:04][4962][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:04][4962][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:04][4962][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:04][4962][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:04][4962][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:04][4962][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:04][4962][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:04][4962][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:04][4962][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:04][4962][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:04][4962][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:04][4962][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:04][4962][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:04][4962][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:04][4962][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:04][4962][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:04][4962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:04][4962][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:04][4962][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:04][4962][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:04][4962][INFO][MAIN] Duplicate execution. +[28 10:59:07][4968][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:07][4968][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:07][4968][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:07][4968][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:07][4968][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:07][4968][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:07][4968][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:07][4968][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:07][4968][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:07][4968][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:07][4968][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:07][4968][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:07][4968][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:07][4968][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:07][4968][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:07][4968][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:07][4968][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:07][4968][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:07][4968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:07][4968][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:07][4968][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:07][4968][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:07][4968][INFO][MAIN] Duplicate execution. +[28 10:59:10][4974][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:10][4974][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:10][4974][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:10][4974][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:10][4974][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:10][4974][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:10][4974][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:10][4974][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:10][4974][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:10][4974][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:10][4974][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:10][4974][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:10][4974][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:10][4974][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:10][4974][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:10][4974][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:10][4974][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:10][4974][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:10][4974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:10][4974][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:10][4974][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:10][4974][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:10][4974][INFO][MAIN] Duplicate execution. +[28 10:59:13][4980][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:13][4980][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:13][4980][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:13][4980][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:13][4980][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:13][4980][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:13][4980][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:13][4980][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:13][4980][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:13][4980][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:13][4980][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:13][4980][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:13][4980][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:13][4980][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:13][4980][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:13][4980][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:13][4980][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:13][4980][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:13][4980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:13][4980][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:13][4980][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:13][4980][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:13][4980][INFO][MAIN] Duplicate execution. +[28 10:59:16][4986][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:16][4986][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:16][4986][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:16][4986][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:16][4986][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:16][4986][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:16][4986][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:16][4986][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:16][4986][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:16][4986][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:16][4986][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:16][4986][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:16][4986][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:16][4986][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:16][4986][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:16][4986][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:16][4986][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:16][4986][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:16][4986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:16][4986][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:16][4986][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:16][4986][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:16][4986][INFO][MAIN] Duplicate execution. +[28 10:59:19][4992][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:19][4992][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:19][4992][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:19][4992][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:19][4992][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:19][4992][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:19][4992][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:19][4992][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:19][4992][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:19][4992][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:19][4992][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:19][4992][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:19][4992][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:19][4992][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:19][4992][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:19][4992][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:19][4992][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:19][4992][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:19][4992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:19][4992][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:19][4992][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:19][4992][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:19][4992][INFO][MAIN] Duplicate execution. +[28 10:59:22][4998][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:22][4998][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:22][4998][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:22][4998][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:22][4998][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:22][4998][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:22][4998][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:22][4998][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:22][4998][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:22][4998][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:22][4998][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:22][4998][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:22][4998][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:22][4998][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:22][4998][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:22][4998][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:22][4998][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:22][4998][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:22][4998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:22][4998][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:22][4998][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:22][4998][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:22][4998][INFO][MAIN] Duplicate execution. +[28 10:59:25][5004][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:25][5004][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:25][5004][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:25][5004][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:25][5004][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:25][5004][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:25][5004][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:25][5004][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:25][5004][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:25][5004][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:25][5004][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:25][5004][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:25][5004][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:25][5004][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:25][5004][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:25][5004][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:25][5004][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:25][5004][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:25][5004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:25][5004][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:25][5004][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:25][5004][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:25][5004][INFO][MAIN] Duplicate execution. +[28 10:59:28][5010][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:28][5010][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:28][5010][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:28][5010][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:28][5010][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:28][5010][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:28][5010][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:28][5010][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:28][5010][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:28][5010][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:28][5010][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:28][5010][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:28][5010][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:28][5010][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:28][5010][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:28][5010][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:28][5010][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:28][5010][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:28][5010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:28][5010][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:28][5010][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:28][5010][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:28][5010][INFO][MAIN] Duplicate execution. +[28 10:59:31][5016][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:31][5016][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:31][5016][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:31][5016][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:31][5016][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:31][5016][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:31][5016][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:31][5016][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:31][5016][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:31][5016][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:31][5016][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:31][5016][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:31][5016][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:31][5016][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:31][5016][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:31][5016][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:31][5016][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:31][5016][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:31][5016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:31][5016][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:31][5016][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:31][5016][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:31][5016][INFO][MAIN] Duplicate execution. +[28 10:59:34][5022][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:34][5022][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:34][5022][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:34][5022][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:34][5022][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:34][5022][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:34][5022][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:34][5022][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:34][5022][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:34][5022][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:34][5022][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:34][5022][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:34][5022][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:34][5022][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:34][5022][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:34][5022][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:34][5022][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:34][5022][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:34][5022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:34][5022][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:34][5022][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:34][5022][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:34][5022][INFO][MAIN] Duplicate execution. +[28 10:59:37][5028][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:37][5028][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:37][5028][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:37][5028][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:37][5028][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:37][5028][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:37][5028][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:37][5028][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:37][5028][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:37][5028][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:37][5028][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:37][5028][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:37][5028][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:37][5028][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:37][5028][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:37][5028][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:37][5028][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:37][5028][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:37][5028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:37][5028][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:37][5028][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:37][5028][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:37][5028][INFO][MAIN] Duplicate execution. +[28 10:59:40][5034][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:40][5034][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:40][5034][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:40][5034][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:40][5034][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:40][5034][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:40][5034][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:40][5034][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:40][5034][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:40][5034][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:40][5034][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:40][5034][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:40][5034][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:40][5034][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:40][5034][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:40][5034][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:40][5034][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:40][5034][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:40][5034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:40][5034][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:40][5034][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:40][5034][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:40][5034][INFO][MAIN] Duplicate execution. +[28 10:59:43][5040][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:43][5040][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:43][5040][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:43][5040][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:43][5040][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:43][5040][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:43][5040][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:43][5040][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:43][5040][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:43][5040][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:43][5040][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:43][5040][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:43][5040][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:43][5040][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:43][5040][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:43][5040][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:43][5040][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:43][5040][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:43][5040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:43][5040][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:43][5040][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:43][5040][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:43][5040][INFO][MAIN] Duplicate execution. +[28 10:59:46][5046][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:46][5046][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:46][5046][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:46][5046][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:46][5046][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:46][5046][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:46][5046][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:46][5046][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:46][5046][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:46][5046][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:46][5046][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:46][5046][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:46][5046][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:46][5046][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:46][5046][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:46][5046][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:46][5046][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:46][5046][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:46][5046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:46][5046][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:46][5046][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:46][5046][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:46][5046][INFO][MAIN] Duplicate execution. +[28 10:59:49][5052][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:49][5052][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:49][5052][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:49][5052][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:49][5052][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:49][5052][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:49][5052][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:49][5052][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:49][5052][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:49][5052][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:49][5052][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:49][5052][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:49][5052][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:49][5052][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:49][5052][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:49][5052][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:49][5052][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:49][5052][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:49][5052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:49][5052][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:49][5052][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:49][5052][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:49][5052][INFO][MAIN] Duplicate execution. +[28 10:59:52][5058][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:52][5058][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:52][5058][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:52][5058][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:52][5058][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:52][5058][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:52][5058][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:52][5058][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:52][5058][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:52][5058][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:52][5058][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:52][5058][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:52][5058][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:52][5058][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:52][5058][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:52][5058][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:52][5058][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:52][5058][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:52][5058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:52][5058][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:52][5058][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:52][5058][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:52][5058][INFO][MAIN] Duplicate execution. +[28 10:59:55][5064][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:55][5064][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:55][5064][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:55][5064][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:55][5064][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:55][5064][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:55][5064][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:55][5064][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:55][5064][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:55][5064][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:55][5064][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:55][5064][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:55][5064][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:55][5064][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:55][5064][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:55][5064][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:55][5064][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:55][5064][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:55][5064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:55][5064][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:55][5064][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:55][5064][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:55][5064][INFO][MAIN] Duplicate execution. +[28 10:59:58][5070][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 10:59:58][5070][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 10:59:58][5070][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 10:59:58][5070][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 10:59:58][5070][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 10:59:58][5070][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 10:59:58][5070][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 10:59:58][5070][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 10:59:58][5070][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 10:59:58][5070][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 10:59:58][5070][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 10:59:58][5070][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 10:59:58][5070][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 10:59:58][5070][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 10:59:58][5070][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 10:59:58][5070][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 10:59:58][5070][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 10:59:58][5070][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 10:59:58][5070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 10:59:58][5070][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 10:59:58][5070][INFO][MAIN] hostname[8d9d58c23ac9] +[28 10:59:58][5070][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 10:59:58][5070][INFO][MAIN] Duplicate execution. +[28 11:00:01][5076][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:01][5076][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:01][5076][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:01][5076][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:01][5076][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:01][5076][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:01][5076][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:01][5076][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:01][5076][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:01][5076][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:01][5076][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:01][5076][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:01][5076][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:01][5076][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:01][5076][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:01][5076][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:01][5076][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:01][5076][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:01][5076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:01][5076][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:01][5076][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:01][5076][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:01][5076][INFO][MAIN] Duplicate execution. +[28 11:00:04][5082][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:04][5082][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:04][5082][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:04][5082][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:04][5082][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:04][5082][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:04][5082][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:04][5082][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:04][5082][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:04][5082][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:04][5082][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:04][5082][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:04][5082][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:04][5082][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:04][5082][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:04][5082][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:04][5082][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:04][5082][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:04][5082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:04][5082][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:04][5082][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:04][5082][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:04][5082][INFO][MAIN] Duplicate execution. +[28 11:00:07][5088][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:07][5088][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:07][5088][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:07][5088][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:07][5088][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:07][5088][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:07][5088][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:07][5088][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:07][5088][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:07][5088][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:07][5088][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:07][5088][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:07][5088][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:07][5088][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:07][5088][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:07][5088][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:07][5088][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:07][5088][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:07][5088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:07][5088][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:07][5088][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:07][5088][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:07][5088][INFO][MAIN] Duplicate execution. +[28 11:00:10][5094][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:10][5094][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:10][5094][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:10][5094][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:10][5094][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:10][5094][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:10][5094][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:10][5094][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:10][5094][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:10][5094][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:10][5094][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:10][5094][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:10][5094][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:10][5094][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:10][5094][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:10][5094][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:10][5094][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:10][5094][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:10][5094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:10][5094][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:10][5094][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:10][5094][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:10][5094][INFO][MAIN] Duplicate execution. +[28 11:00:13][5100][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:13][5100][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:13][5100][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:13][5100][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:13][5100][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:13][5100][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:13][5100][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:13][5100][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:13][5100][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:13][5100][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:13][5100][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:13][5100][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:13][5100][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:13][5100][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:13][5100][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:13][5100][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:13][5100][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:13][5100][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:13][5100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:13][5100][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:13][5100][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:13][5100][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:13][5100][INFO][MAIN] Duplicate execution. +[28 11:00:16][5106][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:16][5106][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:16][5106][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:16][5106][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:16][5106][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:16][5106][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:16][5106][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:16][5106][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:16][5106][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:16][5106][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:16][5106][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:16][5106][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:16][5106][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:16][5106][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:16][5106][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:16][5106][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:16][5106][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:16][5106][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:16][5106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:16][5106][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:16][5106][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:16][5106][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:16][5106][INFO][MAIN] Duplicate execution. +[28 11:00:19][5112][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:19][5112][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:19][5112][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:19][5112][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:19][5112][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:19][5112][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:19][5112][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:19][5112][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:19][5112][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:19][5112][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:19][5112][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:19][5112][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:19][5112][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:19][5112][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:19][5112][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:19][5112][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:19][5112][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:19][5112][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:19][5112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:19][5112][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:19][5112][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:19][5112][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:19][5112][INFO][MAIN] Duplicate execution. +[28 11:00:22][5118][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:22][5118][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:22][5118][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:22][5118][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:22][5118][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:22][5118][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:22][5118][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:22][5118][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:22][5118][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:22][5118][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:22][5118][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:22][5118][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:22][5118][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:22][5118][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:22][5118][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:22][5118][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:22][5118][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:22][5118][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:22][5118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:22][5118][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:22][5118][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:22][5118][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:22][5118][INFO][MAIN] Duplicate execution. +[28 11:00:25][5124][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:25][5124][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:25][5124][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:25][5124][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:25][5124][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:25][5124][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:25][5124][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:25][5124][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:25][5124][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:25][5124][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:25][5124][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:25][5124][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:25][5124][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:25][5124][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:25][5124][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:25][5124][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:25][5124][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:25][5124][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:25][5124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:25][5124][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:25][5124][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:25][5124][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:25][5124][INFO][MAIN] Duplicate execution. +[28 11:00:28][5130][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:28][5130][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:28][5130][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:28][5130][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:28][5130][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:28][5130][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:28][5130][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:28][5130][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:28][5130][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:28][5130][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:28][5130][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:28][5130][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:28][5130][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:28][5130][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:28][5130][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:28][5130][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:28][5130][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:28][5130][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:28][5130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:28][5130][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:28][5130][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:28][5130][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:28][5130][INFO][MAIN] Duplicate execution. +[28 11:00:31][5136][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:31][5136][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:31][5136][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:31][5136][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:31][5136][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:31][5136][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:31][5136][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:31][5136][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:31][5136][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:31][5136][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:31][5136][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:31][5136][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:31][5136][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:31][5136][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:31][5136][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:31][5136][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:31][5136][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:31][5136][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:31][5136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:31][5136][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:31][5136][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:31][5136][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:31][5136][INFO][MAIN] Duplicate execution. +[28 11:00:34][5142][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:34][5142][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:34][5142][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:34][5142][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:34][5142][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:34][5142][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:34][5142][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:34][5142][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:34][5142][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:34][5142][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:34][5142][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:34][5142][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:34][5142][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:34][5142][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:34][5142][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:34][5142][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:34][5142][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:34][5142][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:34][5142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:34][5142][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:34][5142][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:34][5142][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:34][5142][INFO][MAIN] Duplicate execution. +[28 11:00:37][5148][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:37][5148][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:37][5148][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:37][5148][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:37][5148][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:37][5148][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:37][5148][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:37][5148][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:37][5148][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:37][5148][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:37][5148][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:37][5148][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:37][5148][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:37][5148][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:37][5148][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:37][5148][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:37][5148][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:37][5148][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:37][5148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:37][5148][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:37][5148][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:37][5148][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:37][5148][INFO][MAIN] Duplicate execution. +[28 11:00:40][5154][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:40][5154][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:40][5154][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:40][5154][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:40][5154][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:40][5154][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:40][5154][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:40][5154][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:40][5154][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:40][5154][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:40][5154][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:40][5154][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:40][5154][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:40][5154][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:40][5154][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:40][5154][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:40][5154][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:40][5154][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:40][5154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:40][5154][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:40][5154][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:40][5154][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:40][5154][INFO][MAIN] Duplicate execution. +[28 11:00:43][5160][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:43][5160][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:43][5160][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:43][5160][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:43][5160][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:43][5160][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:43][5160][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:43][5160][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:43][5160][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:43][5160][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:43][5160][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:43][5160][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:43][5160][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:43][5160][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:43][5160][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:43][5160][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:43][5160][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:43][5160][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:43][5160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:43][5160][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:43][5160][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:43][5160][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:43][5160][INFO][MAIN] Duplicate execution. +[28 11:00:46][5166][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:46][5166][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:46][5166][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:46][5166][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:46][5166][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:46][5166][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:46][5166][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:46][5166][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:46][5166][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:46][5166][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:46][5166][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:46][5166][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:46][5166][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:46][5166][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:46][5166][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:46][5166][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:46][5166][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:46][5166][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:46][5166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:46][5166][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:46][5166][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:46][5166][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:46][5166][INFO][MAIN] Duplicate execution. +[28 11:00:49][5172][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:49][5172][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:49][5172][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:49][5172][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:49][5172][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:49][5172][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:49][5172][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:49][5172][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:49][5172][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:49][5172][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:49][5172][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:49][5172][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:49][5172][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:49][5172][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:49][5172][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:49][5172][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:49][5172][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:49][5172][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:49][5172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:49][5172][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:49][5172][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:49][5172][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:49][5172][INFO][MAIN] Duplicate execution. +[28 11:00:52][5178][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:52][5178][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:52][5178][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:52][5178][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:52][5178][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:52][5178][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:52][5178][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:52][5178][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:52][5178][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:52][5178][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:52][5178][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:52][5178][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:52][5178][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:52][5178][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:52][5178][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:52][5178][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:52][5178][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:52][5178][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:52][5178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:52][5178][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:52][5178][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:52][5178][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:52][5178][INFO][MAIN] Duplicate execution. +[28 11:00:55][5184][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:55][5184][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:55][5184][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:55][5184][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:55][5184][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:55][5184][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:55][5184][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:55][5184][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:55][5184][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:55][5184][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:55][5184][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:55][5184][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:55][5184][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:55][5184][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:55][5184][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:55][5184][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:55][5184][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:55][5184][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:55][5184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:55][5184][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:55][5184][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:55][5184][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:55][5184][INFO][MAIN] Duplicate execution. +[28 11:00:58][5190][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:00:58][5190][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:00:58][5190][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:00:58][5190][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:00:58][5190][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:00:58][5190][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:00:58][5190][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:00:58][5190][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:00:58][5190][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:00:58][5190][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:00:58][5190][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:00:58][5190][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:00:58][5190][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:00:58][5190][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:00:58][5190][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:00:58][5190][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:00:58][5190][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:00:58][5190][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:00:58][5190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:00:58][5190][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:00:58][5190][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:00:58][5190][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:00:58][5190][INFO][MAIN] Duplicate execution. +[28 11:01:01][5196][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:01][5196][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:01][5196][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:01][5196][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:01][5196][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:01][5196][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:01][5196][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:01][5196][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:01][5196][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:01][5196][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:01][5196][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:01][5196][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:01][5196][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:01][5196][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:01][5196][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:01][5196][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:01][5196][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:01][5196][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:01][5196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:01][5196][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:01][5196][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:01][5196][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:01][5196][INFO][MAIN] Duplicate execution. +[28 11:01:04][5202][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:04][5202][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:04][5202][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:04][5202][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:04][5202][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:04][5202][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:04][5202][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:04][5202][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:04][5202][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:04][5202][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:04][5202][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:04][5202][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:04][5202][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:04][5202][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:04][5202][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:04][5202][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:04][5202][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:04][5202][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:04][5202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:04][5202][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:04][5202][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:04][5202][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:04][5202][INFO][MAIN] Duplicate execution. +[28 11:01:07][5208][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:07][5208][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:07][5208][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:07][5208][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:07][5208][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:07][5208][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:07][5208][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:07][5208][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:07][5208][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:07][5208][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:07][5208][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:07][5208][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:07][5208][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:07][5208][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:07][5208][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:07][5208][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:07][5208][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:07][5208][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:07][5208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:07][5208][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:07][5208][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:07][5208][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:07][5208][INFO][MAIN] Duplicate execution. +[28 11:01:11][5214][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:11][5214][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:11][5214][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:11][5214][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:11][5214][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:11][5214][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:11][5214][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:11][5214][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:11][5214][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:11][5214][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:11][5214][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:11][5214][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:11][5214][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:11][5214][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:11][5214][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:11][5214][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:11][5214][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:11][5214][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:11][5214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:11][5214][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:11][5214][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:11][5214][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:11][5214][INFO][MAIN] Duplicate execution. +[28 11:01:13][5220][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:13][5220][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:13][5220][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:13][5220][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:13][5220][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:13][5220][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:13][5220][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:13][5220][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:13][5220][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:13][5220][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:13][5220][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:13][5220][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:13][5220][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:13][5220][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:13][5220][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:13][5220][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:13][5220][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:13][5220][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:13][5220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:13][5220][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:13][5220][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:13][5220][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:13][5220][INFO][MAIN] Duplicate execution. +[28 11:01:16][5226][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:16][5226][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:16][5226][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:16][5226][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:16][5226][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:16][5226][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:16][5226][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:16][5226][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:16][5226][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:16][5226][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:16][5226][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:16][5226][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:16][5226][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:16][5226][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:16][5226][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:16][5226][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:16][5226][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:16][5226][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:16][5226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:16][5226][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:16][5226][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:16][5226][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:16][5226][INFO][MAIN] Duplicate execution. +[28 11:01:19][5232][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:19][5232][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:19][5232][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:19][5232][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:19][5232][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:19][5232][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:19][5232][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:19][5232][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:19][5232][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:19][5232][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:19][5232][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:19][5232][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:19][5232][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:19][5232][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:19][5232][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:19][5232][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:19][5232][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:19][5232][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:19][5232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:19][5232][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:19][5232][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:19][5232][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:19][5232][INFO][MAIN] Duplicate execution. +[28 11:01:22][5238][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:22][5238][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:22][5238][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:22][5238][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:22][5238][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:22][5238][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:22][5238][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:22][5238][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:22][5238][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:22][5238][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:22][5238][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:22][5238][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:22][5238][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:22][5238][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:22][5238][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:22][5238][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:22][5238][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:22][5238][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:22][5238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:22][5238][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:22][5238][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:22][5238][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:22][5238][INFO][MAIN] Duplicate execution. +[28 11:01:25][5244][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:25][5244][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:25][5244][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:25][5244][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:25][5244][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:25][5244][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:25][5244][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:25][5244][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:25][5244][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:25][5244][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:25][5244][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:25][5244][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:25][5244][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:25][5244][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:25][5244][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:25][5244][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:25][5244][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:25][5244][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:25][5244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:25][5244][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:25][5244][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:25][5244][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:25][5244][INFO][MAIN] Duplicate execution. +[28 11:01:28][5250][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:28][5250][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:28][5250][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:28][5250][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:28][5250][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:28][5250][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:28][5250][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:28][5250][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:28][5250][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:28][5250][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:28][5250][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:28][5250][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:28][5250][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:28][5250][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:28][5250][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:28][5250][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:28][5250][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:28][5250][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:28][5250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:28][5250][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:28][5250][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:28][5250][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:28][5250][INFO][MAIN] Duplicate execution. +[28 11:01:31][5256][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:31][5256][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:31][5256][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:31][5256][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:31][5256][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:31][5256][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:31][5256][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:31][5256][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:31][5256][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:31][5256][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:31][5256][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:31][5256][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:31][5256][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:31][5256][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:31][5256][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:31][5256][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:31][5256][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:31][5256][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:31][5256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:31][5256][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:31][5256][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:31][5256][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:31][5256][INFO][MAIN] Duplicate execution. +[28 11:01:34][5262][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:34][5262][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:34][5262][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:34][5262][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:34][5262][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:34][5262][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:34][5262][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:34][5262][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:34][5262][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:34][5262][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:34][5262][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:34][5262][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:34][5262][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:34][5262][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:34][5262][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:34][5262][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:34][5262][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:34][5262][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:34][5262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:34][5262][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:34][5262][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:34][5262][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:34][5262][INFO][MAIN] Duplicate execution. +[28 11:01:37][5268][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:37][5268][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:37][5268][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:37][5268][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:37][5268][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:37][5268][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:37][5268][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:37][5268][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:37][5268][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:37][5268][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:37][5268][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:37][5268][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:37][5268][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:37][5268][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:37][5268][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:37][5268][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:37][5268][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:37][5268][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:37][5268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:37][5268][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:37][5268][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:37][5268][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:37][5268][INFO][MAIN] Duplicate execution. +[28 11:01:40][5274][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:40][5274][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:40][5274][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:40][5274][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:40][5274][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:40][5274][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:40][5274][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:40][5274][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:40][5274][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:40][5274][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:40][5274][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:40][5274][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:40][5274][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:40][5274][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:40][5274][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:40][5274][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:40][5274][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:40][5274][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:40][5274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:40][5274][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:40][5274][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:40][5274][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:40][5274][INFO][MAIN] Duplicate execution. +[28 11:01:43][5280][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:43][5280][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:43][5280][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:43][5280][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:43][5280][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:43][5280][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:43][5280][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:43][5280][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:43][5280][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:43][5280][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:43][5280][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:43][5280][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:43][5280][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:43][5280][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:43][5280][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:43][5280][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:43][5280][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:43][5280][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:43][5280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:43][5280][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:43][5280][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:43][5280][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:43][5280][INFO][MAIN] Duplicate execution. +[28 11:01:46][5286][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:46][5286][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:46][5286][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:46][5286][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:46][5286][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:46][5286][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:46][5286][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:46][5286][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:46][5286][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:46][5286][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:46][5286][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:46][5286][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:46][5286][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:46][5286][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:46][5286][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:46][5286][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:46][5286][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:46][5286][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:46][5286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:46][5286][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:46][5286][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:46][5286][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:46][5286][INFO][MAIN] Duplicate execution. +[28 11:01:49][5292][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:49][5292][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:49][5292][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:49][5292][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:49][5292][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:49][5292][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:49][5292][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:49][5292][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:49][5292][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:49][5292][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:49][5292][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:49][5292][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:49][5292][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:49][5292][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:49][5292][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:49][5292][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:49][5292][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:49][5292][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:49][5292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:49][5292][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:49][5292][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:49][5292][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:49][5292][INFO][MAIN] Duplicate execution. +[28 11:01:52][5298][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:52][5298][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:52][5298][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:52][5298][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:52][5298][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:52][5298][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:52][5298][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:52][5298][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:52][5298][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:52][5298][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:52][5298][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:52][5298][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:52][5298][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:52][5298][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:52][5298][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:52][5298][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:52][5298][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:52][5298][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:52][5298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:52][5298][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:52][5298][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:52][5298][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:52][5298][INFO][MAIN] Duplicate execution. +[28 11:01:55][5304][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:55][5304][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:55][5304][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:55][5304][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:55][5304][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:55][5304][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:55][5304][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:55][5304][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:55][5304][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:55][5304][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:55][5304][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:55][5304][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:55][5304][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:55][5304][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:55][5304][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:55][5304][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:55][5304][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:55][5304][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:55][5304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:55][5304][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:55][5304][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:55][5304][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:55][5304][INFO][MAIN] Duplicate execution. +[28 11:01:58][5310][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:01:58][5310][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:01:58][5310][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:01:58][5310][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:01:58][5310][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:01:58][5310][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:01:58][5310][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:01:58][5310][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:01:58][5310][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:01:58][5310][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:01:58][5310][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:01:58][5310][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:01:58][5310][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:01:58][5310][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:01:58][5310][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:01:58][5310][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:01:58][5310][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:01:58][5310][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:01:58][5310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:01:58][5310][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:01:58][5310][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:01:58][5310][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:01:58][5310][INFO][MAIN] Duplicate execution. +[28 11:02:01][5316][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:01][5316][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:01][5316][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:01][5316][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:01][5316][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:01][5316][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:01][5316][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:01][5316][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:01][5316][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:01][5316][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:01][5316][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:01][5316][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:01][5316][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:01][5316][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:01][5316][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:01][5316][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:01][5316][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:01][5316][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:01][5316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:01][5316][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:01][5316][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:01][5316][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:01][5316][INFO][MAIN] Duplicate execution. +[28 11:02:04][5322][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:04][5322][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:04][5322][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:04][5322][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:04][5322][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:04][5322][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:04][5322][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:04][5322][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:04][5322][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:04][5322][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:04][5322][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:04][5322][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:04][5322][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:04][5322][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:04][5322][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:04][5322][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:04][5322][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:04][5322][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:04][5322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:04][5322][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:04][5322][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:04][5322][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:04][5322][INFO][MAIN] Duplicate execution. +[28 11:02:07][5328][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:07][5328][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:07][5328][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:07][5328][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:07][5328][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:07][5328][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:07][5328][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:07][5328][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:07][5328][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:07][5328][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:07][5328][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:07][5328][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:07][5328][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:07][5328][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:07][5328][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:07][5328][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:07][5328][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:07][5328][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:07][5328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:07][5328][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:07][5328][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:07][5328][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:07][5328][INFO][MAIN] Duplicate execution. +[28 11:02:10][5334][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:10][5334][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:10][5334][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:10][5334][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:10][5334][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:10][5334][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:10][5334][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:10][5334][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:10][5334][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:10][5334][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:10][5334][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:10][5334][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:10][5334][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:10][5334][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:10][5334][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:10][5334][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:10][5334][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:10][5334][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:10][5334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:10][5334][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:10][5334][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:10][5334][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:10][5334][INFO][MAIN] Duplicate execution. +[28 11:02:13][5340][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:13][5340][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:13][5340][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:13][5340][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:13][5340][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:13][5340][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:13][5340][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:13][5340][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:13][5340][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:13][5340][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:13][5340][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:13][5340][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:13][5340][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:13][5340][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:13][5340][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:13][5340][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:13][5340][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:13][5340][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:13][5340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:13][5340][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:13][5340][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:13][5340][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:13][5340][INFO][MAIN] Duplicate execution. +[28 11:02:16][5346][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:16][5346][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:16][5346][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:16][5346][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:16][5346][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:16][5346][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:16][5346][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:16][5346][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:16][5346][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:16][5346][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:16][5346][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:16][5346][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:16][5346][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:16][5346][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:16][5346][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:16][5346][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:16][5346][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:16][5346][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:16][5346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:16][5346][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:16][5346][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:16][5346][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:16][5346][INFO][MAIN] Duplicate execution. +[28 11:02:19][5352][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:19][5352][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:19][5352][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:19][5352][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:19][5352][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:19][5352][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:19][5352][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:19][5352][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:19][5352][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:19][5352][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:19][5352][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:19][5352][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:19][5352][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:19][5352][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:19][5352][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:19][5352][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:19][5352][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:19][5352][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:19][5352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:19][5352][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:19][5352][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:19][5352][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:19][5352][INFO][MAIN] Duplicate execution. +[28 11:02:22][5358][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:22][5358][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:22][5358][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:22][5358][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:22][5358][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:22][5358][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:22][5358][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:22][5358][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:22][5358][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:22][5358][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:22][5358][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:22][5358][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:22][5358][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:22][5358][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:22][5358][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:22][5358][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:22][5358][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:22][5358][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:22][5358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:22][5358][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:22][5358][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:22][5358][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:22][5358][INFO][MAIN] Duplicate execution. +[28 11:02:25][5364][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:25][5364][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:25][5364][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:25][5364][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:25][5364][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:25][5364][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:25][5364][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:25][5364][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:25][5364][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:25][5364][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:25][5364][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:25][5364][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:25][5364][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:25][5364][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:25][5364][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:25][5364][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:25][5364][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:25][5364][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:25][5364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:25][5364][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:25][5364][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:25][5364][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:25][5364][INFO][MAIN] Duplicate execution. +[28 11:02:28][5370][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:28][5370][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:28][5370][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:28][5370][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:28][5370][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:28][5370][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:28][5370][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:28][5370][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:28][5370][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:28][5370][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:28][5370][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:28][5370][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:28][5370][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:28][5370][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:28][5370][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:28][5370][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:28][5370][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:28][5370][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:28][5370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:28][5370][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:28][5370][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:28][5370][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:28][5370][INFO][MAIN] Duplicate execution. +[28 11:02:31][5376][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:31][5376][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:31][5376][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:31][5376][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:31][5376][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:31][5376][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:31][5376][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:31][5376][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:31][5376][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:31][5376][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:31][5376][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:31][5376][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:31][5376][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:31][5376][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:31][5376][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:31][5376][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:31][5376][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:31][5376][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:31][5376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:31][5376][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:31][5376][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:31][5376][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:31][5376][INFO][MAIN] Duplicate execution. +[28 11:02:34][5382][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:34][5382][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:34][5382][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:34][5382][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:34][5382][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:34][5382][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:34][5382][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:34][5382][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:34][5382][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:34][5382][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:34][5382][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:34][5382][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:34][5382][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:34][5382][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:34][5382][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:34][5382][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:34][5382][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:34][5382][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:34][5382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:34][5382][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:34][5382][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:34][5382][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:34][5382][INFO][MAIN] Duplicate execution. +[28 11:02:37][5388][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:37][5388][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:37][5388][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:37][5388][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:37][5388][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:37][5388][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:37][5388][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:37][5388][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:37][5388][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:37][5388][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:37][5388][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:37][5388][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:37][5388][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:37][5388][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:37][5388][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:37][5388][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:37][5388][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:37][5388][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:37][5388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:37][5388][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:37][5388][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:37][5388][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:37][5388][INFO][MAIN] Duplicate execution. +[28 11:02:40][5394][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:40][5394][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:40][5394][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:40][5394][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:40][5394][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:40][5394][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:40][5394][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:40][5394][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:40][5394][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:40][5394][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:40][5394][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:40][5394][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:40][5394][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:40][5394][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:40][5394][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:40][5394][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:40][5394][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:40][5394][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:40][5394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:40][5394][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:40][5394][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:40][5394][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:40][5394][INFO][MAIN] Duplicate execution. +[28 11:02:43][5400][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:43][5400][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:43][5400][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:43][5400][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:43][5400][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:43][5400][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:43][5400][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:43][5400][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:43][5400][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:43][5400][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:43][5400][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:43][5400][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:43][5400][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:43][5400][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:43][5400][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:43][5400][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:43][5400][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:43][5400][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:43][5400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:43][5400][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:43][5400][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:43][5400][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:43][5400][INFO][MAIN] Duplicate execution. +[28 11:02:46][5406][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:46][5406][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:46][5406][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:46][5406][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:46][5406][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:46][5406][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:46][5406][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:46][5406][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:46][5406][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:46][5406][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:46][5406][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:46][5406][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:46][5406][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:46][5406][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:46][5406][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:46][5406][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:46][5406][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:46][5406][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:46][5406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:46][5406][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:46][5406][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:46][5406][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:46][5406][INFO][MAIN] Duplicate execution. +[28 11:02:49][5412][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:49][5412][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:49][5412][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:49][5412][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:49][5412][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:49][5412][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:49][5412][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:49][5412][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:49][5412][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:49][5412][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:49][5412][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:49][5412][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:49][5412][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:49][5412][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:49][5412][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:49][5412][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:49][5412][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:49][5412][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:49][5412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:49][5412][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:49][5412][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:49][5412][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:49][5412][INFO][MAIN] Duplicate execution. +[28 11:02:52][5418][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:52][5418][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:52][5418][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:52][5418][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:52][5418][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:52][5418][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:52][5418][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:52][5418][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:52][5418][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:52][5418][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:52][5418][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:52][5418][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:52][5418][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:52][5418][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:52][5418][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:52][5418][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:52][5418][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:52][5418][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:52][5418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:52][5418][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:52][5418][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:52][5418][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:52][5418][INFO][MAIN] Duplicate execution. +[28 11:02:55][5424][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:55][5424][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:55][5424][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:55][5424][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:55][5424][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:55][5424][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:55][5424][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:55][5424][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:55][5424][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:55][5424][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:55][5424][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:55][5424][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:55][5424][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:55][5424][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:55][5424][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:55][5424][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:55][5424][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:55][5424][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:55][5424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:55][5424][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:55][5424][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:55][5424][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:55][5424][INFO][MAIN] Duplicate execution. +[28 11:02:58][5430][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:02:58][5430][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:02:58][5430][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:02:58][5430][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:02:58][5430][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:02:58][5430][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:02:58][5430][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:02:58][5430][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:02:58][5430][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:02:58][5430][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:02:58][5430][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:02:58][5430][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:02:58][5430][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:02:58][5430][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:02:58][5430][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:02:58][5430][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:02:58][5430][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:02:58][5430][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:02:58][5430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:02:58][5430][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:02:58][5430][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:02:58][5430][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:02:58][5430][INFO][MAIN] Duplicate execution. +[28 11:03:01][5436][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:01][5436][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:01][5436][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:01][5436][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:01][5436][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:01][5436][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:01][5436][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:01][5436][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:01][5436][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:01][5436][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:01][5436][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:01][5436][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:01][5436][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:01][5436][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:01][5436][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:01][5436][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:01][5436][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:01][5436][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:01][5436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:01][5436][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:01][5436][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:01][5436][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:01][5436][INFO][MAIN] Duplicate execution. +[28 11:03:04][5442][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:04][5442][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:04][5442][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:04][5442][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:04][5442][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:04][5442][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:04][5442][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:04][5442][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:04][5442][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:04][5442][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:04][5442][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:04][5442][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:04][5442][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:04][5442][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:04][5442][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:04][5442][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:04][5442][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:04][5442][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:04][5442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:04][5442][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:04][5442][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:04][5442][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:04][5442][INFO][MAIN] Duplicate execution. +[28 11:03:07][5448][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:07][5448][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:07][5448][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:07][5448][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:07][5448][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:07][5448][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:07][5448][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:07][5448][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:07][5448][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:07][5448][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:07][5448][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:07][5448][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:07][5448][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:07][5448][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:07][5448][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:07][5448][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:07][5448][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:07][5448][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:07][5448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:07][5448][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:07][5448][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:07][5448][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:07][5448][INFO][MAIN] Duplicate execution. +[28 11:03:10][5454][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:10][5454][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:10][5454][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:10][5454][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:10][5454][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:10][5454][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:10][5454][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:10][5454][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:10][5454][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:10][5454][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:10][5454][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:10][5454][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:10][5454][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:10][5454][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:10][5454][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:10][5454][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:10][5454][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:10][5454][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:10][5454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:10][5454][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:10][5454][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:10][5454][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:10][5454][INFO][MAIN] Duplicate execution. +[28 11:03:13][5460][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:13][5460][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:13][5460][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:13][5460][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:13][5460][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:13][5460][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:13][5460][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:13][5460][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:13][5460][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:13][5460][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:13][5460][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:13][5460][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:13][5460][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:13][5460][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:13][5460][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:13][5460][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:13][5460][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:13][5460][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:13][5460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:13][5460][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:13][5460][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:13][5460][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:13][5460][INFO][MAIN] Duplicate execution. +[28 11:03:16][5466][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:16][5466][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:16][5466][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:16][5466][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:16][5466][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:16][5466][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:16][5466][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:16][5466][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:16][5466][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:16][5466][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:16][5466][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:16][5466][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:16][5466][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:16][5466][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:16][5466][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:16][5466][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:16][5466][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:16][5466][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:16][5466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:16][5466][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:16][5466][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:16][5466][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:16][5466][INFO][MAIN] Duplicate execution. +[28 11:03:19][5472][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:19][5472][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:19][5472][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:19][5472][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:19][5472][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:19][5472][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:19][5472][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:19][5472][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:19][5472][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:19][5472][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:19][5472][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:19][5472][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:19][5472][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:19][5472][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:19][5472][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:19][5472][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:19][5472][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:19][5472][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:19][5472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:19][5472][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:19][5472][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:19][5472][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:19][5472][INFO][MAIN] Duplicate execution. +[28 11:03:22][5478][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:22][5478][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:22][5478][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:22][5478][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:22][5478][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:22][5478][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:22][5478][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:22][5478][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:22][5478][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:22][5478][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:22][5478][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:22][5478][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:22][5478][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:22][5478][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:22][5478][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:22][5478][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:22][5478][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:22][5478][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:22][5478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:22][5478][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:22][5478][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:22][5478][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:22][5478][INFO][MAIN] Duplicate execution. +[28 11:03:25][5484][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:25][5484][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:25][5484][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:25][5484][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:25][5484][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:25][5484][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:25][5484][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:25][5484][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:25][5484][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:25][5484][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:25][5484][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:25][5484][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:25][5484][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:25][5484][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:25][5484][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:25][5484][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:25][5484][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:25][5484][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:25][5484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:25][5484][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:25][5484][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:25][5484][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:25][5484][INFO][MAIN] Duplicate execution. +[28 11:03:28][5490][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:28][5490][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:28][5490][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:28][5490][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:28][5490][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:28][5490][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:28][5490][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:28][5490][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:28][5490][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:28][5490][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:28][5490][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:28][5490][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:28][5490][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:28][5490][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:28][5490][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:28][5490][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:28][5490][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:28][5490][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:28][5490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:28][5490][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:28][5490][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:28][5490][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:28][5490][INFO][MAIN] Duplicate execution. +[28 11:03:31][5496][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:31][5496][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:31][5496][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:31][5496][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:31][5496][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:31][5496][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:31][5496][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:31][5496][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:31][5496][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:31][5496][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:31][5496][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:31][5496][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:31][5496][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:31][5496][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:31][5496][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:31][5496][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:31][5496][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:31][5496][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:31][5496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:31][5496][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:31][5496][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:31][5496][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:31][5496][INFO][MAIN] Duplicate execution. +[28 11:03:34][5502][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:34][5502][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:34][5502][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:34][5502][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:34][5502][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:34][5502][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:34][5502][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:34][5502][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:34][5502][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:34][5502][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:34][5502][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:34][5502][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:34][5502][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:34][5502][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:34][5502][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:34][5502][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:34][5502][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:34][5502][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:34][5502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:34][5502][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:34][5502][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:34][5502][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:34][5502][INFO][MAIN] Duplicate execution. +[28 11:03:37][5508][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:37][5508][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:37][5508][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:37][5508][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:37][5508][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:37][5508][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:37][5508][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:37][5508][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:37][5508][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:37][5508][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:37][5508][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:37][5508][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:37][5508][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:37][5508][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:37][5508][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:37][5508][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:37][5508][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:37][5508][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:37][5508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:37][5508][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:37][5508][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:37][5508][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:37][5508][INFO][MAIN] Duplicate execution. +[28 11:03:40][5514][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:40][5514][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:40][5514][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:40][5514][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:40][5514][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:40][5514][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:40][5514][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:40][5514][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:40][5514][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:40][5514][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:40][5514][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:40][5514][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:40][5514][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:40][5514][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:40][5514][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:40][5514][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:40][5514][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:40][5514][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:40][5514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:40][5514][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:40][5514][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:40][5514][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:40][5514][INFO][MAIN] Duplicate execution. +[28 11:03:43][5520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:43][5520][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:43][5520][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:43][5520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:43][5520][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:43][5520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:43][5520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:43][5520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:43][5520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:43][5520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:43][5520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:43][5520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:43][5520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:43][5520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:43][5520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:43][5520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:43][5520][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:43][5520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:43][5520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:43][5520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:43][5520][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:43][5520][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:43][5520][INFO][MAIN] Duplicate execution. +[28 11:03:46][5526][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:46][5526][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:46][5526][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:46][5526][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:46][5526][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:46][5526][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:46][5526][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:46][5526][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:46][5526][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:46][5526][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:46][5526][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:46][5526][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:46][5526][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:46][5526][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:46][5526][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:46][5526][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:46][5526][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:46][5526][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:46][5526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:46][5526][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:46][5526][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:46][5526][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:46][5526][INFO][MAIN] Duplicate execution. +[28 11:03:49][5532][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:49][5532][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:49][5532][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:49][5532][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:49][5532][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:49][5532][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:49][5532][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:49][5532][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:49][5532][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:49][5532][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:49][5532][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:49][5532][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:49][5532][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:49][5532][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:49][5532][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:49][5532][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:49][5532][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:49][5532][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:49][5532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:49][5532][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:49][5532][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:49][5532][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:49][5532][INFO][MAIN] Duplicate execution. +[28 11:03:52][5538][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:52][5538][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:52][5538][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:52][5538][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:52][5538][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:52][5538][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:52][5538][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:52][5538][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:52][5538][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:52][5538][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:52][5538][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:52][5538][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:52][5538][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:52][5538][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:52][5538][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:52][5538][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:52][5538][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:52][5538][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:52][5538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:52][5538][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:52][5538][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:52][5538][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:52][5538][INFO][MAIN] Duplicate execution. +[28 11:03:55][5544][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:55][5544][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:55][5544][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:55][5544][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:55][5544][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:55][5544][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:55][5544][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:55][5544][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:55][5544][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:55][5544][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:55][5544][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:55][5544][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:55][5544][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:55][5544][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:55][5544][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:55][5544][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:55][5544][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:55][5544][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:55][5544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:55][5544][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:55][5544][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:55][5544][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:55][5544][INFO][MAIN] Duplicate execution. +[28 11:03:58][5550][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:03:58][5550][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:03:58][5550][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:03:58][5550][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:03:58][5550][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:03:58][5550][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:03:58][5550][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:03:58][5550][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:03:58][5550][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:03:58][5550][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:03:58][5550][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:03:58][5550][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:03:58][5550][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:03:58][5550][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:03:58][5550][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:03:58][5550][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:03:58][5550][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:03:58][5550][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:03:58][5550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:03:58][5550][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:03:58][5550][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:03:58][5550][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:03:58][5550][INFO][MAIN] Duplicate execution. +[28 11:04:01][5556][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:01][5556][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:01][5556][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:01][5556][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:01][5556][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:01][5556][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:01][5556][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:01][5556][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:01][5556][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:01][5556][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:01][5556][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:01][5556][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:01][5556][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:01][5556][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:01][5556][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:01][5556][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:01][5556][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:01][5556][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:01][5556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:01][5556][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:01][5556][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:01][5556][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:01][5556][INFO][MAIN] Duplicate execution. +[28 11:04:04][5562][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:04][5562][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:04][5562][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:04][5562][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:04][5562][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:04][5562][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:04][5562][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:04][5562][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:04][5562][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:04][5562][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:04][5562][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:04][5562][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:04][5562][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:04][5562][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:04][5562][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:04][5562][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:04][5562][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:04][5562][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:04][5562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:04][5562][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:04][5562][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:04][5562][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:04][5562][INFO][MAIN] Duplicate execution. +[28 11:04:07][5568][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:07][5568][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:07][5568][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:07][5568][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:07][5568][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:07][5568][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:07][5568][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:07][5568][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:07][5568][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:07][5568][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:07][5568][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:07][5568][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:07][5568][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:07][5568][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:07][5568][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:07][5568][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:07][5568][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:07][5568][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:07][5568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:07][5568][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:07][5568][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:07][5568][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:07][5568][INFO][MAIN] Duplicate execution. +[28 11:04:10][5574][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:10][5574][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:10][5574][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:10][5574][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:10][5574][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:10][5574][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:10][5574][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:10][5574][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:10][5574][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:10][5574][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:10][5574][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:10][5574][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:10][5574][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:10][5574][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:10][5574][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:10][5574][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:10][5574][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:10][5574][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:10][5574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:10][5574][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:10][5574][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:10][5574][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:10][5574][INFO][MAIN] Duplicate execution. +[28 11:04:13][5580][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:13][5580][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:13][5580][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:13][5580][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:13][5580][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:13][5580][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:13][5580][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:13][5580][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:13][5580][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:13][5580][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:13][5580][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:13][5580][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:13][5580][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:13][5580][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:13][5580][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:13][5580][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:13][5580][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:13][5580][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:13][5580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:13][5580][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:13][5580][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:13][5580][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:13][5580][INFO][MAIN] Duplicate execution. +[28 11:04:16][5586][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:16][5586][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:16][5586][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:16][5586][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:16][5586][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:16][5586][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:16][5586][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:16][5586][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:16][5586][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:16][5586][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:16][5586][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:16][5586][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:16][5586][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:16][5586][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:16][5586][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:16][5586][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:16][5586][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:16][5586][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:16][5586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:16][5586][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:16][5586][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:16][5586][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:16][5586][INFO][MAIN] Duplicate execution. +[28 11:04:19][5592][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:19][5592][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:19][5592][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:19][5592][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:19][5592][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:19][5592][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:19][5592][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:19][5592][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:19][5592][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:19][5592][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:19][5592][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:19][5592][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:19][5592][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:19][5592][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:19][5592][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:19][5592][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:19][5592][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:19][5592][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:19][5592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:19][5592][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:19][5592][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:19][5592][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:19][5592][INFO][MAIN] Duplicate execution. +[28 11:04:22][5598][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:22][5598][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:22][5598][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:22][5598][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:22][5598][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:22][5598][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:22][5598][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:22][5598][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:22][5598][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:22][5598][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:22][5598][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:22][5598][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:22][5598][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:22][5598][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:22][5598][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:22][5598][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:22][5598][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:22][5598][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:22][5598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:22][5598][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:22][5598][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:22][5598][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:22][5598][INFO][MAIN] Duplicate execution. +[28 11:04:25][5604][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:25][5604][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:25][5604][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:25][5604][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:25][5604][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:25][5604][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:25][5604][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:25][5604][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:25][5604][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:25][5604][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:25][5604][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:25][5604][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:25][5604][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:25][5604][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:25][5604][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:25][5604][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:25][5604][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:25][5604][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:25][5604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:25][5604][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:25][5604][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:25][5604][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:25][5604][INFO][MAIN] Duplicate execution. +[28 11:04:28][5610][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:28][5610][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:28][5610][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:28][5610][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:28][5610][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:28][5610][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:28][5610][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:28][5610][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:28][5610][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:28][5610][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:28][5610][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:28][5610][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:28][5610][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:28][5610][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:28][5610][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:28][5610][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:28][5610][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:28][5610][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:28][5610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:28][5610][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:28][5610][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:28][5610][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:28][5610][INFO][MAIN] Duplicate execution. +[28 11:04:31][5616][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:31][5616][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:31][5616][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:31][5616][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:31][5616][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:31][5616][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:31][5616][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:31][5616][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:31][5616][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:31][5616][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:31][5616][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:31][5616][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:31][5616][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:31][5616][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:31][5616][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:31][5616][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:31][5616][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:31][5616][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:31][5616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:31][5616][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:31][5616][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:31][5616][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:31][5616][INFO][MAIN] Duplicate execution. +[28 11:04:34][5622][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:34][5622][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:34][5622][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:34][5622][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:34][5622][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:34][5622][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:34][5622][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:34][5622][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:34][5622][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:34][5622][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:34][5622][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:34][5622][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:34][5622][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:34][5622][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:34][5622][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:34][5622][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:34][5622][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:34][5622][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:34][5622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:34][5622][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:34][5622][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:34][5622][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:34][5622][INFO][MAIN] Duplicate execution. +[28 11:04:37][5628][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:37][5628][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:37][5628][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:37][5628][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:37][5628][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:37][5628][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:37][5628][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:37][5628][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:37][5628][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:37][5628][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:37][5628][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:37][5628][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:37][5628][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:37][5628][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:37][5628][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:37][5628][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:37][5628][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:37][5628][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:37][5628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:37][5628][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:37][5628][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:37][5628][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:37][5628][INFO][MAIN] Duplicate execution. +[28 11:04:40][5634][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:40][5634][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:40][5634][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:40][5634][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:40][5634][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:40][5634][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:40][5634][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:40][5634][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:40][5634][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:40][5634][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:40][5634][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:40][5634][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:40][5634][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:40][5634][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:40][5634][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:40][5634][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:40][5634][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:40][5634][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:40][5634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:40][5634][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:40][5634][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:40][5634][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:40][5634][INFO][MAIN] Duplicate execution. +[28 11:04:43][5640][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:43][5640][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:43][5640][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:43][5640][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:43][5640][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:43][5640][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:43][5640][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:43][5640][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:43][5640][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:43][5640][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:43][5640][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:43][5640][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:43][5640][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:43][5640][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:43][5640][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:43][5640][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:43][5640][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:43][5640][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:43][5640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:43][5640][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:43][5640][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:43][5640][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:43][5640][INFO][MAIN] Duplicate execution. +[28 11:04:46][5646][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:46][5646][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:46][5646][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:46][5646][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:46][5646][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:46][5646][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:46][5646][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:46][5646][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:46][5646][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:46][5646][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:46][5646][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:46][5646][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:46][5646][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:46][5646][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:46][5646][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:46][5646][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:46][5646][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:46][5646][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:46][5646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:46][5646][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:46][5646][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:46][5646][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:46][5646][INFO][MAIN] Duplicate execution. +[28 11:04:49][5652][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:49][5652][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:49][5652][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:49][5652][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:49][5652][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:49][5652][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:49][5652][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:49][5652][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:49][5652][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:49][5652][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:49][5652][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:49][5652][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:49][5652][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:49][5652][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:49][5652][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:49][5652][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:49][5652][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:49][5652][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:49][5652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:49][5652][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:49][5652][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:49][5652][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:49][5652][INFO][MAIN] Duplicate execution. +[28 11:04:52][5658][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:52][5658][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:52][5658][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:52][5658][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:52][5658][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:52][5658][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:52][5658][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:52][5658][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:52][5658][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:52][5658][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:52][5658][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:52][5658][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:52][5658][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:52][5658][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:52][5658][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:52][5658][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:52][5658][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:52][5658][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:52][5658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:52][5658][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:52][5658][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:52][5658][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:52][5658][INFO][MAIN] Duplicate execution. +[28 11:04:55][5664][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:55][5664][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:55][5664][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:55][5664][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:55][5664][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:55][5664][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:55][5664][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:55][5664][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:55][5664][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:55][5664][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:55][5664][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:55][5664][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:55][5664][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:55][5664][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:55][5664][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:55][5664][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:55][5664][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:55][5664][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:55][5664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:55][5664][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:55][5664][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:55][5664][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:55][5664][INFO][MAIN] Duplicate execution. +[28 11:04:58][5670][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:04:58][5670][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:04:58][5670][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:04:58][5670][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:04:58][5670][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:04:58][5670][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:04:58][5670][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:04:58][5670][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:04:58][5670][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:04:58][5670][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:04:58][5670][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:04:58][5670][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:04:58][5670][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:04:58][5670][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:04:58][5670][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:04:58][5670][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:04:58][5670][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:04:58][5670][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:04:58][5670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:04:58][5670][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:04:58][5670][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:04:58][5670][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:04:58][5670][INFO][MAIN] Duplicate execution. +[28 11:05:01][5676][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:01][5676][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:01][5676][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:01][5676][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:01][5676][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:01][5676][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:01][5676][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:01][5676][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:01][5676][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:01][5676][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:01][5676][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:01][5676][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:01][5676][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:01][5676][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:01][5676][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:01][5676][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:01][5676][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:01][5676][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:01][5676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:01][5676][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:01][5676][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:01][5676][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:01][5676][INFO][MAIN] Duplicate execution. +[28 11:05:04][5682][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:04][5682][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:04][5682][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:04][5682][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:04][5682][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:04][5682][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:04][5682][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:04][5682][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:04][5682][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:04][5682][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:04][5682][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:04][5682][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:04][5682][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:04][5682][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:04][5682][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:04][5682][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:04][5682][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:04][5682][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:04][5682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:04][5682][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:04][5682][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:04][5682][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:04][5682][INFO][MAIN] Duplicate execution. +[28 11:05:07][5688][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:07][5688][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:07][5688][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:07][5688][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:07][5688][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:07][5688][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:07][5688][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:07][5688][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:07][5688][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:07][5688][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:07][5688][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:07][5688][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:07][5688][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:07][5688][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:07][5688][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:07][5688][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:07][5688][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:07][5688][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:07][5688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:07][5688][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:07][5688][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:07][5688][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:07][5688][INFO][MAIN] Duplicate execution. +[28 11:05:10][5694][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:10][5694][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:10][5694][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:10][5694][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:10][5694][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:10][5694][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:10][5694][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:10][5694][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:10][5694][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:10][5694][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:10][5694][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:10][5694][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:10][5694][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:10][5694][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:10][5694][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:10][5694][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:10][5694][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:10][5694][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:10][5694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:10][5694][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:10][5694][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:10][5694][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:10][5694][INFO][MAIN] Duplicate execution. +[28 11:05:13][5700][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:13][5700][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:13][5700][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:13][5700][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:13][5700][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:13][5700][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:13][5700][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:13][5700][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:13][5700][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:13][5700][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:13][5700][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:13][5700][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:13][5700][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:13][5700][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:13][5700][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:13][5700][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:13][5700][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:13][5700][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:13][5700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:13][5700][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:13][5700][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:13][5700][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:13][5700][INFO][MAIN] Duplicate execution. +[28 11:05:16][5706][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:16][5706][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:16][5706][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:16][5706][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:16][5706][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:16][5706][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:16][5706][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:16][5706][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:16][5706][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:16][5706][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:16][5706][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:16][5706][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:16][5706][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:16][5706][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:16][5706][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:16][5706][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:16][5706][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:16][5706][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:16][5706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:16][5706][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:16][5706][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:16][5706][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:16][5706][INFO][MAIN] Duplicate execution. +[28 11:05:19][5712][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:19][5712][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:19][5712][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:19][5712][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:19][5712][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:19][5712][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:19][5712][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:19][5712][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:19][5712][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:19][5712][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:19][5712][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:19][5712][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:19][5712][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:19][5712][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:19][5712][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:19][5712][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:19][5712][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:19][5712][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:19][5712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:19][5712][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:19][5712][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:19][5712][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:19][5712][INFO][MAIN] Duplicate execution. +[28 11:05:22][5718][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:22][5718][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:22][5718][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:22][5718][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:22][5718][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:22][5718][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:22][5718][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:22][5718][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:22][5718][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:22][5718][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:22][5718][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:22][5718][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:22][5718][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:22][5718][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:22][5718][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:22][5718][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:22][5718][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:22][5718][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:22][5718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:22][5718][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:22][5718][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:22][5718][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:22][5718][INFO][MAIN] Duplicate execution. +[28 11:05:25][5724][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:25][5724][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:25][5724][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:25][5724][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:25][5724][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:25][5724][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:25][5724][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:25][5724][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:25][5724][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:25][5724][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:25][5724][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:25][5724][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:25][5724][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:25][5724][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:25][5724][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:25][5724][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:25][5724][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:25][5724][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:25][5724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:25][5724][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:25][5724][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:25][5724][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:25][5724][INFO][MAIN] Duplicate execution. +[28 11:05:28][5730][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:28][5730][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:28][5730][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:28][5730][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:28][5730][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:28][5730][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:28][5730][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:28][5730][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:28][5730][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:28][5730][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:28][5730][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:28][5730][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:28][5730][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:28][5730][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:28][5730][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:28][5730][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:28][5730][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:28][5730][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:28][5730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:28][5730][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:28][5730][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:28][5730][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:28][5730][INFO][MAIN] Duplicate execution. +[28 11:05:31][5736][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:31][5736][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:31][5736][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:31][5736][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:31][5736][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:31][5736][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:31][5736][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:31][5736][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:31][5736][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:31][5736][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:31][5736][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:31][5736][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:31][5736][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:31][5736][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:31][5736][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:31][5736][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:31][5736][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:31][5736][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:31][5736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:31][5736][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:31][5736][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:31][5736][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:31][5736][INFO][MAIN] Duplicate execution. +[28 11:05:34][5742][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:34][5742][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:34][5742][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:34][5742][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:34][5742][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:34][5742][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:34][5742][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:34][5742][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:34][5742][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:34][5742][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:34][5742][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:34][5742][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:34][5742][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:34][5742][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:34][5742][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:34][5742][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:34][5742][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:34][5742][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:34][5742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:34][5742][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:34][5742][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:34][5742][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:34][5742][INFO][MAIN] Duplicate execution. +[28 11:05:37][5748][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:37][5748][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:37][5748][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:37][5748][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:37][5748][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:37][5748][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:37][5748][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:37][5748][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:37][5748][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:37][5748][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:37][5748][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:37][5748][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:37][5748][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:37][5748][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:37][5748][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:37][5748][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:37][5748][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:37][5748][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:37][5748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:37][5748][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:37][5748][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:37][5748][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:37][5748][INFO][MAIN] Duplicate execution. +[28 11:05:40][5754][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:40][5754][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:40][5754][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:40][5754][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:40][5754][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:40][5754][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:40][5754][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:40][5754][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:40][5754][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:40][5754][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:40][5754][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:40][5754][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:40][5754][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:40][5754][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:40][5754][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:40][5754][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:40][5754][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:40][5754][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:40][5754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:40][5754][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:40][5754][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:40][5754][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:40][5754][INFO][MAIN] Duplicate execution. +[28 11:05:43][5760][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:43][5760][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:43][5760][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:43][5760][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:43][5760][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:43][5760][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:43][5760][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:43][5760][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:43][5760][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:43][5760][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:43][5760][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:43][5760][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:43][5760][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:43][5760][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:43][5760][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:43][5760][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:43][5760][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:43][5760][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:43][5760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:43][5760][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:43][5760][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:43][5760][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:43][5760][INFO][MAIN] Duplicate execution. +[28 11:05:46][5766][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:46][5766][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:46][5766][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:46][5766][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:46][5766][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:46][5766][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:46][5766][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:46][5766][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:46][5766][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:46][5766][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:46][5766][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:46][5766][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:46][5766][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:46][5766][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:46][5766][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:46][5766][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:46][5766][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:46][5766][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:46][5766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:46][5766][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:46][5766][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:46][5766][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:46][5766][INFO][MAIN] Duplicate execution. +[28 11:05:49][5772][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:49][5772][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:49][5772][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:49][5772][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:49][5772][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:49][5772][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:49][5772][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:49][5772][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:49][5772][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:49][5772][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:49][5772][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:49][5772][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:49][5772][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:49][5772][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:49][5772][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:49][5772][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:49][5772][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:49][5772][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:49][5772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:49][5772][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:49][5772][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:49][5772][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:49][5772][INFO][MAIN] Duplicate execution. +[28 11:05:52][5778][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:52][5778][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:52][5778][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:52][5778][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:52][5778][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:52][5778][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:52][5778][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:52][5778][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:52][5778][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:52][5778][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:52][5778][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:52][5778][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:52][5778][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:52][5778][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:52][5778][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:52][5778][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:52][5778][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:52][5778][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:52][5778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:52][5778][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:52][5778][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:52][5778][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:52][5778][INFO][MAIN] Duplicate execution. +[28 11:05:55][5784][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:55][5784][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:55][5784][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:55][5784][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:55][5784][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:55][5784][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:55][5784][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:55][5784][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:55][5784][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:55][5784][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:55][5784][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:55][5784][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:55][5784][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:55][5784][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:55][5784][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:55][5784][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:55][5784][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:55][5784][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:55][5784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:55][5784][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:55][5784][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:55][5784][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:55][5784][INFO][MAIN] Duplicate execution. +[28 11:05:58][5790][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:05:58][5790][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:05:58][5790][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:05:58][5790][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:05:58][5790][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:05:58][5790][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:05:58][5790][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:05:58][5790][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:05:58][5790][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:05:58][5790][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:05:58][5790][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:05:58][5790][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:05:58][5790][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:05:58][5790][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:05:58][5790][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:05:58][5790][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:05:58][5790][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:05:58][5790][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:05:58][5790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:05:58][5790][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:05:58][5790][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:05:58][5790][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:05:58][5790][INFO][MAIN] Duplicate execution. +[28 11:06:01][5796][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:01][5796][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:01][5796][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:01][5796][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:01][5796][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:01][5796][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:01][5796][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:01][5796][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:01][5796][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:01][5796][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:01][5796][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:01][5796][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:01][5796][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:01][5796][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:01][5796][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:01][5796][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:01][5796][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:01][5796][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:01][5796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:01][5796][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:01][5796][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:01][5796][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:01][5796][INFO][MAIN] Duplicate execution. +[28 11:06:04][5802][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:04][5802][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:04][5802][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:04][5802][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:04][5802][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:04][5802][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:04][5802][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:04][5802][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:04][5802][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:04][5802][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:04][5802][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:04][5802][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:04][5802][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:04][5802][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:04][5802][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:04][5802][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:04][5802][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:04][5802][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:04][5802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:04][5802][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:04][5802][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:04][5802][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:04][5802][INFO][MAIN] Duplicate execution. +[28 11:06:07][5808][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:07][5808][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:07][5808][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:07][5808][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:07][5808][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:07][5808][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:07][5808][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:07][5808][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:07][5808][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:07][5808][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:07][5808][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:07][5808][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:07][5808][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:07][5808][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:07][5808][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:07][5808][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:07][5808][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:07][5808][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:07][5808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:07][5808][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:07][5808][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:07][5808][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:07][5808][INFO][MAIN] Duplicate execution. +[28 11:06:10][5814][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:10][5814][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:10][5814][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:10][5814][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:10][5814][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:10][5814][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:10][5814][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:10][5814][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:10][5814][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:10][5814][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:10][5814][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:10][5814][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:10][5814][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:10][5814][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:10][5814][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:10][5814][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:10][5814][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:10][5814][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:10][5814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:10][5814][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:10][5814][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:10][5814][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:10][5814][INFO][MAIN] Duplicate execution. +[28 11:06:13][5820][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:13][5820][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:13][5820][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:13][5820][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:13][5820][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:13][5820][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:13][5820][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:13][5820][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:13][5820][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:13][5820][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:13][5820][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:13][5820][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:13][5820][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:13][5820][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:13][5820][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:13][5820][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:13][5820][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:13][5820][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:13][5820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:13][5820][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:13][5820][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:13][5820][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:13][5820][INFO][MAIN] Duplicate execution. +[28 11:06:16][5826][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:16][5826][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:16][5826][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:16][5826][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:16][5826][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:16][5826][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:16][5826][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:16][5826][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:16][5826][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:16][5826][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:16][5826][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:16][5826][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:16][5826][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:16][5826][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:16][5826][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:16][5826][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:16][5826][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:16][5826][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:16][5826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:16][5826][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:16][5826][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:16][5826][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:16][5826][INFO][MAIN] Duplicate execution. +[28 11:06:19][5832][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:19][5832][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:19][5832][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:19][5832][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:19][5832][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:19][5832][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:19][5832][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:19][5832][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:19][5832][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:19][5832][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:19][5832][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:19][5832][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:19][5832][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:19][5832][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:19][5832][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:19][5832][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:19][5832][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:19][5832][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:19][5832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:19][5832][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:19][5832][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:19][5832][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:19][5832][INFO][MAIN] Duplicate execution. +[28 11:06:22][5838][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:22][5838][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:22][5838][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:22][5838][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:22][5838][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:22][5838][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:22][5838][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:22][5838][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:22][5838][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:22][5838][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:22][5838][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:22][5838][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:22][5838][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:22][5838][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:22][5838][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:22][5838][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:22][5838][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:22][5838][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:22][5838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:22][5838][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:22][5838][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:22][5838][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:22][5838][INFO][MAIN] Duplicate execution. +[28 11:06:25][5844][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:25][5844][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:25][5844][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:25][5844][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:25][5844][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:25][5844][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:25][5844][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:25][5844][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:25][5844][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:25][5844][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:25][5844][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:25][5844][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:25][5844][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:25][5844][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:25][5844][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:25][5844][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:25][5844][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:25][5844][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:25][5844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:25][5844][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:25][5844][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:25][5844][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:25][5844][INFO][MAIN] Duplicate execution. +[28 11:06:28][5850][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:28][5850][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:28][5850][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:28][5850][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:28][5850][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:28][5850][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:28][5850][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:28][5850][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:28][5850][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:28][5850][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:28][5850][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:28][5850][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:28][5850][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:28][5850][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:28][5850][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:28][5850][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:28][5850][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:28][5850][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:28][5850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:28][5850][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:28][5850][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:28][5850][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:28][5850][INFO][MAIN] Duplicate execution. +[28 11:06:31][5856][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:31][5856][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:31][5856][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:31][5856][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:31][5856][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:31][5856][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:31][5856][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:31][5856][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:31][5856][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:31][5856][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:31][5856][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:31][5856][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:31][5856][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:31][5856][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:31][5856][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:31][5856][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:31][5856][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:31][5856][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:31][5856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:31][5856][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:31][5856][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:31][5856][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:31][5856][INFO][MAIN] Duplicate execution. +[28 11:06:34][5862][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:34][5862][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:34][5862][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:34][5862][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:34][5862][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:34][5862][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:34][5862][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:34][5862][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:34][5862][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:34][5862][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:34][5862][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:34][5862][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:34][5862][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:34][5862][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:34][5862][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:34][5862][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:34][5862][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:34][5862][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:34][5862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:34][5862][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:34][5862][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:34][5862][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:34][5862][INFO][MAIN] Duplicate execution. +[28 11:06:37][5868][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:37][5868][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:37][5868][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:37][5868][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:37][5868][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:37][5868][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:37][5868][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:37][5868][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:37][5868][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:37][5868][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:37][5868][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:37][5868][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:37][5868][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:37][5868][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:37][5868][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:37][5868][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:37][5868][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:37][5868][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:37][5868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:37][5868][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:37][5868][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:37][5868][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:37][5868][INFO][MAIN] Duplicate execution. +[28 11:06:40][5874][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:40][5874][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:40][5874][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:40][5874][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:40][5874][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:40][5874][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:40][5874][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:40][5874][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:40][5874][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:40][5874][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:40][5874][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:40][5874][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:40][5874][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:40][5874][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:40][5874][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:40][5874][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:40][5874][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:40][5874][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:40][5874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:40][5874][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:40][5874][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:40][5874][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:40][5874][INFO][MAIN] Duplicate execution. +[28 11:06:43][5880][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:43][5880][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:43][5880][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:43][5880][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:43][5880][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:43][5880][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:43][5880][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:43][5880][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:43][5880][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:43][5880][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:43][5880][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:43][5880][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:43][5880][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:43][5880][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:43][5880][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:43][5880][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:43][5880][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:43][5880][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:43][5880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:43][5880][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:43][5880][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:43][5880][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:43][5880][INFO][MAIN] Duplicate execution. +[28 11:06:46][5886][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:46][5886][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:46][5886][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:46][5886][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:46][5886][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:46][5886][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:46][5886][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:46][5886][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:46][5886][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:46][5886][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:46][5886][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:46][5886][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:46][5886][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:46][5886][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:46][5886][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:46][5886][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:46][5886][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:46][5886][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:46][5886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:46][5886][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:46][5886][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:46][5886][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:46][5886][INFO][MAIN] Duplicate execution. +[28 11:06:49][5892][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:49][5892][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:49][5892][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:49][5892][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:49][5892][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:49][5892][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:49][5892][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:49][5892][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:49][5892][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:49][5892][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:49][5892][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:49][5892][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:49][5892][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:49][5892][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:49][5892][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:49][5892][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:49][5892][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:49][5892][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:49][5892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:49][5892][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:49][5892][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:49][5892][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:49][5892][INFO][MAIN] Duplicate execution. +[28 11:06:52][5898][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:52][5898][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:52][5898][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:52][5898][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:52][5898][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:52][5898][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:52][5898][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:52][5898][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:52][5898][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:52][5898][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:52][5898][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:52][5898][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:52][5898][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:52][5898][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:52][5898][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:52][5898][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:52][5898][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:52][5898][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:52][5898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:52][5898][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:52][5898][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:52][5898][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:52][5898][INFO][MAIN] Duplicate execution. +[28 11:06:55][5904][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:55][5904][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:55][5904][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:55][5904][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:55][5904][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:55][5904][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:55][5904][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:55][5904][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:55][5904][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:55][5904][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:55][5904][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:55][5904][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:55][5904][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:55][5904][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:55][5904][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:55][5904][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:55][5904][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:55][5904][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:55][5904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:55][5904][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:55][5904][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:55][5904][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:55][5904][INFO][MAIN] Duplicate execution. +[28 11:06:58][5910][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:06:58][5910][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:06:58][5910][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:06:58][5910][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:06:58][5910][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:06:58][5910][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:06:58][5910][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:06:58][5910][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:06:58][5910][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:06:58][5910][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:06:58][5910][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:06:58][5910][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:06:58][5910][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:06:58][5910][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:06:58][5910][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:06:58][5910][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:06:58][5910][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:06:58][5910][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:06:58][5910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:06:58][5910][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:06:58][5910][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:06:58][5910][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:06:58][5910][INFO][MAIN] Duplicate execution. +[28 11:07:01][5916][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:01][5916][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:01][5916][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:01][5916][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:01][5916][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:01][5916][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:01][5916][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:01][5916][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:01][5916][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:01][5916][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:01][5916][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:01][5916][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:01][5916][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:01][5916][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:01][5916][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:01][5916][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:01][5916][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:01][5916][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:01][5916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:01][5916][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:01][5916][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:01][5916][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:01][5916][INFO][MAIN] Duplicate execution. +[28 11:07:04][5922][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:04][5922][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:04][5922][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:04][5922][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:04][5922][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:04][5922][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:04][5922][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:04][5922][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:04][5922][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:04][5922][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:04][5922][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:04][5922][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:04][5922][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:04][5922][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:04][5922][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:04][5922][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:04][5922][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:04][5922][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:04][5922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:04][5922][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:04][5922][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:04][5922][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:04][5922][INFO][MAIN] Duplicate execution. +[28 11:07:07][5928][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:07][5928][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:07][5928][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:07][5928][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:07][5928][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:07][5928][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:07][5928][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:07][5928][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:07][5928][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:07][5928][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:07][5928][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:07][5928][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:07][5928][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:07][5928][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:07][5928][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:07][5928][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:07][5928][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:07][5928][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:07][5928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:07][5928][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:07][5928][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:07][5928][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:07][5928][INFO][MAIN] Duplicate execution. +[28 11:07:10][5934][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:10][5934][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:10][5934][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:10][5934][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:10][5934][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:10][5934][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:10][5934][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:10][5934][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:10][5934][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:10][5934][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:10][5934][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:10][5934][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:10][5934][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:10][5934][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:10][5934][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:10][5934][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:10][5934][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:10][5934][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:10][5934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:10][5934][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:10][5934][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:10][5934][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:10][5934][INFO][MAIN] Duplicate execution. +[28 11:07:13][5940][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:13][5940][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:13][5940][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:13][5940][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:13][5940][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:13][5940][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:13][5940][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:13][5940][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:13][5940][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:13][5940][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:13][5940][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:13][5940][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:13][5940][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:13][5940][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:13][5940][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:13][5940][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:13][5940][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:13][5940][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:13][5940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:13][5940][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:13][5940][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:13][5940][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:13][5940][INFO][MAIN] Duplicate execution. +[28 11:07:16][5946][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:16][5946][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:16][5946][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:16][5946][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:16][5946][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:16][5946][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:16][5946][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:16][5946][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:16][5946][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:16][5946][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:16][5946][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:16][5946][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:16][5946][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:16][5946][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:16][5946][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:16][5946][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:16][5946][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:16][5946][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:16][5946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:16][5946][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:16][5946][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:16][5946][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:16][5946][INFO][MAIN] Duplicate execution. +[28 11:07:19][5952][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:19][5952][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:19][5952][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:19][5952][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:19][5952][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:19][5952][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:19][5952][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:19][5952][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:19][5952][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:19][5952][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:19][5952][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:19][5952][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:19][5952][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:19][5952][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:19][5952][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:19][5952][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:19][5952][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:19][5952][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:19][5952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:19][5952][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:19][5952][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:19][5952][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:19][5952][INFO][MAIN] Duplicate execution. +[28 11:07:22][5958][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:22][5958][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:22][5958][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:22][5958][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:22][5958][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:22][5958][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:22][5958][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:22][5958][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:22][5958][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:22][5958][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:22][5958][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:22][5958][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:22][5958][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:22][5958][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:22][5958][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:22][5958][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:22][5958][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:22][5958][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:22][5958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:22][5958][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:22][5958][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:22][5958][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:22][5958][INFO][MAIN] Duplicate execution. +[28 11:07:25][5964][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:25][5964][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:25][5964][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:25][5964][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:25][5964][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:25][5964][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:25][5964][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:25][5964][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:25][5964][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:25][5964][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:25][5964][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:25][5964][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:25][5964][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:25][5964][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:25][5964][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:25][5964][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:25][5964][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:25][5964][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:25][5964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:25][5964][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:25][5964][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:25][5964][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:25][5964][INFO][MAIN] Duplicate execution. +[28 11:07:28][5970][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:28][5970][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:28][5970][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:28][5970][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:28][5970][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:28][5970][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:28][5970][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:28][5970][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:28][5970][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:28][5970][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:28][5970][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:28][5970][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:28][5970][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:28][5970][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:28][5970][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:28][5970][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:28][5970][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:28][5970][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:28][5970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:28][5970][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:28][5970][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:28][5970][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:28][5970][INFO][MAIN] Duplicate execution. +[28 11:07:31][5976][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:31][5976][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:31][5976][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:31][5976][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:31][5976][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:31][5976][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:31][5976][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:31][5976][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:31][5976][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:31][5976][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:31][5976][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:31][5976][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:31][5976][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:31][5976][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:31][5976][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:31][5976][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:31][5976][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:31][5976][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:31][5976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:31][5976][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:31][5976][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:31][5976][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:31][5976][INFO][MAIN] Duplicate execution. +[28 11:07:34][5982][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:34][5982][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:34][5982][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:34][5982][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:34][5982][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:34][5982][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:34][5982][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:34][5982][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:34][5982][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:34][5982][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:34][5982][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:34][5982][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:34][5982][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:34][5982][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:34][5982][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:34][5982][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:34][5982][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:34][5982][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:34][5982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:34][5982][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:34][5982][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:34][5982][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:34][5982][INFO][MAIN] Duplicate execution. +[28 11:07:37][5988][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:37][5988][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:37][5988][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:37][5988][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:37][5988][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:37][5988][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:37][5988][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:37][5988][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:37][5988][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:37][5988][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:37][5988][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:37][5988][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:37][5988][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:37][5988][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:37][5988][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:37][5988][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:37][5988][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:37][5988][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:37][5988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:37][5988][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:37][5988][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:37][5988][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:37][5988][INFO][MAIN] Duplicate execution. +[28 11:07:40][5994][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:40][5994][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:40][5994][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:40][5994][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:40][5994][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:40][5994][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:40][5994][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:40][5994][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:40][5994][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:40][5994][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:40][5994][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:40][5994][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:40][5994][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:40][5994][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:40][5994][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:40][5994][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:40][5994][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:40][5994][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:40][5994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:40][5994][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:40][5994][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:40][5994][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:40][5994][INFO][MAIN] Duplicate execution. +[28 11:07:43][6000][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:43][6000][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:43][6000][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:43][6000][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:43][6000][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:43][6000][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:43][6000][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:43][6000][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:43][6000][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:43][6000][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:43][6000][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:43][6000][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:43][6000][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:43][6000][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:43][6000][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:43][6000][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:43][6000][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:43][6000][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:43][6000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:43][6000][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:43][6000][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:43][6000][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:43][6000][INFO][MAIN] Duplicate execution. +[28 11:07:46][6006][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:46][6006][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:46][6006][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:46][6006][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:46][6006][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:46][6006][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:46][6006][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:46][6006][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:46][6006][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:46][6006][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:46][6006][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:46][6006][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:46][6006][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:46][6006][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:46][6006][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:46][6006][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:46][6006][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:46][6006][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:46][6006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:46][6006][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:46][6006][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:46][6006][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:46][6006][INFO][MAIN] Duplicate execution. +[28 11:07:49][6012][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:49][6012][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:49][6012][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:49][6012][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:49][6012][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:49][6012][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:49][6012][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:49][6012][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:49][6012][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:49][6012][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:49][6012][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:49][6012][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:49][6012][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:49][6012][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:49][6012][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:49][6012][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:49][6012][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:49][6012][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:49][6012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:49][6012][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:49][6012][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:49][6012][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:49][6012][INFO][MAIN] Duplicate execution. +[28 11:07:52][6018][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:52][6018][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:52][6018][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:52][6018][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:52][6018][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:52][6018][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:52][6018][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:52][6018][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:52][6018][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:52][6018][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:52][6018][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:52][6018][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:52][6018][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:52][6018][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:52][6018][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:52][6018][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:52][6018][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:52][6018][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:52][6018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:52][6018][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:52][6018][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:52][6018][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:52][6018][INFO][MAIN] Duplicate execution. +[28 11:07:55][6024][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:55][6024][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:55][6024][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:55][6024][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:55][6024][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:55][6024][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:55][6024][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:55][6024][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:55][6024][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:55][6024][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:55][6024][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:55][6024][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:55][6024][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:55][6024][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:55][6024][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:55][6024][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:55][6024][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:55][6024][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:55][6024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:55][6024][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:55][6024][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:55][6024][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:55][6024][INFO][MAIN] Duplicate execution. +[28 11:07:58][6030][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:07:58][6030][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:07:58][6030][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:07:58][6030][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:07:58][6030][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:07:58][6030][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:07:58][6030][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:07:58][6030][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:07:58][6030][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:07:58][6030][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:07:58][6030][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:07:58][6030][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:07:58][6030][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:07:58][6030][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:07:58][6030][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:07:58][6030][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:07:58][6030][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:07:58][6030][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:07:58][6030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:07:58][6030][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:07:58][6030][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:07:58][6030][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:07:58][6030][INFO][MAIN] Duplicate execution. +[28 11:08:01][6036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:01][6036][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:01][6036][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:01][6036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:01][6036][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:01][6036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:01][6036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:01][6036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:01][6036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:01][6036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:01][6036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:01][6036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:01][6036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:01][6036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:01][6036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:01][6036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:01][6036][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:01][6036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:01][6036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:01][6036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:01][6036][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:01][6036][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:01][6036][INFO][MAIN] Duplicate execution. +[28 11:08:04][6042][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:04][6042][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:04][6042][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:04][6042][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:04][6042][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:04][6042][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:04][6042][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:04][6042][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:04][6042][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:04][6042][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:04][6042][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:04][6042][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:04][6042][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:04][6042][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:04][6042][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:04][6042][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:04][6042][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:04][6042][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:04][6042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:04][6042][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:04][6042][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:04][6042][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:04][6042][INFO][MAIN] Duplicate execution. +[28 11:08:07][6048][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:07][6048][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:07][6048][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:07][6048][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:07][6048][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:07][6048][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:07][6048][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:07][6048][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:07][6048][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:07][6048][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:07][6048][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:07][6048][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:07][6048][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:07][6048][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:07][6048][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:07][6048][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:07][6048][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:07][6048][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:07][6048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:07][6048][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:07][6048][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:07][6048][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:07][6048][INFO][MAIN] Duplicate execution. +[28 11:08:10][6054][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:10][6054][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:10][6054][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:10][6054][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:10][6054][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:10][6054][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:10][6054][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:10][6054][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:10][6054][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:10][6054][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:10][6054][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:10][6054][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:10][6054][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:10][6054][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:10][6054][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:10][6054][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:10][6054][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:10][6054][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:10][6054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:10][6054][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:10][6054][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:10][6054][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:10][6054][INFO][MAIN] Duplicate execution. +[28 11:08:13][6060][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:13][6060][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:13][6060][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:13][6060][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:13][6060][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:13][6060][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:13][6060][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:13][6060][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:13][6060][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:13][6060][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:13][6060][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:13][6060][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:13][6060][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:13][6060][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:13][6060][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:13][6060][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:13][6060][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:13][6060][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:13][6060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:13][6060][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:13][6060][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:13][6060][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:13][6060][INFO][MAIN] Duplicate execution. +[28 11:08:16][6066][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:16][6066][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:16][6066][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:16][6066][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:16][6066][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:16][6066][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:16][6066][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:16][6066][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:16][6066][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:16][6066][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:16][6066][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:16][6066][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:16][6066][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:16][6066][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:16][6066][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:16][6066][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:16][6066][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:16][6066][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:16][6066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:16][6066][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:16][6066][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:16][6066][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:16][6066][INFO][MAIN] Duplicate execution. +[28 11:08:19][6072][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:19][6072][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:19][6072][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:19][6072][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:19][6072][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:19][6072][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:19][6072][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:19][6072][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:19][6072][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:19][6072][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:19][6072][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:19][6072][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:19][6072][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:19][6072][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:19][6072][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:19][6072][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:19][6072][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:19][6072][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:19][6072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:19][6072][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:19][6072][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:19][6072][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:19][6072][INFO][MAIN] Duplicate execution. +[28 11:08:22][6078][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:22][6078][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:22][6078][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:22][6078][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:22][6078][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:22][6078][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:22][6078][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:22][6078][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:22][6078][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:22][6078][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:22][6078][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:22][6078][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:22][6078][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:22][6078][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:22][6078][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:22][6078][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:22][6078][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:22][6078][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:22][6078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:22][6078][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:22][6078][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:22][6078][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:22][6078][INFO][MAIN] Duplicate execution. +[28 11:08:25][6084][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:25][6084][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:25][6084][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:25][6084][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:25][6084][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:25][6084][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:25][6084][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:25][6084][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:25][6084][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:25][6084][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:25][6084][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:25][6084][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:25][6084][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:25][6084][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:25][6084][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:25][6084][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:25][6084][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:25][6084][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:25][6084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:25][6084][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:25][6084][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:25][6084][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:25][6084][INFO][MAIN] Duplicate execution. +[28 11:08:28][6090][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:28][6090][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:28][6090][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:28][6090][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:28][6090][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:28][6090][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:28][6090][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:28][6090][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:28][6090][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:28][6090][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:28][6090][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:28][6090][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:28][6090][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:28][6090][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:28][6090][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:28][6090][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:28][6090][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:28][6090][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:28][6090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:28][6090][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:28][6090][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:28][6090][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:28][6090][INFO][MAIN] Duplicate execution. +[28 11:08:31][6096][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:31][6096][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:31][6096][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:31][6096][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:31][6096][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:31][6096][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:31][6096][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:31][6096][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:31][6096][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:31][6096][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:31][6096][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:31][6096][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:31][6096][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:31][6096][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:31][6096][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:31][6096][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:31][6096][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:31][6096][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:31][6096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:31][6096][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:31][6096][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:31][6096][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:31][6096][INFO][MAIN] Duplicate execution. +[28 11:08:34][6102][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:34][6102][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:34][6102][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:34][6102][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:34][6102][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:34][6102][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:34][6102][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:34][6102][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:34][6102][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:34][6102][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:34][6102][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:34][6102][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:34][6102][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:34][6102][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:34][6102][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:34][6102][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:34][6102][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:34][6102][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:34][6102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:34][6102][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:34][6102][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:34][6102][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:34][6102][INFO][MAIN] Duplicate execution. +[28 11:08:37][6108][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:37][6108][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:37][6108][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:37][6108][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:37][6108][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:37][6108][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:37][6108][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:37][6108][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:37][6108][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:37][6108][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:37][6108][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:37][6108][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:37][6108][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:37][6108][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:37][6108][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:37][6108][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:37][6108][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:37][6108][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:37][6108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:37][6108][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:37][6108][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:37][6108][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:37][6108][INFO][MAIN] Duplicate execution. +[28 11:08:40][6114][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:40][6114][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:40][6114][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:40][6114][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:40][6114][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:40][6114][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:40][6114][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:40][6114][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:40][6114][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:40][6114][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:40][6114][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:40][6114][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:40][6114][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:40][6114][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:40][6114][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:40][6114][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:40][6114][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:40][6114][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:40][6114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:40][6114][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:40][6114][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:40][6114][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:40][6114][INFO][MAIN] Duplicate execution. +[28 11:08:43][6120][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:43][6120][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:43][6120][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:43][6120][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:43][6120][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:43][6120][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:43][6120][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:43][6120][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:43][6120][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:43][6120][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:43][6120][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:43][6120][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:43][6120][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:43][6120][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:43][6120][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:43][6120][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:43][6120][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:43][6120][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:43][6120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:43][6120][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:43][6120][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:43][6120][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:43][6120][INFO][MAIN] Duplicate execution. +[28 11:08:46][6126][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:46][6126][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:46][6126][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:46][6126][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:46][6126][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:46][6126][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:46][6126][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:46][6126][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:46][6126][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:46][6126][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:46][6126][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:46][6126][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:46][6126][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:46][6126][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:46][6126][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:46][6126][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:46][6126][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:46][6126][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:46][6126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:46][6126][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:46][6126][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:46][6126][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:46][6126][INFO][MAIN] Duplicate execution. +[28 11:08:49][6132][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:49][6132][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:49][6132][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:49][6132][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:49][6132][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:49][6132][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:49][6132][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:49][6132][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:49][6132][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:49][6132][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:49][6132][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:49][6132][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:49][6132][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:49][6132][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:49][6132][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:49][6132][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:49][6132][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:49][6132][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:49][6132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:49][6132][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:49][6132][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:49][6132][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:49][6132][INFO][MAIN] Duplicate execution. +[28 11:08:52][6138][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:52][6138][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:52][6138][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:52][6138][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:52][6138][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:52][6138][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:52][6138][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:52][6138][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:52][6138][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:52][6138][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:52][6138][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:52][6138][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:52][6138][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:52][6138][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:52][6138][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:52][6138][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:52][6138][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:52][6138][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:52][6138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:52][6138][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:52][6138][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:52][6138][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:52][6138][INFO][MAIN] Duplicate execution. +[28 11:08:55][6144][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:55][6144][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:55][6144][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:55][6144][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:55][6144][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:55][6144][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:55][6144][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:55][6144][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:55][6144][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:55][6144][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:55][6144][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:55][6144][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:55][6144][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:55][6144][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:55][6144][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:55][6144][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:55][6144][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:55][6144][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:55][6144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:55][6144][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:55][6144][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:55][6144][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:55][6144][INFO][MAIN] Duplicate execution. +[28 11:08:58][6150][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:08:58][6150][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:08:58][6150][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:08:58][6150][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:08:58][6150][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:08:58][6150][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:08:58][6150][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:08:58][6150][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:08:58][6150][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:08:58][6150][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:08:58][6150][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:08:58][6150][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:08:58][6150][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:08:58][6150][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:08:58][6150][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:08:58][6150][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:08:58][6150][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:08:58][6150][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:08:58][6150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:08:58][6150][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:08:58][6150][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:08:58][6150][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:08:58][6150][INFO][MAIN] Duplicate execution. +[28 11:09:01][6156][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:01][6156][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:01][6156][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:01][6156][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:01][6156][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:01][6156][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:01][6156][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:01][6156][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:01][6156][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:01][6156][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:01][6156][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:01][6156][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:01][6156][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:01][6156][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:01][6156][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:01][6156][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:01][6156][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:01][6156][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:01][6156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:01][6156][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:01][6156][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:01][6156][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:01][6156][INFO][MAIN] Duplicate execution. +[28 11:09:04][6162][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:04][6162][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:04][6162][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:04][6162][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:04][6162][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:04][6162][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:04][6162][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:04][6162][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:04][6162][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:04][6162][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:04][6162][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:04][6162][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:04][6162][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:04][6162][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:04][6162][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:04][6162][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:04][6162][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:04][6162][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:04][6162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:04][6162][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:04][6162][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:04][6162][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:04][6162][INFO][MAIN] Duplicate execution. +[28 11:09:07][6168][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:07][6168][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:07][6168][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:07][6168][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:07][6168][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:07][6168][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:07][6168][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:07][6168][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:07][6168][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:07][6168][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:07][6168][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:07][6168][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:07][6168][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:07][6168][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:07][6168][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:07][6168][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:07][6168][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:07][6168][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:07][6168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:07][6168][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:07][6168][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:07][6168][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:07][6168][INFO][MAIN] Duplicate execution. +[28 11:09:10][6174][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:10][6174][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:10][6174][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:10][6174][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:10][6174][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:10][6174][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:10][6174][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:10][6174][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:10][6174][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:10][6174][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:10][6174][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:10][6174][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:10][6174][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:10][6174][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:10][6174][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:10][6174][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:10][6174][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:10][6174][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:10][6174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:10][6174][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:10][6174][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:10][6174][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:10][6174][INFO][MAIN] Duplicate execution. +[28 11:09:13][6180][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:13][6180][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:13][6180][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:13][6180][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:13][6180][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:13][6180][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:13][6180][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:13][6180][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:13][6180][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:13][6180][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:13][6180][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:13][6180][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:13][6180][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:13][6180][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:13][6180][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:13][6180][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:13][6180][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:13][6180][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:13][6180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:13][6180][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:13][6180][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:13][6180][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:13][6180][INFO][MAIN] Duplicate execution. +[28 11:09:16][6186][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:16][6186][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:16][6186][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:16][6186][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:16][6186][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:16][6186][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:16][6186][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:16][6186][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:16][6186][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:16][6186][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:16][6186][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:16][6186][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:16][6186][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:16][6186][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:16][6186][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:16][6186][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:16][6186][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:16][6186][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:16][6186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:16][6186][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:16][6186][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:16][6186][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:16][6186][INFO][MAIN] Duplicate execution. +[28 11:09:19][6192][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:19][6192][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:19][6192][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:19][6192][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:19][6192][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:19][6192][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:19][6192][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:19][6192][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:19][6192][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:19][6192][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:19][6192][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:19][6192][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:19][6192][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:19][6192][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:19][6192][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:19][6192][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:19][6192][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:19][6192][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:19][6192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:19][6192][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:19][6192][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:19][6192][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:19][6192][INFO][MAIN] Duplicate execution. +[28 11:09:22][6198][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:22][6198][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:22][6198][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:22][6198][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:22][6198][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:22][6198][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:22][6198][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:22][6198][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:22][6198][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:22][6198][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:22][6198][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:22][6198][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:22][6198][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:22][6198][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:22][6198][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:22][6198][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:22][6198][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:22][6198][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:22][6198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:22][6198][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:22][6198][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:22][6198][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:22][6198][INFO][MAIN] Duplicate execution. +[28 11:09:25][6204][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:25][6204][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:25][6204][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:25][6204][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:25][6204][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:25][6204][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:25][6204][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:25][6204][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:25][6204][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:25][6204][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:25][6204][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:25][6204][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:25][6204][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:25][6204][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:25][6204][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:25][6204][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:25][6204][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:25][6204][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:25][6204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:25][6204][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:25][6204][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:25][6204][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:25][6204][INFO][MAIN] Duplicate execution. +[28 11:09:28][6210][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:28][6210][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:28][6210][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:28][6210][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:28][6210][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:28][6210][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:28][6210][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:28][6210][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:28][6210][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:28][6210][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:28][6210][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:28][6210][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:28][6210][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:28][6210][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:28][6210][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:28][6210][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:28][6210][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:28][6210][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:28][6210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:28][6210][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:28][6210][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:28][6210][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:28][6210][INFO][MAIN] Duplicate execution. +[28 11:09:31][6216][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:31][6216][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:31][6216][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:31][6216][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:31][6216][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:31][6216][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:31][6216][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:31][6216][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:31][6216][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:31][6216][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:31][6216][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:31][6216][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:31][6216][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:31][6216][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:31][6216][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:31][6216][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:31][6216][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:31][6216][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:31][6216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:31][6216][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:31][6216][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:31][6216][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:31][6216][INFO][MAIN] Duplicate execution. +[28 11:09:34][6222][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:34][6222][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:34][6222][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:34][6222][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:34][6222][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:34][6222][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:34][6222][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:34][6222][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:34][6222][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:34][6222][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:34][6222][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:34][6222][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:34][6222][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:34][6222][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:34][6222][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:34][6222][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:34][6222][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:34][6222][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:34][6222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:34][6222][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:34][6222][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:34][6222][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:34][6222][INFO][MAIN] Duplicate execution. +[28 11:09:37][6228][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:37][6228][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:37][6228][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:37][6228][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:37][6228][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:37][6228][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:37][6228][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:37][6228][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:37][6228][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:37][6228][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:37][6228][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:37][6228][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:37][6228][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:37][6228][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:37][6228][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:37][6228][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:37][6228][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:37][6228][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:37][6228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:37][6228][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:37][6228][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:37][6228][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:37][6228][INFO][MAIN] Duplicate execution. +[28 11:09:40][6234][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:40][6234][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:40][6234][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:40][6234][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:40][6234][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:40][6234][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:40][6234][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:40][6234][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:40][6234][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:40][6234][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:40][6234][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:40][6234][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:40][6234][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:40][6234][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:40][6234][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:40][6234][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:40][6234][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:40][6234][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:40][6234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:40][6234][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:40][6234][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:40][6234][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:40][6234][INFO][MAIN] Duplicate execution. +[28 11:09:43][6240][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:43][6240][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:43][6240][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:43][6240][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:43][6240][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:43][6240][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:43][6240][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:43][6240][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:43][6240][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:43][6240][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:43][6240][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:43][6240][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:43][6240][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:43][6240][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:43][6240][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:43][6240][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:43][6240][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:43][6240][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:43][6240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:43][6240][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:43][6240][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:43][6240][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:43][6240][INFO][MAIN] Duplicate execution. +[28 11:09:46][6246][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:46][6246][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:46][6246][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:46][6246][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:46][6246][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:46][6246][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:46][6246][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:46][6246][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:46][6246][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:46][6246][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:46][6246][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:46][6246][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:46][6246][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:46][6246][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:46][6246][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:46][6246][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:46][6246][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:46][6246][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:46][6246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:46][6246][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:46][6246][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:46][6246][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:46][6246][INFO][MAIN] Duplicate execution. +[28 11:09:49][6252][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:49][6252][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:49][6252][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:49][6252][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:49][6252][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:49][6252][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:49][6252][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:49][6252][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:49][6252][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:49][6252][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:49][6252][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:49][6252][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:49][6252][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:49][6252][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:49][6252][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:49][6252][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:49][6252][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:49][6252][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:49][6252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:49][6252][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:49][6252][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:49][6252][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:49][6252][INFO][MAIN] Duplicate execution. +[28 11:09:52][6258][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:52][6258][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:52][6258][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:52][6258][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:52][6258][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:52][6258][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:52][6258][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:52][6258][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:52][6258][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:52][6258][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:52][6258][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:52][6258][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:52][6258][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:52][6258][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:52][6258][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:52][6258][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:52][6258][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:52][6258][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:52][6258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:52][6258][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:52][6258][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:52][6258][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:52][6258][INFO][MAIN] Duplicate execution. +[28 11:09:55][6264][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:55][6264][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:55][6264][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:55][6264][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:55][6264][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:55][6264][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:55][6264][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:55][6264][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:55][6264][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:55][6264][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:55][6264][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:55][6264][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:55][6264][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:55][6264][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:55][6264][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:55][6264][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:55][6264][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:55][6264][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:55][6264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:55][6264][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:55][6264][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:55][6264][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:55][6264][INFO][MAIN] Duplicate execution. +[28 11:09:58][6270][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:09:58][6270][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:09:58][6270][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:09:58][6270][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:09:58][6270][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:09:58][6270][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:09:58][6270][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:09:58][6270][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:09:58][6270][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:09:58][6270][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:09:58][6270][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:09:58][6270][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:09:58][6270][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:09:58][6270][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:09:58][6270][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:09:58][6270][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:09:58][6270][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:09:58][6270][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:09:58][6270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:09:58][6270][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:09:58][6270][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:09:58][6270][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:09:58][6270][INFO][MAIN] Duplicate execution. +[28 11:10:01][6276][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:01][6276][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:01][6276][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:01][6276][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:01][6276][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:01][6276][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:01][6276][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:01][6276][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:01][6276][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:01][6276][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:01][6276][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:01][6276][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:01][6276][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:01][6276][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:01][6276][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:01][6276][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:01][6276][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:01][6276][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:01][6276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:01][6276][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:01][6276][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:01][6276][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:01][6276][INFO][MAIN] Duplicate execution. +[28 11:10:04][6282][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:04][6282][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:04][6282][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:04][6282][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:04][6282][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:04][6282][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:04][6282][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:04][6282][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:04][6282][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:04][6282][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:04][6282][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:04][6282][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:04][6282][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:04][6282][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:04][6282][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:04][6282][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:04][6282][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:04][6282][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:04][6282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:04][6282][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:04][6282][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:04][6282][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:04][6282][INFO][MAIN] Duplicate execution. +[28 11:10:07][6288][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:07][6288][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:07][6288][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:07][6288][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:07][6288][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:07][6288][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:07][6288][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:07][6288][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:07][6288][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:07][6288][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:07][6288][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:07][6288][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:07][6288][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:07][6288][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:07][6288][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:07][6288][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:07][6288][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:07][6288][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:07][6288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:07][6288][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:07][6288][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:07][6288][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:07][6288][INFO][MAIN] Duplicate execution. +[28 11:10:10][6294][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:10][6294][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:10][6294][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:10][6294][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:10][6294][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:10][6294][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:10][6294][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:10][6294][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:10][6294][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:10][6294][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:10][6294][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:10][6294][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:10][6294][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:10][6294][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:10][6294][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:10][6294][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:10][6294][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:10][6294][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:10][6294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:10][6294][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:10][6294][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:10][6294][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:10][6294][INFO][MAIN] Duplicate execution. +[28 11:10:13][6300][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:13][6300][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:13][6300][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:13][6300][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:13][6300][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:13][6300][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:13][6300][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:13][6300][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:13][6300][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:13][6300][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:13][6300][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:13][6300][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:13][6300][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:13][6300][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:13][6300][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:13][6300][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:13][6300][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:13][6300][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:13][6300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:13][6300][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:13][6300][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:13][6300][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:13][6300][INFO][MAIN] Duplicate execution. +[28 11:10:16][6306][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:16][6306][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:16][6306][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:16][6306][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:16][6306][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:16][6306][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:16][6306][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:16][6306][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:16][6306][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:16][6306][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:16][6306][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:16][6306][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:16][6306][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:16][6306][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:16][6306][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:16][6306][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:16][6306][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:16][6306][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:16][6306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:16][6306][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:16][6306][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:16][6306][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:16][6306][INFO][MAIN] Duplicate execution. +[28 11:10:19][6312][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:19][6312][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:19][6312][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:19][6312][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:19][6312][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:19][6312][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:19][6312][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:19][6312][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:19][6312][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:19][6312][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:19][6312][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:19][6312][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:19][6312][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:19][6312][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:19][6312][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:19][6312][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:19][6312][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:19][6312][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:19][6312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:19][6312][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:19][6312][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:19][6312][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:19][6312][INFO][MAIN] Duplicate execution. +[28 11:10:22][6318][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:22][6318][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:22][6318][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:22][6318][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:22][6318][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:22][6318][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:22][6318][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:22][6318][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:22][6318][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:22][6318][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:22][6318][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:22][6318][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:22][6318][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:22][6318][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:22][6318][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:22][6318][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:22][6318][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:22][6318][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:22][6318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:22][6318][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:22][6318][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:22][6318][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:22][6318][INFO][MAIN] Duplicate execution. +[28 11:10:25][6324][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:25][6324][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:25][6324][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:25][6324][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:25][6324][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:25][6324][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:25][6324][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:25][6324][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:25][6324][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:25][6324][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:25][6324][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:25][6324][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:25][6324][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:25][6324][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:25][6324][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:25][6324][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:25][6324][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:25][6324][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:25][6324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:25][6324][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:25][6324][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:25][6324][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:25][6324][INFO][MAIN] Duplicate execution. +[28 11:10:28][6330][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:28][6330][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:28][6330][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:28][6330][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:28][6330][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:28][6330][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:28][6330][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:28][6330][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:28][6330][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:28][6330][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:28][6330][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:28][6330][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:28][6330][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:28][6330][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:28][6330][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:28][6330][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:28][6330][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:28][6330][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:28][6330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:28][6330][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:28][6330][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:28][6330][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:28][6330][INFO][MAIN] Duplicate execution. +[28 11:10:31][6336][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:31][6336][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:31][6336][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:31][6336][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:31][6336][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:31][6336][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:31][6336][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:31][6336][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:31][6336][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:31][6336][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:31][6336][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:31][6336][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:31][6336][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:31][6336][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:31][6336][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:31][6336][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:31][6336][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:31][6336][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:31][6336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:31][6336][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:31][6336][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:31][6336][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:31][6336][INFO][MAIN] Duplicate execution. +[28 11:10:34][6342][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:34][6342][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:34][6342][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:34][6342][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:34][6342][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:34][6342][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:34][6342][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:34][6342][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:34][6342][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:34][6342][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:34][6342][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:34][6342][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:34][6342][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:34][6342][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:34][6342][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:34][6342][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:34][6342][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:34][6342][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:34][6342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:34][6342][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:34][6342][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:34][6342][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:34][6342][INFO][MAIN] Duplicate execution. +[28 11:10:37][6348][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:37][6348][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:37][6348][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:37][6348][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:37][6348][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:37][6348][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:37][6348][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:37][6348][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:37][6348][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:37][6348][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:37][6348][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:37][6348][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:37][6348][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:37][6348][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:37][6348][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:37][6348][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:37][6348][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:37][6348][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:37][6348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:37][6348][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:37][6348][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:37][6348][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:37][6348][INFO][MAIN] Duplicate execution. +[28 11:10:40][6354][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:40][6354][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:40][6354][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:40][6354][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:40][6354][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:40][6354][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:40][6354][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:40][6354][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:40][6354][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:40][6354][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:40][6354][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:40][6354][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:40][6354][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:40][6354][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:40][6354][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:40][6354][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:40][6354][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:40][6354][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:40][6354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:40][6354][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:40][6354][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:40][6354][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:40][6354][INFO][MAIN] Duplicate execution. +[28 11:10:43][6360][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:43][6360][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:43][6360][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:43][6360][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:43][6360][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:43][6360][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:43][6360][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:43][6360][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:43][6360][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:43][6360][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:43][6360][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:43][6360][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:43][6360][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:43][6360][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:43][6360][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:43][6360][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:43][6360][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:43][6360][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:43][6360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:43][6360][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:43][6360][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:43][6360][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:43][6360][INFO][MAIN] Duplicate execution. +[28 11:10:46][6366][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:46][6366][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:46][6366][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:46][6366][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:46][6366][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:46][6366][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:46][6366][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:46][6366][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:46][6366][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:46][6366][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:46][6366][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:46][6366][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:46][6366][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:46][6366][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:46][6366][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:46][6366][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:46][6366][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:46][6366][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:46][6366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:46][6366][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:46][6366][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:46][6366][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:46][6366][INFO][MAIN] Duplicate execution. +[28 11:10:49][6372][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:49][6372][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:49][6372][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:49][6372][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:49][6372][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:49][6372][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:49][6372][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:49][6372][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:49][6372][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:49][6372][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:49][6372][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:49][6372][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:49][6372][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:49][6372][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:49][6372][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:49][6372][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:49][6372][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:49][6372][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:49][6372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:49][6372][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:49][6372][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:49][6372][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:49][6372][INFO][MAIN] Duplicate execution. +[28 11:10:52][6378][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:52][6378][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:52][6378][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:52][6378][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:52][6378][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:52][6378][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:52][6378][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:52][6378][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:52][6378][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:52][6378][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:52][6378][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:52][6378][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:52][6378][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:52][6378][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:52][6378][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:52][6378][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:52][6378][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:52][6378][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:52][6378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:52][6378][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:52][6378][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:52][6378][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:52][6378][INFO][MAIN] Duplicate execution. +[28 11:10:55][6384][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:55][6384][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:55][6384][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:55][6384][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:55][6384][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:55][6384][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:55][6384][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:55][6384][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:55][6384][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:55][6384][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:55][6384][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:55][6384][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:55][6384][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:55][6384][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:55][6384][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:55][6384][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:55][6384][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:55][6384][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:55][6384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:55][6384][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:55][6384][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:55][6384][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:55][6384][INFO][MAIN] Duplicate execution. +[28 11:10:58][6390][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:10:58][6390][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:10:58][6390][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:10:58][6390][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:10:58][6390][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:10:58][6390][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:10:58][6390][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:10:58][6390][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:10:58][6390][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:10:58][6390][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:10:58][6390][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:10:58][6390][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:10:58][6390][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:10:58][6390][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:10:58][6390][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:10:58][6390][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:10:58][6390][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:10:58][6390][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:10:58][6390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:10:58][6390][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:10:58][6390][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:10:58][6390][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:10:58][6390][INFO][MAIN] Duplicate execution. +[28 11:11:01][6396][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:01][6396][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:01][6396][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:01][6396][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:01][6396][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:01][6396][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:01][6396][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:01][6396][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:01][6396][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:01][6396][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:01][6396][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:01][6396][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:01][6396][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:01][6396][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:01][6396][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:01][6396][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:01][6396][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:01][6396][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:01][6396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:01][6396][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:01][6396][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:01][6396][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:01][6396][INFO][MAIN] Duplicate execution. +[28 11:11:04][6402][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:04][6402][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:04][6402][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:04][6402][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:04][6402][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:04][6402][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:04][6402][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:04][6402][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:04][6402][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:04][6402][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:04][6402][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:04][6402][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:04][6402][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:04][6402][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:04][6402][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:04][6402][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:04][6402][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:04][6402][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:04][6402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:04][6402][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:04][6402][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:04][6402][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:04][6402][INFO][MAIN] Duplicate execution. +[28 11:11:07][6408][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:07][6408][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:07][6408][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:07][6408][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:07][6408][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:07][6408][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:07][6408][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:07][6408][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:07][6408][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:07][6408][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:07][6408][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:07][6408][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:07][6408][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:07][6408][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:07][6408][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:07][6408][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:07][6408][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:07][6408][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:07][6408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:07][6408][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:07][6408][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:07][6408][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:07][6408][INFO][MAIN] Duplicate execution. +[28 11:11:10][6414][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:10][6414][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:10][6414][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:10][6414][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:10][6414][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:10][6414][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:10][6414][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:10][6414][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:10][6414][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:10][6414][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:10][6414][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:10][6414][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:10][6414][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:10][6414][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:10][6414][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:10][6414][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:10][6414][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:10][6414][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:10][6414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:10][6414][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:10][6414][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:10][6414][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:10][6414][INFO][MAIN] Duplicate execution. +[28 11:11:13][6420][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:13][6420][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:13][6420][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:13][6420][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:13][6420][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:13][6420][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:13][6420][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:13][6420][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:13][6420][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:13][6420][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:13][6420][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:13][6420][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:13][6420][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:13][6420][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:13][6420][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:13][6420][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:13][6420][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:13][6420][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:13][6420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:13][6420][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:13][6420][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:13][6420][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:13][6420][INFO][MAIN] Duplicate execution. +[28 11:11:16][6426][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:16][6426][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:16][6426][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:16][6426][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:16][6426][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:16][6426][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:16][6426][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:16][6426][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:16][6426][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:16][6426][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:16][6426][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:16][6426][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:16][6426][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:16][6426][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:16][6426][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:16][6426][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:16][6426][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:16][6426][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:16][6426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:16][6426][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:16][6426][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:16][6426][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:16][6426][INFO][MAIN] Duplicate execution. +[28 11:11:19][6432][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:19][6432][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:19][6432][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:19][6432][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:19][6432][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:19][6432][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:19][6432][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:19][6432][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:19][6432][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:19][6432][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:19][6432][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:19][6432][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:19][6432][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:19][6432][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:19][6432][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:19][6432][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:19][6432][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:19][6432][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:19][6432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:19][6432][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:19][6432][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:19][6432][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:19][6432][INFO][MAIN] Duplicate execution. +[28 11:11:22][6438][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:22][6438][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:22][6438][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:22][6438][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:22][6438][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:22][6438][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:22][6438][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:22][6438][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:22][6438][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:22][6438][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:22][6438][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:22][6438][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:22][6438][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:22][6438][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:22][6438][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:22][6438][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:22][6438][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:22][6438][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:22][6438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:22][6438][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:22][6438][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:22][6438][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:22][6438][INFO][MAIN] Duplicate execution. +[28 11:11:25][6444][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:25][6444][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:25][6444][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:25][6444][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:25][6444][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:25][6444][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:25][6444][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:25][6444][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:25][6444][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:25][6444][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:25][6444][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:25][6444][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:25][6444][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:25][6444][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:25][6444][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:25][6444][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:25][6444][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:25][6444][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:25][6444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:25][6444][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:25][6444][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:25][6444][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:25][6444][INFO][MAIN] Duplicate execution. +[28 11:11:28][6450][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:28][6450][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:28][6450][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:28][6450][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:28][6450][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:28][6450][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:28][6450][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:28][6450][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:28][6450][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:28][6450][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:28][6450][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:28][6450][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:28][6450][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:28][6450][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:28][6450][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:28][6450][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:28][6450][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:28][6450][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:28][6450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:28][6450][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:28][6450][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:28][6450][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:28][6450][INFO][MAIN] Duplicate execution. +[28 11:11:31][6456][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:31][6456][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:31][6456][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:31][6456][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:31][6456][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:31][6456][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:31][6456][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:31][6456][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:31][6456][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:31][6456][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:31][6456][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:31][6456][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:31][6456][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:31][6456][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:31][6456][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:31][6456][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:31][6456][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:31][6456][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:31][6456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:31][6456][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:31][6456][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:31][6456][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:31][6456][INFO][MAIN] Duplicate execution. +[28 11:11:34][6462][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:34][6462][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:34][6462][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:34][6462][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:34][6462][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:34][6462][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:34][6462][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:34][6462][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:34][6462][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:34][6462][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:34][6462][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:34][6462][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:34][6462][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:34][6462][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:34][6462][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:34][6462][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:34][6462][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:34][6462][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:34][6462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:34][6462][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:34][6462][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:34][6462][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:34][6462][INFO][MAIN] Duplicate execution. +[28 11:11:37][6468][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:37][6468][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:37][6468][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:37][6468][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:37][6468][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:37][6468][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:37][6468][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:37][6468][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:37][6468][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:37][6468][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:37][6468][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:37][6468][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:37][6468][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:37][6468][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:37][6468][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:37][6468][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:37][6468][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:37][6468][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:37][6468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:37][6468][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:37][6468][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:37][6468][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:37][6468][INFO][MAIN] Duplicate execution. +[28 11:11:40][6474][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:40][6474][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:40][6474][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:40][6474][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:40][6474][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:40][6474][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:40][6474][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:40][6474][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:40][6474][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:40][6474][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:40][6474][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:40][6474][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:40][6474][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:40][6474][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:40][6474][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:40][6474][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:40][6474][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:40][6474][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:40][6474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:40][6474][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:40][6474][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:40][6474][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:40][6474][INFO][MAIN] Duplicate execution. +[28 11:11:43][6480][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:43][6480][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:43][6480][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:43][6480][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:43][6480][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:43][6480][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:43][6480][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:43][6480][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:43][6480][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:43][6480][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:43][6480][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:43][6480][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:43][6480][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:43][6480][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:43][6480][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:43][6480][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:43][6480][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:43][6480][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:43][6480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:43][6480][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:43][6480][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:43][6480][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:43][6480][INFO][MAIN] Duplicate execution. +[28 11:11:46][6486][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:46][6486][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:46][6486][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:46][6486][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:46][6486][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:46][6486][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:46][6486][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:46][6486][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:46][6486][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:46][6486][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:46][6486][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:46][6486][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:46][6486][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:46][6486][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:46][6486][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:46][6486][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:46][6486][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:46][6486][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:46][6486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:46][6486][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:46][6486][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:46][6486][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:46][6486][INFO][MAIN] Duplicate execution. +[28 11:11:49][6492][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:49][6492][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:49][6492][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:49][6492][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:49][6492][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:49][6492][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:49][6492][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:49][6492][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:49][6492][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:49][6492][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:49][6492][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:49][6492][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:49][6492][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:49][6492][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:49][6492][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:49][6492][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:49][6492][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:49][6492][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:49][6492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:49][6492][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:49][6492][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:49][6492][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:49][6492][INFO][MAIN] Duplicate execution. +[28 11:11:52][6498][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:52][6498][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:52][6498][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:52][6498][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:52][6498][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:52][6498][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:52][6498][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:52][6498][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:52][6498][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:52][6498][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:52][6498][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:52][6498][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:52][6498][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:52][6498][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:52][6498][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:52][6498][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:52][6498][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:52][6498][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:52][6498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:52][6498][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:52][6498][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:52][6498][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:52][6498][INFO][MAIN] Duplicate execution. +[28 11:11:55][6504][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:55][6504][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:55][6504][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:55][6504][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:55][6504][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:55][6504][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:55][6504][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:55][6504][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:55][6504][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:55][6504][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:55][6504][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:55][6504][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:55][6504][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:55][6504][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:55][6504][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:55][6504][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:55][6504][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:55][6504][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:55][6504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:55][6504][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:55][6504][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:55][6504][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:55][6504][INFO][MAIN] Duplicate execution. +[28 11:11:58][6510][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:11:58][6510][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:11:58][6510][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:11:58][6510][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:11:58][6510][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:11:58][6510][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:11:58][6510][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:11:58][6510][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:11:58][6510][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:11:58][6510][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:11:58][6510][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:11:58][6510][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:11:58][6510][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:11:58][6510][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:11:58][6510][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:11:58][6510][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:11:58][6510][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:11:58][6510][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:11:58][6510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:11:58][6510][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:11:58][6510][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:11:58][6510][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:11:58][6510][INFO][MAIN] Duplicate execution. +[28 11:12:01][6516][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:01][6516][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:01][6516][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:01][6516][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:01][6516][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:01][6516][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:01][6516][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:01][6516][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:01][6516][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:01][6516][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:01][6516][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:01][6516][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:01][6516][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:01][6516][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:01][6516][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:01][6516][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:01][6516][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:01][6516][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:01][6516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:01][6516][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:01][6516][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:01][6516][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:01][6516][INFO][MAIN] Duplicate execution. +[28 11:12:04][6522][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:04][6522][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:04][6522][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:04][6522][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:04][6522][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:04][6522][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:04][6522][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:04][6522][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:04][6522][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:04][6522][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:04][6522][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:04][6522][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:04][6522][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:04][6522][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:04][6522][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:04][6522][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:04][6522][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:04][6522][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:04][6522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:04][6522][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:04][6522][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:04][6522][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:04][6522][INFO][MAIN] Duplicate execution. +[28 11:12:07][6528][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:07][6528][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:07][6528][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:07][6528][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:07][6528][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:07][6528][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:07][6528][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:07][6528][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:07][6528][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:07][6528][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:07][6528][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:07][6528][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:07][6528][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:07][6528][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:07][6528][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:07][6528][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:07][6528][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:07][6528][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:07][6528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:07][6528][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:07][6528][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:07][6528][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:07][6528][INFO][MAIN] Duplicate execution. +[28 11:12:10][6534][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:10][6534][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:10][6534][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:10][6534][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:10][6534][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:10][6534][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:10][6534][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:10][6534][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:10][6534][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:10][6534][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:10][6534][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:10][6534][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:10][6534][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:10][6534][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:10][6534][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:10][6534][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:10][6534][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:10][6534][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:10][6534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:10][6534][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:10][6534][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:10][6534][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:10][6534][INFO][MAIN] Duplicate execution. +[28 11:12:13][6540][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:13][6540][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:13][6540][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:13][6540][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:13][6540][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:13][6540][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:13][6540][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:13][6540][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:13][6540][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:13][6540][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:13][6540][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:13][6540][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:13][6540][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:13][6540][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:13][6540][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:13][6540][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:13][6540][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:13][6540][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:13][6540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:13][6540][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:13][6540][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:13][6540][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:13][6540][INFO][MAIN] Duplicate execution. +[28 11:12:16][6546][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:16][6546][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:16][6546][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:16][6546][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:16][6546][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:16][6546][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:16][6546][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:16][6546][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:16][6546][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:16][6546][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:16][6546][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:16][6546][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:16][6546][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:16][6546][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:16][6546][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:16][6546][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:16][6546][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:16][6546][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:16][6546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:16][6546][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:16][6546][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:16][6546][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:16][6546][INFO][MAIN] Duplicate execution. +[28 11:12:19][6552][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:19][6552][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:19][6552][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:19][6552][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:19][6552][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:19][6552][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:19][6552][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:19][6552][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:19][6552][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:19][6552][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:19][6552][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:19][6552][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:19][6552][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:19][6552][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:19][6552][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:19][6552][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:19][6552][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:19][6552][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:19][6552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:19][6552][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:19][6552][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:19][6552][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:19][6552][INFO][MAIN] Duplicate execution. +[28 11:12:22][6558][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:22][6558][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:22][6558][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:22][6558][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:22][6558][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:22][6558][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:22][6558][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:22][6558][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:22][6558][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:22][6558][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:22][6558][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:22][6558][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:22][6558][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:22][6558][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:22][6558][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:22][6558][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:22][6558][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:22][6558][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:22][6558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:22][6558][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:22][6558][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:22][6558][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:22][6558][INFO][MAIN] Duplicate execution. +[28 11:12:25][6564][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:25][6564][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:25][6564][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:25][6564][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:25][6564][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:25][6564][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:25][6564][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:25][6564][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:25][6564][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:25][6564][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:25][6564][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:25][6564][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:25][6564][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:25][6564][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:25][6564][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:25][6564][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:25][6564][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:25][6564][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:25][6564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:25][6564][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:25][6564][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:25][6564][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:25][6564][INFO][MAIN] Duplicate execution. +[28 11:12:28][6570][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:28][6570][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:28][6570][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:28][6570][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:28][6570][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:28][6570][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:28][6570][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:28][6570][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:28][6570][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:28][6570][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:28][6570][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:28][6570][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:28][6570][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:28][6570][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:28][6570][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:28][6570][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:28][6570][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:28][6570][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:28][6570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:28][6570][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:28][6570][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:28][6570][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:28][6570][INFO][MAIN] Duplicate execution. +[28 11:12:31][6576][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:31][6576][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:31][6576][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:31][6576][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:31][6576][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:31][6576][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:31][6576][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:31][6576][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:31][6576][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:31][6576][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:31][6576][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:31][6576][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:31][6576][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:31][6576][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:31][6576][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:31][6576][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:31][6576][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:31][6576][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:31][6576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:31][6576][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:31][6576][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:31][6576][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:31][6576][INFO][MAIN] Duplicate execution. +[28 11:12:34][6582][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:34][6582][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:34][6582][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:34][6582][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:34][6582][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:34][6582][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:34][6582][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:34][6582][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:34][6582][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:34][6582][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:34][6582][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:34][6582][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:34][6582][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:34][6582][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:34][6582][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:34][6582][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:34][6582][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:34][6582][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:34][6582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:34][6582][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:34][6582][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:34][6582][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:34][6582][INFO][MAIN] Duplicate execution. +[28 11:12:37][6588][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:37][6588][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:37][6588][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:37][6588][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:37][6588][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:37][6588][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:37][6588][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:37][6588][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:37][6588][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:37][6588][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:37][6588][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:37][6588][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:37][6588][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:37][6588][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:37][6588][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:37][6588][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:37][6588][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:37][6588][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:37][6588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:37][6588][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:37][6588][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:37][6588][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:37][6588][INFO][MAIN] Duplicate execution. +[28 11:12:41][6594][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:41][6594][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:41][6594][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:41][6594][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:41][6594][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:41][6594][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:41][6594][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:41][6594][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:41][6594][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:41][6594][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:41][6594][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:41][6594][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:41][6594][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:41][6594][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:41][6594][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:41][6594][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:41][6594][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:41][6594][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:41][6594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:41][6594][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:41][6594][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:41][6594][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:41][6594][INFO][MAIN] Duplicate execution. +[28 11:12:44][6600][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:44][6600][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:44][6600][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:44][6600][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:44][6600][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:44][6600][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:44][6600][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:44][6600][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:44][6600][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:44][6600][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:44][6600][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:44][6600][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:44][6600][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:44][6600][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:44][6600][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:44][6600][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:44][6600][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:44][6600][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:44][6600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:44][6600][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:44][6600][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:44][6600][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:44][6600][INFO][MAIN] Duplicate execution. +[28 11:12:46][6606][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:46][6606][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:46][6606][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:46][6606][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:46][6606][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:46][6606][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:46][6606][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:46][6606][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:46][6606][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:46][6606][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:46][6606][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:46][6606][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:46][6606][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:46][6606][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:46][6606][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:46][6606][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:46][6606][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:46][6606][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:46][6606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:46][6606][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:46][6606][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:46][6606][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:46][6606][INFO][MAIN] Duplicate execution. +[28 11:12:49][6612][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:49][6612][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:49][6612][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:49][6612][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:49][6612][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:49][6612][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:49][6612][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:49][6612][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:49][6612][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:49][6612][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:49][6612][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:49][6612][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:49][6612][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:49][6612][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:49][6612][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:49][6612][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:49][6612][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:49][6612][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:49][6612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:49][6612][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:49][6612][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:49][6612][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:49][6612][INFO][MAIN] Duplicate execution. +[28 11:12:52][6618][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:52][6618][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:52][6618][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:52][6618][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:52][6618][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:52][6618][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:52][6618][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:52][6618][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:52][6618][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:52][6618][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:52][6618][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:52][6618][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:52][6618][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:52][6618][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:52][6618][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:52][6618][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:52][6618][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:52][6618][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:52][6618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:52][6618][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:52][6618][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:52][6618][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:52][6618][INFO][MAIN] Duplicate execution. +[28 11:12:55][6624][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:55][6624][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:55][6624][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:55][6624][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:55][6624][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:55][6624][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:55][6624][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:55][6624][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:55][6624][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:55][6624][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:55][6624][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:55][6624][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:55][6624][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:55][6624][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:55][6624][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:55][6624][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:55][6624][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:55][6624][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:55][6624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:55][6624][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:55][6624][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:55][6624][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:55][6624][INFO][MAIN] Duplicate execution. +[28 11:12:58][6630][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:12:58][6630][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:12:58][6630][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:12:58][6630][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:12:58][6630][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:12:58][6630][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:12:58][6630][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:12:58][6630][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:12:58][6630][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:12:58][6630][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:12:58][6630][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:12:58][6630][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:12:58][6630][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:12:58][6630][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:12:58][6630][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:12:58][6630][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:12:58][6630][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:12:58][6630][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:12:58][6630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:12:58][6630][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:12:58][6630][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:12:58][6630][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:12:58][6630][INFO][MAIN] Duplicate execution. +[28 11:13:01][6636][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:01][6636][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:01][6636][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:01][6636][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:01][6636][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:01][6636][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:01][6636][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:01][6636][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:01][6636][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:01][6636][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:01][6636][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:01][6636][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:01][6636][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:01][6636][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:01][6636][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:01][6636][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:01][6636][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:01][6636][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:01][6636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:01][6636][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:01][6636][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:01][6636][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:01][6636][INFO][MAIN] Duplicate execution. +[28 11:13:04][6642][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:04][6642][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:04][6642][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:04][6642][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:04][6642][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:04][6642][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:04][6642][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:04][6642][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:04][6642][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:04][6642][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:04][6642][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:04][6642][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:04][6642][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:04][6642][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:04][6642][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:04][6642][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:04][6642][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:04][6642][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:04][6642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:04][6642][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:04][6642][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:04][6642][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:04][6642][INFO][MAIN] Duplicate execution. +[28 11:13:07][6648][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:07][6648][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:07][6648][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:07][6648][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:07][6648][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:07][6648][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:07][6648][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:07][6648][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:07][6648][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:07][6648][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:07][6648][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:07][6648][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:07][6648][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:07][6648][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:07][6648][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:07][6648][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:07][6648][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:07][6648][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:07][6648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:07][6648][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:07][6648][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:07][6648][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:07][6648][INFO][MAIN] Duplicate execution. +[28 11:13:10][6654][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:10][6654][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:10][6654][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:10][6654][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:10][6654][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:10][6654][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:10][6654][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:10][6654][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:10][6654][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:10][6654][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:10][6654][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:10][6654][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:10][6654][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:10][6654][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:10][6654][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:10][6654][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:10][6654][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:10][6654][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:10][6654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:10][6654][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:10][6654][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:10][6654][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:10][6654][INFO][MAIN] Duplicate execution. +[28 11:13:13][6660][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:13][6660][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:13][6660][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:13][6660][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:13][6660][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:13][6660][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:13][6660][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:13][6660][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:13][6660][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:13][6660][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:13][6660][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:13][6660][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:13][6660][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:13][6660][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:13][6660][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:13][6660][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:13][6660][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:13][6660][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:13][6660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:13][6660][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:13][6660][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:13][6660][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:13][6660][INFO][MAIN] Duplicate execution. +[28 11:13:16][6666][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:16][6666][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:16][6666][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:16][6666][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:16][6666][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:16][6666][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:16][6666][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:16][6666][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:16][6666][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:16][6666][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:16][6666][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:16][6666][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:16][6666][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:16][6666][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:16][6666][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:16][6666][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:16][6666][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:16][6666][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:16][6666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:16][6666][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:16][6666][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:16][6666][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:16][6666][INFO][MAIN] Duplicate execution. +[28 11:13:19][6672][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:19][6672][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:19][6672][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:19][6672][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:19][6672][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:19][6672][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:19][6672][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:19][6672][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:19][6672][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:19][6672][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:19][6672][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:19][6672][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:19][6672][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:19][6672][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:19][6672][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:19][6672][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:19][6672][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:19][6672][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:19][6672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:19][6672][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:19][6672][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:19][6672][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:19][6672][INFO][MAIN] Duplicate execution. +[28 11:13:22][6678][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:22][6678][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:22][6678][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:22][6678][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:22][6678][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:22][6678][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:22][6678][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:22][6678][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:22][6678][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:22][6678][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:22][6678][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:22][6678][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:22][6678][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:22][6678][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:22][6678][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:22][6678][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:22][6678][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:22][6678][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:22][6678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:22][6678][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:22][6678][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:22][6678][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:22][6678][INFO][MAIN] Duplicate execution. +[28 11:13:25][6684][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:25][6684][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:25][6684][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:25][6684][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:25][6684][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:25][6684][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:25][6684][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:25][6684][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:25][6684][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:25][6684][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:25][6684][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:25][6684][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:25][6684][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:25][6684][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:25][6684][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:25][6684][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:25][6684][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:25][6684][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:25][6684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:25][6684][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:25][6684][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:25][6684][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:25][6684][INFO][MAIN] Duplicate execution. +[28 11:13:28][6690][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:28][6690][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:28][6690][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:28][6690][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:28][6690][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:28][6690][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:28][6690][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:28][6690][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:28][6690][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:28][6690][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:28][6690][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:28][6690][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:28][6690][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:28][6690][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:28][6690][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:28][6690][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:28][6690][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:28][6690][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:28][6690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:28][6690][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:28][6690][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:28][6690][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:28][6690][INFO][MAIN] Duplicate execution. +[28 11:13:31][6696][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:31][6696][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:31][6696][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:31][6696][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:31][6696][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:31][6696][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:31][6696][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:31][6696][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:31][6696][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:31][6696][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:31][6696][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:31][6696][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:31][6696][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:31][6696][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:31][6696][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:31][6696][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:31][6696][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:31][6696][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:31][6696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:31][6696][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:31][6696][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:31][6696][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:31][6696][INFO][MAIN] Duplicate execution. +[28 11:13:34][6702][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:34][6702][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:34][6702][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:34][6702][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:34][6702][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:34][6702][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:34][6702][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:34][6702][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:34][6702][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:34][6702][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:34][6702][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:34][6702][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:34][6702][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:34][6702][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:34][6702][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:34][6702][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:34][6702][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:34][6702][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:34][6702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:34][6702][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:34][6702][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:34][6702][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:34][6702][INFO][MAIN] Duplicate execution. +[28 11:13:37][6708][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:37][6708][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:37][6708][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:37][6708][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:37][6708][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:37][6708][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:37][6708][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:37][6708][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:37][6708][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:37][6708][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:37][6708][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:37][6708][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:37][6708][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:37][6708][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:37][6708][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:37][6708][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:37][6708][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:37][6708][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:37][6708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:37][6708][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:37][6708][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:37][6708][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:37][6708][INFO][MAIN] Duplicate execution. +[28 11:13:40][6714][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:40][6714][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:40][6714][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:40][6714][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:40][6714][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:40][6714][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:40][6714][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:40][6714][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:40][6714][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:40][6714][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:40][6714][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:40][6714][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:40][6714][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:40][6714][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:40][6714][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:40][6714][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:40][6714][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:40][6714][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:40][6714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:40][6714][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:40][6714][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:40][6714][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:40][6714][INFO][MAIN] Duplicate execution. +[28 11:13:43][6720][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:43][6720][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:43][6720][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:43][6720][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:43][6720][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:43][6720][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:43][6720][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:43][6720][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:43][6720][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:43][6720][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:43][6720][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:43][6720][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:43][6720][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:43][6720][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:43][6720][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:43][6720][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:43][6720][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:43][6720][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:43][6720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:43][6720][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:43][6720][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:43][6720][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:43][6720][INFO][MAIN] Duplicate execution. +[28 11:13:46][6726][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:46][6726][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:46][6726][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:46][6726][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:46][6726][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:46][6726][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:46][6726][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:46][6726][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:46][6726][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:46][6726][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:46][6726][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:46][6726][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:46][6726][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:46][6726][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:46][6726][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:46][6726][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:46][6726][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:46][6726][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:46][6726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:46][6726][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:46][6726][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:46][6726][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:46][6726][INFO][MAIN] Duplicate execution. +[28 11:13:49][6732][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:49][6732][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:49][6732][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:49][6732][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:49][6732][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:49][6732][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:49][6732][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:49][6732][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:49][6732][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:49][6732][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:49][6732][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:49][6732][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:49][6732][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:49][6732][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:49][6732][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:49][6732][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:49][6732][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:49][6732][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:49][6732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:49][6732][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:49][6732][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:49][6732][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:49][6732][INFO][MAIN] Duplicate execution. +[28 11:13:52][6738][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:52][6738][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:52][6738][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:52][6738][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:52][6738][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:52][6738][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:52][6738][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:52][6738][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:52][6738][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:52][6738][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:52][6738][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:52][6738][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:52][6738][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:52][6738][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:52][6738][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:52][6738][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:52][6738][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:52][6738][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:52][6738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:52][6738][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:52][6738][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:52][6738][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:52][6738][INFO][MAIN] Duplicate execution. +[28 11:13:55][6744][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:55][6744][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:55][6744][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:55][6744][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:55][6744][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:55][6744][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:55][6744][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:55][6744][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:55][6744][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:55][6744][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:55][6744][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:55][6744][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:55][6744][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:55][6744][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:55][6744][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:55][6744][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:55][6744][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:55][6744][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:55][6744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:55][6744][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:55][6744][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:55][6744][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:55][6744][INFO][MAIN] Duplicate execution. +[28 11:13:58][6750][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:13:58][6750][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:13:58][6750][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:13:58][6750][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:13:58][6750][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:13:58][6750][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:13:58][6750][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:13:58][6750][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:13:58][6750][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:13:58][6750][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:13:58][6750][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:13:58][6750][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:13:58][6750][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:13:58][6750][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:13:58][6750][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:13:58][6750][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:13:58][6750][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:13:58][6750][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:13:58][6750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:13:58][6750][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:13:58][6750][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:13:58][6750][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:13:58][6750][INFO][MAIN] Duplicate execution. +[28 11:14:01][6756][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:01][6756][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:01][6756][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:01][6756][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:01][6756][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:01][6756][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:01][6756][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:01][6756][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:01][6756][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:01][6756][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:01][6756][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:01][6756][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:01][6756][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:01][6756][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:01][6756][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:01][6756][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:01][6756][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:01][6756][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:01][6756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:01][6756][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:01][6756][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:01][6756][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:01][6756][INFO][MAIN] Duplicate execution. +[28 11:14:04][6762][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:04][6762][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:04][6762][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:04][6762][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:04][6762][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:04][6762][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:04][6762][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:04][6762][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:04][6762][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:04][6762][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:04][6762][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:04][6762][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:04][6762][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:04][6762][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:04][6762][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:04][6762][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:04][6762][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:04][6762][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:04][6762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:04][6762][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:04][6762][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:04][6762][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:04][6762][INFO][MAIN] Duplicate execution. +[28 11:14:07][6768][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:07][6768][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:07][6768][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:07][6768][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:07][6768][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:07][6768][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:07][6768][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:07][6768][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:07][6768][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:07][6768][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:07][6768][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:07][6768][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:07][6768][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:07][6768][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:07][6768][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:07][6768][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:07][6768][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:07][6768][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:07][6768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:07][6768][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:07][6768][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:07][6768][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:07][6768][INFO][MAIN] Duplicate execution. +[28 11:14:10][6774][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:10][6774][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:10][6774][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:10][6774][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:10][6774][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:10][6774][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:10][6774][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:10][6774][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:10][6774][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:10][6774][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:10][6774][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:10][6774][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:10][6774][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:10][6774][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:10][6774][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:10][6774][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:10][6774][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:10][6774][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:10][6774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:10][6774][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:10][6774][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:10][6774][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:10][6774][INFO][MAIN] Duplicate execution. +[28 11:14:13][6780][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:13][6780][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:13][6780][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:13][6780][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:13][6780][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:13][6780][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:13][6780][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:13][6780][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:13][6780][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:13][6780][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:13][6780][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:13][6780][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:13][6780][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:13][6780][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:13][6780][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:13][6780][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:13][6780][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:13][6780][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:13][6780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:13][6780][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:13][6780][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:13][6780][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:13][6780][INFO][MAIN] Duplicate execution. +[28 11:14:16][6786][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:16][6786][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:16][6786][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:16][6786][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:16][6786][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:16][6786][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:16][6786][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:16][6786][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:16][6786][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:16][6786][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:16][6786][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:16][6786][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:16][6786][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:16][6786][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:16][6786][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:16][6786][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:16][6786][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:16][6786][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:16][6786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:16][6786][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:16][6786][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:16][6786][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:16][6786][INFO][MAIN] Duplicate execution. +[28 11:14:19][6792][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:19][6792][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:19][6792][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:19][6792][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:19][6792][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:19][6792][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:19][6792][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:19][6792][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:19][6792][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:19][6792][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:19][6792][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:19][6792][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:19][6792][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:19][6792][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:19][6792][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:19][6792][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:19][6792][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:19][6792][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:19][6792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:19][6792][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:19][6792][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:19][6792][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:19][6792][INFO][MAIN] Duplicate execution. +[28 11:14:22][6798][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:22][6798][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:22][6798][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:22][6798][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:22][6798][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:22][6798][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:22][6798][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:22][6798][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:22][6798][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:22][6798][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:22][6798][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:22][6798][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:22][6798][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:22][6798][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:22][6798][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:22][6798][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:22][6798][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:22][6798][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:22][6798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:22][6798][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:22][6798][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:22][6798][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:22][6798][INFO][MAIN] Duplicate execution. +[28 11:14:25][6804][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:25][6804][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:25][6804][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:25][6804][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:25][6804][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:25][6804][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:25][6804][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:25][6804][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:25][6804][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:25][6804][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:25][6804][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:25][6804][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:25][6804][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:25][6804][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:25][6804][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:25][6804][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:25][6804][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:25][6804][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:25][6804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:25][6804][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:25][6804][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:25][6804][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:25][6804][INFO][MAIN] Duplicate execution. +[28 11:14:28][6810][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:28][6810][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:28][6810][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:28][6810][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:28][6810][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:28][6810][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:28][6810][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:28][6810][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:28][6810][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:28][6810][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:28][6810][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:28][6810][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:28][6810][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:28][6810][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:28][6810][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:28][6810][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:28][6810][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:28][6810][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:28][6810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:28][6810][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:28][6810][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:28][6810][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:28][6810][INFO][MAIN] Duplicate execution. +[28 11:14:31][6816][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:31][6816][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:31][6816][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:31][6816][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:31][6816][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:31][6816][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:31][6816][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:31][6816][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:31][6816][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:31][6816][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:31][6816][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:31][6816][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:31][6816][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:31][6816][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:31][6816][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:31][6816][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:31][6816][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:31][6816][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:31][6816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:31][6816][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:31][6816][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:31][6816][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:31][6816][INFO][MAIN] Duplicate execution. +[28 11:14:34][6822][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:34][6822][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:34][6822][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:34][6822][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:34][6822][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:34][6822][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:34][6822][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:34][6822][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:34][6822][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:34][6822][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:34][6822][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:34][6822][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:34][6822][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:34][6822][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:34][6822][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:34][6822][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:34][6822][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:34][6822][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:34][6822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:34][6822][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:34][6822][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:34][6822][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:34][6822][INFO][MAIN] Duplicate execution. +[28 11:14:37][6828][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:37][6828][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:37][6828][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:37][6828][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:37][6828][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:37][6828][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:37][6828][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:37][6828][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:37][6828][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:37][6828][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:37][6828][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:37][6828][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:37][6828][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:37][6828][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:37][6828][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:37][6828][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:37][6828][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:37][6828][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:37][6828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:37][6828][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:37][6828][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:37][6828][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:37][6828][INFO][MAIN] Duplicate execution. +[28 11:14:40][6834][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:40][6834][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:40][6834][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:40][6834][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:40][6834][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:40][6834][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:40][6834][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:40][6834][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:40][6834][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:40][6834][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:40][6834][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:40][6834][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:40][6834][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:40][6834][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:40][6834][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:40][6834][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:40][6834][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:40][6834][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:40][6834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:40][6834][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:40][6834][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:40][6834][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:40][6834][INFO][MAIN] Duplicate execution. +[28 11:14:43][6840][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:43][6840][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:43][6840][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:43][6840][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:43][6840][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:43][6840][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:43][6840][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:43][6840][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:43][6840][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:43][6840][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:43][6840][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:43][6840][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:43][6840][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:43][6840][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:43][6840][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:43][6840][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:43][6840][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:43][6840][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:43][6840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:43][6840][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:43][6840][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:43][6840][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:43][6840][INFO][MAIN] Duplicate execution. +[28 11:14:46][6846][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:46][6846][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:46][6846][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:46][6846][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:46][6846][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:46][6846][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:46][6846][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:46][6846][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:46][6846][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:46][6846][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:46][6846][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:46][6846][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:46][6846][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:46][6846][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:46][6846][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:46][6846][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:46][6846][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:46][6846][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:46][6846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:46][6846][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:46][6846][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:46][6846][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:46][6846][INFO][MAIN] Duplicate execution. +[28 11:14:49][6852][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:49][6852][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:49][6852][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:49][6852][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:49][6852][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:49][6852][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:49][6852][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:49][6852][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:49][6852][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:49][6852][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:49][6852][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:49][6852][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:49][6852][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:49][6852][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:49][6852][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:49][6852][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:49][6852][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:49][6852][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:49][6852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:49][6852][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:49][6852][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:49][6852][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:49][6852][INFO][MAIN] Duplicate execution. +[28 11:14:52][6858][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:52][6858][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:52][6858][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:52][6858][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:52][6858][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:52][6858][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:52][6858][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:52][6858][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:52][6858][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:52][6858][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:52][6858][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:52][6858][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:52][6858][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:52][6858][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:52][6858][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:52][6858][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:52][6858][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:52][6858][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:52][6858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:52][6858][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:52][6858][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:52][6858][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:52][6858][INFO][MAIN] Duplicate execution. +[28 11:14:55][6864][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:55][6864][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:55][6864][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:55][6864][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:55][6864][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:55][6864][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:55][6864][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:55][6864][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:55][6864][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:55][6864][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:55][6864][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:55][6864][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:55][6864][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:55][6864][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:55][6864][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:55][6864][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:55][6864][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:55][6864][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:55][6864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:55][6864][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:55][6864][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:55][6864][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:55][6864][INFO][MAIN] Duplicate execution. +[28 11:14:58][6870][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:14:58][6870][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:14:58][6870][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:14:58][6870][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:14:58][6870][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:14:58][6870][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:14:58][6870][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:14:58][6870][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:14:58][6870][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:14:58][6870][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:14:58][6870][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:14:58][6870][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:14:58][6870][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:14:58][6870][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:14:58][6870][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:14:58][6870][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:14:58][6870][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:14:58][6870][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:14:58][6870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:14:58][6870][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:14:58][6870][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:14:58][6870][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:14:58][6870][INFO][MAIN] Duplicate execution. +[28 11:15:01][6876][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:01][6876][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:01][6876][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:01][6876][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:01][6876][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:01][6876][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:01][6876][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:01][6876][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:01][6876][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:01][6876][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:01][6876][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:01][6876][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:01][6876][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:01][6876][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:01][6876][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:01][6876][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:01][6876][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:01][6876][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:01][6876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:01][6876][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:01][6876][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:01][6876][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:01][6876][INFO][MAIN] Duplicate execution. +[28 11:15:04][6882][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:04][6882][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:04][6882][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:04][6882][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:04][6882][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:04][6882][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:04][6882][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:04][6882][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:04][6882][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:04][6882][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:04][6882][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:04][6882][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:04][6882][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:04][6882][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:04][6882][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:04][6882][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:04][6882][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:04][6882][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:04][6882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:04][6882][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:04][6882][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:04][6882][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:04][6882][INFO][MAIN] Duplicate execution. +[28 11:15:07][6888][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:07][6888][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:07][6888][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:07][6888][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:07][6888][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:07][6888][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:07][6888][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:07][6888][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:07][6888][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:07][6888][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:07][6888][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:07][6888][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:07][6888][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:07][6888][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:07][6888][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:07][6888][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:07][6888][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:07][6888][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:07][6888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:07][6888][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:07][6888][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:07][6888][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:07][6888][INFO][MAIN] Duplicate execution. +[28 11:15:10][6894][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:10][6894][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:10][6894][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:10][6894][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:10][6894][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:10][6894][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:10][6894][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:10][6894][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:10][6894][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:10][6894][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:10][6894][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:10][6894][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:10][6894][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:10][6894][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:10][6894][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:10][6894][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:10][6894][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:10][6894][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:10][6894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:10][6894][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:10][6894][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:10][6894][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:10][6894][INFO][MAIN] Duplicate execution. +[28 11:15:13][6900][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:13][6900][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:13][6900][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:13][6900][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:13][6900][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:13][6900][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:13][6900][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:13][6900][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:13][6900][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:13][6900][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:13][6900][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:13][6900][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:13][6900][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:13][6900][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:13][6900][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:13][6900][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:13][6900][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:13][6900][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:13][6900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:13][6900][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:13][6900][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:13][6900][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:13][6900][INFO][MAIN] Duplicate execution. +[28 11:15:16][6906][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:16][6906][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:16][6906][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:16][6906][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:16][6906][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:16][6906][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:16][6906][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:16][6906][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:16][6906][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:16][6906][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:16][6906][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:16][6906][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:16][6906][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:16][6906][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:16][6906][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:16][6906][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:16][6906][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:16][6906][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:16][6906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:16][6906][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:16][6906][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:16][6906][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:16][6906][INFO][MAIN] Duplicate execution. +[28 11:15:19][6912][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:19][6912][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:19][6912][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:19][6912][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:19][6912][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:19][6912][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:19][6912][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:19][6912][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:19][6912][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:19][6912][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:19][6912][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:19][6912][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:19][6912][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:19][6912][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:19][6912][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:19][6912][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:19][6912][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:19][6912][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:19][6912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:19][6912][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:19][6912][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:19][6912][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:19][6912][INFO][MAIN] Duplicate execution. +[28 11:15:22][6918][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:22][6918][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:22][6918][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:22][6918][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:22][6918][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:22][6918][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:22][6918][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:22][6918][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:22][6918][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:22][6918][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:22][6918][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:22][6918][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:22][6918][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:22][6918][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:22][6918][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:22][6918][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:22][6918][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:22][6918][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:22][6918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:22][6918][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:22][6918][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:22][6918][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:22][6918][INFO][MAIN] Duplicate execution. +[28 11:15:25][6924][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:25][6924][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:25][6924][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:25][6924][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:25][6924][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:25][6924][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:25][6924][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:25][6924][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:25][6924][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:25][6924][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:25][6924][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:25][6924][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:25][6924][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:25][6924][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:25][6924][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:25][6924][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:25][6924][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:25][6924][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:25][6924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:25][6924][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:25][6924][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:25][6924][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:25][6924][INFO][MAIN] Duplicate execution. +[28 11:15:28][6930][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:28][6930][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:28][6930][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:28][6930][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:28][6930][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:28][6930][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:28][6930][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:28][6930][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:28][6930][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:28][6930][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:28][6930][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:28][6930][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:28][6930][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:28][6930][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:28][6930][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:28][6930][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:28][6930][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:28][6930][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:28][6930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:28][6930][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:28][6930][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:28][6930][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:28][6930][INFO][MAIN] Duplicate execution. +[28 11:15:31][6936][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:31][6936][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:31][6936][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:31][6936][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:31][6936][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:31][6936][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:31][6936][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:31][6936][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:31][6936][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:31][6936][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:31][6936][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:31][6936][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:31][6936][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:31][6936][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:31][6936][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:31][6936][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:31][6936][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:31][6936][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:31][6936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:31][6936][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:31][6936][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:31][6936][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:31][6936][INFO][MAIN] Duplicate execution. +[28 11:15:34][6942][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:34][6942][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:34][6942][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:34][6942][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:34][6942][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:34][6942][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:34][6942][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:34][6942][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:34][6942][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:34][6942][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:34][6942][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:34][6942][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:34][6942][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:34][6942][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:34][6942][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:34][6942][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:34][6942][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:34][6942][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:34][6942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:34][6942][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:34][6942][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:34][6942][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:34][6942][INFO][MAIN] Duplicate execution. +[28 11:15:37][6948][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:37][6948][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:37][6948][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:37][6948][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:37][6948][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:37][6948][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:37][6948][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:37][6948][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:37][6948][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:37][6948][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:37][6948][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:37][6948][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:37][6948][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:37][6948][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:37][6948][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:37][6948][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:37][6948][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:37][6948][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:37][6948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:37][6948][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:37][6948][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:37][6948][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:37][6948][INFO][MAIN] Duplicate execution. +[28 11:15:40][6954][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:40][6954][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:40][6954][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:40][6954][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:40][6954][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:40][6954][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:40][6954][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:40][6954][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:40][6954][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:40][6954][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:40][6954][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:40][6954][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:40][6954][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:40][6954][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:40][6954][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:40][6954][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:40][6954][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:40][6954][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:40][6954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:40][6954][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:40][6954][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:40][6954][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:40][6954][INFO][MAIN] Duplicate execution. +[28 11:15:43][6960][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:43][6960][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:43][6960][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:43][6960][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:43][6960][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:43][6960][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:43][6960][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:43][6960][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:43][6960][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:43][6960][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:43][6960][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:43][6960][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:43][6960][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:43][6960][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:43][6960][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:43][6960][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:43][6960][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:43][6960][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:43][6960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:43][6960][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:43][6960][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:43][6960][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:43][6960][INFO][MAIN] Duplicate execution. +[28 11:15:46][6966][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:46][6966][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:46][6966][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:46][6966][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:46][6966][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:46][6966][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:46][6966][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:46][6966][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:46][6966][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:46][6966][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:46][6966][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:46][6966][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:46][6966][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:46][6966][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:46][6966][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:46][6966][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:46][6966][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:46][6966][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:46][6966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:46][6966][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:46][6966][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:46][6966][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:46][6966][INFO][MAIN] Duplicate execution. +[28 11:15:49][6972][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:49][6972][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:49][6972][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:49][6972][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:49][6972][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:49][6972][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:49][6972][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:49][6972][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:49][6972][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:49][6972][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:49][6972][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:49][6972][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:49][6972][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:49][6972][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:49][6972][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:49][6972][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:49][6972][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:49][6972][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:49][6972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:49][6972][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:49][6972][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:49][6972][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:49][6972][INFO][MAIN] Duplicate execution. +[28 11:15:52][6978][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:52][6978][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:52][6978][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:52][6978][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:52][6978][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:52][6978][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:52][6978][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:52][6978][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:52][6978][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:52][6978][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:52][6978][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:52][6978][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:52][6978][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:52][6978][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:52][6978][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:52][6978][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:52][6978][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:52][6978][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:52][6978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:52][6978][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:52][6978][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:52][6978][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:52][6978][INFO][MAIN] Duplicate execution. +[28 11:15:55][6984][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:55][6984][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:55][6984][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:55][6984][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:55][6984][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:55][6984][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:55][6984][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:55][6984][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:55][6984][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:55][6984][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:55][6984][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:55][6984][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:55][6984][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:55][6984][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:55][6984][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:55][6984][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:55][6984][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:55][6984][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:55][6984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:55][6984][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:55][6984][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:55][6984][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:55][6984][INFO][MAIN] Duplicate execution. +[28 11:15:58][6990][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:15:58][6990][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:15:58][6990][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:15:58][6990][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:15:58][6990][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:15:58][6990][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:15:58][6990][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:15:58][6990][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:15:58][6990][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:15:58][6990][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:15:58][6990][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:15:58][6990][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:15:58][6990][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:15:58][6990][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:15:58][6990][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:15:58][6990][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:15:58][6990][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:15:58][6990][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:15:58][6990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:15:58][6990][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:15:58][6990][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:15:58][6990][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:15:58][6990][INFO][MAIN] Duplicate execution. +[28 11:16:01][6996][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:01][6996][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:01][6996][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:01][6996][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:01][6996][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:01][6996][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:01][6996][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:01][6996][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:01][6996][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:01][6996][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:01][6996][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:01][6996][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:01][6996][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:01][6996][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:01][6996][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:01][6996][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:01][6996][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:01][6996][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:01][6996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:01][6996][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:01][6996][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:01][6996][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:01][6996][INFO][MAIN] Duplicate execution. +[28 11:16:04][7002][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:04][7002][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:04][7002][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:04][7002][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:04][7002][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:04][7002][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:04][7002][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:04][7002][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:04][7002][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:04][7002][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:04][7002][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:04][7002][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:04][7002][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:04][7002][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:04][7002][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:04][7002][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:04][7002][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:04][7002][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:04][7002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:04][7002][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:04][7002][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:04][7002][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:04][7002][INFO][MAIN] Duplicate execution. +[28 11:16:07][7008][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:07][7008][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:07][7008][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:07][7008][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:07][7008][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:07][7008][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:07][7008][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:07][7008][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:07][7008][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:07][7008][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:07][7008][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:07][7008][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:07][7008][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:07][7008][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:07][7008][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:07][7008][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:07][7008][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:07][7008][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:07][7008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:07][7008][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:07][7008][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:07][7008][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:07][7008][INFO][MAIN] Duplicate execution. +[28 11:16:10][7014][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:10][7014][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:10][7014][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:10][7014][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:10][7014][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:10][7014][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:10][7014][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:10][7014][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:10][7014][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:10][7014][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:10][7014][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:10][7014][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:10][7014][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:10][7014][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:10][7014][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:10][7014][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:10][7014][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:10][7014][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:10][7014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:10][7014][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:10][7014][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:10][7014][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:10][7014][INFO][MAIN] Duplicate execution. +[28 11:16:13][7020][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:13][7020][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:13][7020][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:13][7020][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:13][7020][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:13][7020][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:13][7020][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:13][7020][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:13][7020][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:13][7020][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:13][7020][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:13][7020][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:13][7020][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:13][7020][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:13][7020][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:13][7020][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:13][7020][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:13][7020][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:13][7020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:13][7020][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:13][7020][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:13][7020][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:13][7020][INFO][MAIN] Duplicate execution. +[28 11:16:16][7026][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:16][7026][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:16][7026][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:16][7026][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:16][7026][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:16][7026][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:16][7026][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:16][7026][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:16][7026][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:16][7026][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:16][7026][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:16][7026][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:16][7026][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:16][7026][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:16][7026][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:16][7026][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:16][7026][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:16][7026][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:16][7026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:16][7026][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:16][7026][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:16][7026][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:16][7026][INFO][MAIN] Duplicate execution. +[28 11:16:19][7032][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:19][7032][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:19][7032][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:19][7032][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:19][7032][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:19][7032][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:19][7032][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:19][7032][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:19][7032][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:19][7032][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:19][7032][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:19][7032][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:19][7032][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:19][7032][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:19][7032][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:19][7032][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:19][7032][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:19][7032][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:19][7032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:19][7032][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:19][7032][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:19][7032][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:19][7032][INFO][MAIN] Duplicate execution. +[28 11:16:22][7038][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:22][7038][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:22][7038][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:22][7038][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:22][7038][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:22][7038][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:22][7038][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:22][7038][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:22][7038][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:22][7038][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:22][7038][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:22][7038][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:22][7038][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:22][7038][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:22][7038][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:22][7038][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:22][7038][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:22][7038][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:22][7038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:22][7038][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:22][7038][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:22][7038][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:22][7038][INFO][MAIN] Duplicate execution. +[28 11:16:25][7044][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:25][7044][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:25][7044][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:25][7044][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:25][7044][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:25][7044][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:25][7044][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:25][7044][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:25][7044][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:25][7044][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:25][7044][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:25][7044][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:25][7044][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:25][7044][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:25][7044][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:25][7044][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:25][7044][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:25][7044][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:25][7044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:25][7044][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:25][7044][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:25][7044][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:25][7044][INFO][MAIN] Duplicate execution. +[28 11:16:28][7050][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:28][7050][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:28][7050][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:28][7050][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:28][7050][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:28][7050][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:28][7050][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:28][7050][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:28][7050][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:28][7050][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:28][7050][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:28][7050][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:28][7050][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:28][7050][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:28][7050][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:28][7050][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:28][7050][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:28][7050][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:28][7050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:28][7050][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:28][7050][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:28][7050][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:28][7050][INFO][MAIN] Duplicate execution. +[28 11:16:31][7056][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:31][7056][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:31][7056][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:31][7056][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:31][7056][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:31][7056][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:31][7056][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:31][7056][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:31][7056][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:31][7056][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:31][7056][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:31][7056][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:31][7056][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:31][7056][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:31][7056][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:31][7056][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:31][7056][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:31][7056][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:31][7056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:31][7056][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:31][7056][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:31][7056][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:31][7056][INFO][MAIN] Duplicate execution. +[28 11:16:34][7062][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:34][7062][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:34][7062][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:34][7062][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:34][7062][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:34][7062][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:34][7062][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:34][7062][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:34][7062][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:34][7062][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:34][7062][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:34][7062][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:34][7062][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:34][7062][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:34][7062][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:34][7062][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:34][7062][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:34][7062][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:34][7062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:34][7062][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:34][7062][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:34][7062][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:34][7062][INFO][MAIN] Duplicate execution. +[28 11:16:37][7068][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:37][7068][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:37][7068][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:37][7068][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:37][7068][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:37][7068][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:37][7068][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:37][7068][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:37][7068][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:37][7068][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:37][7068][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:37][7068][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:37][7068][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:37][7068][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:37][7068][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:37][7068][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:37][7068][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:37][7068][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:37][7068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:37][7068][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:37][7068][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:37][7068][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:37][7068][INFO][MAIN] Duplicate execution. +[28 11:16:40][7074][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:40][7074][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:40][7074][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:40][7074][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:40][7074][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:40][7074][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:40][7074][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:40][7074][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:40][7074][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:40][7074][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:40][7074][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:40][7074][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:40][7074][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:40][7074][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:40][7074][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:40][7074][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:40][7074][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:40][7074][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:40][7074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:40][7074][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:40][7074][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:40][7074][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:40][7074][INFO][MAIN] Duplicate execution. +[28 11:16:43][7080][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:43][7080][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:43][7080][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:43][7080][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:43][7080][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:43][7080][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:43][7080][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:43][7080][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:43][7080][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:43][7080][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:43][7080][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:43][7080][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:43][7080][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:43][7080][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:43][7080][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:43][7080][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:43][7080][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:43][7080][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:43][7080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:43][7080][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:43][7080][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:43][7080][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:43][7080][INFO][MAIN] Duplicate execution. +[28 11:16:46][7086][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:46][7086][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:46][7086][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:46][7086][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:46][7086][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:46][7086][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:46][7086][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:46][7086][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:46][7086][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:46][7086][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:46][7086][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:46][7086][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:46][7086][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:46][7086][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:46][7086][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:46][7086][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:46][7086][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:46][7086][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:46][7086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:46][7086][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:46][7086][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:46][7086][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:46][7086][INFO][MAIN] Duplicate execution. +[28 11:16:49][7092][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:49][7092][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:49][7092][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:49][7092][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:49][7092][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:49][7092][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:49][7092][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:49][7092][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:49][7092][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:49][7092][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:49][7092][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:49][7092][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:49][7092][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:49][7092][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:49][7092][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:49][7092][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:49][7092][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:49][7092][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:49][7092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:49][7092][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:49][7092][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:49][7092][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:49][7092][INFO][MAIN] Duplicate execution. +[28 11:16:52][7098][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:52][7098][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:52][7098][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:52][7098][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:52][7098][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:52][7098][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:52][7098][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:52][7098][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:52][7098][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:52][7098][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:52][7098][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:52][7098][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:52][7098][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:52][7098][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:52][7098][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:52][7098][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:52][7098][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:52][7098][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:52][7098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:52][7098][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:52][7098][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:52][7098][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:52][7098][INFO][MAIN] Duplicate execution. +[28 11:16:55][7104][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:55][7104][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:55][7104][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:55][7104][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:55][7104][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:55][7104][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:55][7104][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:55][7104][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:55][7104][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:55][7104][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:55][7104][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:55][7104][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:55][7104][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:55][7104][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:55][7104][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:55][7104][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:55][7104][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:55][7104][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:55][7104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:55][7104][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:55][7104][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:55][7104][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:55][7104][INFO][MAIN] Duplicate execution. +[28 11:16:58][7110][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:16:58][7110][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:16:58][7110][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:16:58][7110][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:16:58][7110][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:16:58][7110][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:16:58][7110][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:16:58][7110][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:16:58][7110][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:16:58][7110][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:16:58][7110][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:16:58][7110][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:16:58][7110][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:16:58][7110][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:16:58][7110][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:16:58][7110][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:16:58][7110][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:16:58][7110][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:16:58][7110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:16:58][7110][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:16:58][7110][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:16:58][7110][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:16:58][7110][INFO][MAIN] Duplicate execution. +[28 11:17:01][7116][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:01][7116][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:01][7116][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:01][7116][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:01][7116][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:01][7116][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:01][7116][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:01][7116][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:01][7116][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:01][7116][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:01][7116][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:01][7116][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:01][7116][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:01][7116][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:01][7116][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:01][7116][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:01][7116][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:01][7116][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:01][7116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:01][7116][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:01][7116][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:01][7116][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:01][7116][INFO][MAIN] Duplicate execution. +[28 11:17:04][7122][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:04][7122][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:04][7122][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:04][7122][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:04][7122][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:04][7122][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:04][7122][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:04][7122][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:04][7122][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:04][7122][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:04][7122][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:04][7122][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:04][7122][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:04][7122][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:04][7122][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:04][7122][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:04][7122][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:04][7122][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:04][7122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:04][7122][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:04][7122][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:04][7122][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:04][7122][INFO][MAIN] Duplicate execution. +[28 11:17:07][7128][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:07][7128][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:07][7128][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:07][7128][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:07][7128][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:07][7128][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:07][7128][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:07][7128][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:07][7128][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:07][7128][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:07][7128][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:07][7128][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:07][7128][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:07][7128][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:07][7128][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:07][7128][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:07][7128][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:07][7128][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:07][7128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:07][7128][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:07][7128][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:07][7128][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:07][7128][INFO][MAIN] Duplicate execution. +[28 11:17:10][7134][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:10][7134][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:10][7134][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:10][7134][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:10][7134][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:10][7134][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:10][7134][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:10][7134][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:10][7134][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:10][7134][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:10][7134][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:10][7134][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:10][7134][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:10][7134][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:10][7134][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:10][7134][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:10][7134][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:10][7134][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:10][7134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:10][7134][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:10][7134][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:10][7134][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:10][7134][INFO][MAIN] Duplicate execution. +[28 11:17:13][7140][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:13][7140][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:13][7140][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:13][7140][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:13][7140][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:13][7140][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:13][7140][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:13][7140][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:13][7140][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:13][7140][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:13][7140][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:13][7140][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:13][7140][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:13][7140][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:13][7140][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:13][7140][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:13][7140][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:13][7140][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:13][7140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:13][7140][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:13][7140][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:13][7140][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:13][7140][INFO][MAIN] Duplicate execution. +[28 11:17:16][7146][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:16][7146][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:16][7146][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:16][7146][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:16][7146][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:16][7146][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:16][7146][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:16][7146][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:16][7146][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:16][7146][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:16][7146][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:16][7146][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:16][7146][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:16][7146][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:16][7146][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:16][7146][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:16][7146][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:16][7146][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:16][7146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:16][7146][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:16][7146][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:16][7146][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:16][7146][INFO][MAIN] Duplicate execution. +[28 11:17:19][7152][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:19][7152][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:19][7152][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:19][7152][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:19][7152][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:19][7152][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:19][7152][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:19][7152][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:19][7152][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:19][7152][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:19][7152][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:19][7152][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:19][7152][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:19][7152][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:19][7152][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:19][7152][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:19][7152][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:19][7152][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:19][7152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:19][7152][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:19][7152][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:19][7152][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:19][7152][INFO][MAIN] Duplicate execution. +[28 11:17:22][7158][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:22][7158][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:22][7158][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:22][7158][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:22][7158][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:22][7158][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:22][7158][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:22][7158][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:22][7158][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:22][7158][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:22][7158][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:22][7158][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:22][7158][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:22][7158][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:22][7158][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:22][7158][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:22][7158][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:22][7158][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:22][7158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:22][7158][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:22][7158][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:22][7158][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:22][7158][INFO][MAIN] Duplicate execution. +[28 11:17:25][7164][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:25][7164][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:25][7164][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:25][7164][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:25][7164][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:25][7164][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:25][7164][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:25][7164][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:25][7164][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:25][7164][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:25][7164][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:25][7164][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:25][7164][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:25][7164][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:25][7164][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:25][7164][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:25][7164][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:25][7164][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:25][7164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:25][7164][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:25][7164][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:25][7164][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:25][7164][INFO][MAIN] Duplicate execution. +[28 11:17:28][7170][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:28][7170][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:28][7170][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:28][7170][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:28][7170][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:28][7170][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:28][7170][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:28][7170][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:28][7170][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:28][7170][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:28][7170][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:28][7170][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:28][7170][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:28][7170][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:28][7170][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:28][7170][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:28][7170][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:28][7170][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:28][7170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:28][7170][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:28][7170][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:28][7170][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:28][7170][INFO][MAIN] Duplicate execution. +[28 11:17:31][7176][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:31][7176][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:31][7176][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:31][7176][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:31][7176][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:31][7176][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:31][7176][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:31][7176][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:31][7176][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:31][7176][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:31][7176][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:31][7176][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:31][7176][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:31][7176][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:31][7176][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:31][7176][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:31][7176][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:31][7176][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:31][7176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:31][7176][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:31][7176][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:31][7176][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:31][7176][INFO][MAIN] Duplicate execution. +[28 11:17:34][7182][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:34][7182][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:34][7182][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:34][7182][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:34][7182][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:34][7182][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:34][7182][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:34][7182][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:34][7182][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:34][7182][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:34][7182][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:34][7182][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:34][7182][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:34][7182][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:34][7182][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:34][7182][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:34][7182][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:34][7182][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:34][7182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:34][7182][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:34][7182][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:34][7182][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:34][7182][INFO][MAIN] Duplicate execution. +[28 11:17:37][7188][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:37][7188][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:37][7188][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:37][7188][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:37][7188][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:37][7188][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:37][7188][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:37][7188][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:37][7188][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:37][7188][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:37][7188][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:37][7188][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:37][7188][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:37][7188][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:37][7188][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:37][7188][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:37][7188][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:37][7188][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:37][7188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:37][7188][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:37][7188][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:37][7188][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:37][7188][INFO][MAIN] Duplicate execution. +[28 11:17:40][7194][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:40][7194][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:40][7194][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:40][7194][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:40][7194][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:40][7194][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:40][7194][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:40][7194][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:40][7194][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:40][7194][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:40][7194][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:40][7194][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:40][7194][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:40][7194][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:40][7194][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:40][7194][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:40][7194][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:40][7194][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:40][7194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:40][7194][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:40][7194][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:40][7194][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:40][7194][INFO][MAIN] Duplicate execution. +[28 11:17:43][7200][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:43][7200][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:43][7200][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:43][7200][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:43][7200][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:43][7200][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:43][7200][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:43][7200][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:43][7200][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:43][7200][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:43][7200][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:43][7200][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:43][7200][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:43][7200][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:43][7200][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:43][7200][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:43][7200][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:43][7200][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:43][7200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:43][7200][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:43][7200][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:43][7200][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:43][7200][INFO][MAIN] Duplicate execution. +[28 11:17:46][7206][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:46][7206][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:46][7206][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:46][7206][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:46][7206][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:46][7206][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:46][7206][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:46][7206][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:46][7206][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:46][7206][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:46][7206][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:46][7206][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:46][7206][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:46][7206][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:46][7206][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:46][7206][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:46][7206][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:46][7206][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:46][7206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:46][7206][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:46][7206][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:46][7206][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:46][7206][INFO][MAIN] Duplicate execution. +[28 11:17:49][7212][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:49][7212][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:49][7212][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:49][7212][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:49][7212][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:49][7212][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:49][7212][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:49][7212][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:49][7212][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:49][7212][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:49][7212][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:49][7212][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:49][7212][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:49][7212][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:49][7212][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:49][7212][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:49][7212][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:49][7212][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:49][7212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:49][7212][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:49][7212][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:49][7212][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:49][7212][INFO][MAIN] Duplicate execution. +[28 11:17:52][7218][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:52][7218][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:52][7218][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:52][7218][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:52][7218][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:52][7218][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:52][7218][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:52][7218][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:52][7218][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:52][7218][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:52][7218][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:52][7218][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:52][7218][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:52][7218][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:52][7218][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:52][7218][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:52][7218][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:52][7218][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:52][7218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:52][7218][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:52][7218][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:52][7218][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:52][7218][INFO][MAIN] Duplicate execution. +[28 11:17:55][7224][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:55][7224][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:55][7224][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:55][7224][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:55][7224][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:55][7224][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:55][7224][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:55][7224][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:55][7224][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:55][7224][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:55][7224][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:55][7224][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:55][7224][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:55][7224][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:55][7224][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:55][7224][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:55][7224][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:55][7224][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:55][7224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:55][7224][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:55][7224][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:55][7224][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:55][7224][INFO][MAIN] Duplicate execution. +[28 11:17:58][7230][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:17:58][7230][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:17:58][7230][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:17:58][7230][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:17:58][7230][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:17:58][7230][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:17:58][7230][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:17:58][7230][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:17:58][7230][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:17:58][7230][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:17:58][7230][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:17:58][7230][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:17:58][7230][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:17:58][7230][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:17:58][7230][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:17:58][7230][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:17:58][7230][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:17:58][7230][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:17:58][7230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:17:58][7230][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:17:58][7230][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:17:58][7230][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:17:58][7230][INFO][MAIN] Duplicate execution. +[28 11:18:01][7236][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:01][7236][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:01][7236][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:01][7236][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:01][7236][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:01][7236][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:01][7236][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:01][7236][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:01][7236][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:01][7236][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:01][7236][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:01][7236][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:01][7236][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:01][7236][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:01][7236][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:01][7236][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:01][7236][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:01][7236][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:01][7236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:01][7236][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:01][7236][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:01][7236][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:01][7236][INFO][MAIN] Duplicate execution. +[28 11:18:04][7242][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:04][7242][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:04][7242][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:04][7242][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:04][7242][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:04][7242][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:04][7242][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:04][7242][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:04][7242][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:04][7242][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:04][7242][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:04][7242][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:04][7242][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:04][7242][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:04][7242][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:04][7242][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:04][7242][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:04][7242][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:04][7242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:04][7242][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:04][7242][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:04][7242][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:04][7242][INFO][MAIN] Duplicate execution. +[28 11:18:07][7248][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:07][7248][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:07][7248][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:07][7248][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:07][7248][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:07][7248][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:07][7248][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:07][7248][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:07][7248][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:07][7248][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:07][7248][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:07][7248][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:07][7248][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:07][7248][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:07][7248][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:07][7248][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:07][7248][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:07][7248][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:07][7248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:07][7248][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:07][7248][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:07][7248][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:07][7248][INFO][MAIN] Duplicate execution. +[28 11:18:10][7254][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:10][7254][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:10][7254][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:10][7254][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:10][7254][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:10][7254][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:10][7254][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:10][7254][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:10][7254][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:10][7254][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:10][7254][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:10][7254][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:10][7254][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:10][7254][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:10][7254][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:10][7254][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:10][7254][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:10][7254][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:10][7254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:10][7254][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:10][7254][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:10][7254][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:10][7254][INFO][MAIN] Duplicate execution. +[28 11:18:13][7260][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:13][7260][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:13][7260][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:13][7260][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:13][7260][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:13][7260][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:13][7260][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:13][7260][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:13][7260][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:13][7260][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:13][7260][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:13][7260][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:13][7260][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:13][7260][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:13][7260][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:13][7260][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:13][7260][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:13][7260][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:13][7260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:13][7260][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:13][7260][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:13][7260][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:13][7260][INFO][MAIN] Duplicate execution. +[28 11:18:16][7266][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:16][7266][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:16][7266][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:16][7266][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:16][7266][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:16][7266][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:16][7266][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:16][7266][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:16][7266][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:16][7266][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:16][7266][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:16][7266][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:16][7266][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:16][7266][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:16][7266][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:16][7266][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:16][7266][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:16][7266][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:16][7266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:16][7266][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:16][7266][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:16][7266][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:16][7266][INFO][MAIN] Duplicate execution. +[28 11:18:19][7272][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:19][7272][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:19][7272][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:19][7272][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:19][7272][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:19][7272][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:19][7272][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:19][7272][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:19][7272][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:19][7272][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:19][7272][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:19][7272][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:19][7272][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:19][7272][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:19][7272][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:19][7272][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:19][7272][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:19][7272][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:19][7272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:19][7272][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:19][7272][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:19][7272][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:19][7272][INFO][MAIN] Duplicate execution. +[28 11:18:22][7278][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:22][7278][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:22][7278][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:22][7278][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:22][7278][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:22][7278][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:22][7278][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:22][7278][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:22][7278][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:22][7278][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:22][7278][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:22][7278][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:22][7278][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:22][7278][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:22][7278][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:22][7278][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:22][7278][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:22][7278][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:22][7278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:22][7278][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:22][7278][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:22][7278][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:22][7278][INFO][MAIN] Duplicate execution. +[28 11:18:25][7284][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:25][7284][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:25][7284][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:25][7284][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:25][7284][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:25][7284][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:25][7284][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:25][7284][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:25][7284][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:25][7284][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:25][7284][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:25][7284][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:25][7284][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:25][7284][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:25][7284][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:25][7284][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:25][7284][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:25][7284][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:25][7284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:25][7284][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:25][7284][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:25][7284][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:25][7284][INFO][MAIN] Duplicate execution. +[28 11:18:28][7290][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:28][7290][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:28][7290][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:28][7290][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:28][7290][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:28][7290][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:28][7290][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:28][7290][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:28][7290][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:28][7290][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:28][7290][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:28][7290][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:28][7290][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:28][7290][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:28][7290][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:28][7290][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:28][7290][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:28][7290][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:28][7290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:28][7290][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:28][7290][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:28][7290][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:28][7290][INFO][MAIN] Duplicate execution. +[28 11:18:31][7296][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:31][7296][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:31][7296][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:31][7296][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:31][7296][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:31][7296][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:31][7296][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:31][7296][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:31][7296][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:31][7296][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:31][7296][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:31][7296][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:31][7296][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:31][7296][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:31][7296][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:31][7296][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:31][7296][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:31][7296][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:31][7296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:31][7296][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:31][7296][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:31][7296][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:31][7296][INFO][MAIN] Duplicate execution. +[28 11:18:34][7302][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:34][7302][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:34][7302][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:34][7302][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:34][7302][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:34][7302][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:34][7302][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:34][7302][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:34][7302][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:34][7302][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:34][7302][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:34][7302][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:34][7302][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:34][7302][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:34][7302][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:34][7302][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:34][7302][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:34][7302][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:34][7302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:34][7302][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:34][7302][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:34][7302][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:34][7302][INFO][MAIN] Duplicate execution. +[28 11:18:37][7308][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:37][7308][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:37][7308][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:37][7308][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:37][7308][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:37][7308][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:37][7308][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:37][7308][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:37][7308][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:37][7308][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:37][7308][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:37][7308][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:37][7308][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:37][7308][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:37][7308][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:37][7308][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:37][7308][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:37][7308][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:37][7308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:37][7308][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:37][7308][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:37][7308][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:37][7308][INFO][MAIN] Duplicate execution. +[28 11:18:40][7314][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:40][7314][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:40][7314][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:40][7314][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:40][7314][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:40][7314][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:40][7314][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:40][7314][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:40][7314][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:40][7314][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:40][7314][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:40][7314][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:40][7314][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:40][7314][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:40][7314][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:40][7314][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:40][7314][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:40][7314][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:40][7314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:40][7314][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:40][7314][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:40][7314][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:40][7314][INFO][MAIN] Duplicate execution. +[28 11:18:43][7320][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:43][7320][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:43][7320][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:43][7320][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:43][7320][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:43][7320][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:43][7320][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:43][7320][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:43][7320][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:43][7320][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:43][7320][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:43][7320][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:43][7320][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:43][7320][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:43][7320][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:43][7320][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:43][7320][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:43][7320][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:43][7320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:43][7320][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:43][7320][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:43][7320][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:43][7320][INFO][MAIN] Duplicate execution. +[28 11:18:46][7326][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:46][7326][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:46][7326][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:46][7326][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:46][7326][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:46][7326][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:46][7326][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:46][7326][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:46][7326][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:46][7326][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:46][7326][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:46][7326][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:46][7326][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:46][7326][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:46][7326][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:46][7326][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:46][7326][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:46][7326][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:46][7326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:46][7326][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:46][7326][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:46][7326][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:46][7326][INFO][MAIN] Duplicate execution. +[28 11:18:49][7332][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:49][7332][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:49][7332][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:49][7332][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:49][7332][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:49][7332][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:49][7332][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:49][7332][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:49][7332][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:49][7332][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:49][7332][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:49][7332][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:49][7332][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:49][7332][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:49][7332][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:49][7332][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:49][7332][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:49][7332][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:49][7332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:49][7332][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:49][7332][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:49][7332][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:49][7332][INFO][MAIN] Duplicate execution. +[28 11:18:52][7338][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:52][7338][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:52][7338][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:52][7338][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:52][7338][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:52][7338][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:52][7338][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:52][7338][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:52][7338][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:52][7338][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:52][7338][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:52][7338][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:52][7338][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:52][7338][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:52][7338][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:52][7338][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:52][7338][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:52][7338][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:52][7338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:52][7338][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:52][7338][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:52][7338][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:52][7338][INFO][MAIN] Duplicate execution. +[28 11:18:55][7344][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:55][7344][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:55][7344][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:55][7344][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:55][7344][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:55][7344][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:55][7344][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:55][7344][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:55][7344][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:55][7344][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:55][7344][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:55][7344][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:55][7344][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:55][7344][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:55][7344][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:55][7344][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:55][7344][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:55][7344][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:55][7344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:55][7344][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:55][7344][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:55][7344][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:55][7344][INFO][MAIN] Duplicate execution. +[28 11:18:58][7350][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:18:58][7350][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:18:58][7350][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:18:58][7350][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:18:58][7350][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:18:58][7350][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:18:58][7350][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:18:58][7350][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:18:58][7350][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:18:58][7350][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:18:58][7350][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:18:58][7350][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:18:58][7350][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:18:58][7350][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:18:58][7350][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:18:58][7350][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:18:58][7350][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:18:58][7350][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:18:58][7350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:18:58][7350][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:18:58][7350][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:18:58][7350][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:18:58][7350][INFO][MAIN] Duplicate execution. +[28 11:19:01][7356][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:01][7356][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:01][7356][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:01][7356][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:01][7356][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:01][7356][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:01][7356][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:01][7356][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:01][7356][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:01][7356][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:01][7356][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:01][7356][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:01][7356][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:01][7356][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:01][7356][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:01][7356][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:01][7356][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:01][7356][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:01][7356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:01][7356][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:01][7356][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:01][7356][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:01][7356][INFO][MAIN] Duplicate execution. +[28 11:19:04][7362][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:04][7362][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:04][7362][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:04][7362][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:04][7362][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:04][7362][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:04][7362][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:04][7362][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:04][7362][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:04][7362][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:04][7362][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:04][7362][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:04][7362][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:04][7362][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:04][7362][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:04][7362][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:04][7362][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:04][7362][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:04][7362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:04][7362][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:04][7362][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:04][7362][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:04][7362][INFO][MAIN] Duplicate execution. +[28 11:19:07][7368][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:07][7368][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:07][7368][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:07][7368][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:07][7368][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:07][7368][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:07][7368][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:07][7368][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:07][7368][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:07][7368][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:07][7368][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:07][7368][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:07][7368][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:07][7368][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:07][7368][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:07][7368][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:07][7368][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:07][7368][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:07][7368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:07][7368][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:07][7368][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:07][7368][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:07][7368][INFO][MAIN] Duplicate execution. +[28 11:19:10][7374][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:10][7374][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:10][7374][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:10][7374][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:10][7374][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:10][7374][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:10][7374][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:10][7374][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:10][7374][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:10][7374][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:10][7374][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:10][7374][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:10][7374][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:10][7374][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:10][7374][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:10][7374][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:10][7374][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:10][7374][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:10][7374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:10][7374][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:10][7374][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:10][7374][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:10][7374][INFO][MAIN] Duplicate execution. +[28 11:19:13][7380][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:13][7380][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:13][7380][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:13][7380][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:13][7380][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:13][7380][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:13][7380][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:13][7380][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:13][7380][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:13][7380][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:13][7380][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:13][7380][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:13][7380][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:13][7380][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:13][7380][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:13][7380][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:13][7380][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:13][7380][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:13][7380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:13][7380][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:13][7380][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:13][7380][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:13][7380][INFO][MAIN] Duplicate execution. +[28 11:19:16][7386][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:16][7386][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:16][7386][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:16][7386][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:16][7386][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:16][7386][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:16][7386][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:16][7386][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:16][7386][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:16][7386][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:16][7386][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:16][7386][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:16][7386][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:16][7386][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:16][7386][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:16][7386][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:16][7386][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:16][7386][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:16][7386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:16][7386][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:16][7386][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:16][7386][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:16][7386][INFO][MAIN] Duplicate execution. +[28 11:19:19][7392][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:19][7392][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:19][7392][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:19][7392][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:19][7392][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:19][7392][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:19][7392][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:19][7392][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:19][7392][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:19][7392][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:19][7392][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:19][7392][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:19][7392][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:19][7392][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:19][7392][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:19][7392][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:19][7392][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:19][7392][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:19][7392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:19][7392][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:19][7392][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:19][7392][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:19][7392][INFO][MAIN] Duplicate execution. +[28 11:19:22][7398][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:22][7398][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:22][7398][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:22][7398][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:22][7398][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:22][7398][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:22][7398][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:22][7398][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:22][7398][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:22][7398][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:22][7398][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:22][7398][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:22][7398][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:22][7398][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:22][7398][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:22][7398][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:22][7398][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:22][7398][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:22][7398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:22][7398][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:22][7398][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:22][7398][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:22][7398][INFO][MAIN] Duplicate execution. +[28 11:19:25][7404][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:25][7404][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:25][7404][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:25][7404][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:25][7404][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:25][7404][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:25][7404][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:25][7404][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:25][7404][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:25][7404][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:25][7404][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:25][7404][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:25][7404][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:25][7404][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:25][7404][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:25][7404][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:25][7404][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:25][7404][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:25][7404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:25][7404][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:25][7404][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:25][7404][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:25][7404][INFO][MAIN] Duplicate execution. +[28 11:19:28][7410][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:28][7410][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:28][7410][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:28][7410][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:28][7410][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:28][7410][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:28][7410][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:28][7410][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:28][7410][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:28][7410][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:28][7410][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:28][7410][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:28][7410][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:28][7410][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:28][7410][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:28][7410][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:28][7410][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:28][7410][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:28][7410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:28][7410][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:28][7410][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:28][7410][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:28][7410][INFO][MAIN] Duplicate execution. +[28 11:19:31][7416][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:31][7416][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:31][7416][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:31][7416][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:31][7416][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:31][7416][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:31][7416][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:31][7416][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:31][7416][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:31][7416][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:31][7416][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:31][7416][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:31][7416][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:31][7416][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:31][7416][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:31][7416][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:31][7416][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:31][7416][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:31][7416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:31][7416][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:31][7416][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:31][7416][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:31][7416][INFO][MAIN] Duplicate execution. +[28 11:19:34][7422][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:34][7422][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:34][7422][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:34][7422][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:34][7422][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:34][7422][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:34][7422][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:34][7422][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:34][7422][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:34][7422][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:34][7422][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:34][7422][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:34][7422][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:34][7422][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:34][7422][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:34][7422][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:34][7422][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:34][7422][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:34][7422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:34][7422][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:34][7422][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:34][7422][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:34][7422][INFO][MAIN] Duplicate execution. +[28 11:19:37][7428][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:37][7428][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:37][7428][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:37][7428][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:37][7428][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:37][7428][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:37][7428][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:37][7428][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:37][7428][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:37][7428][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:37][7428][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:37][7428][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:37][7428][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:37][7428][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:37][7428][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:37][7428][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:37][7428][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:37][7428][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:37][7428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:37][7428][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:37][7428][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:37][7428][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:37][7428][INFO][MAIN] Duplicate execution. +[28 11:19:40][7434][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:40][7434][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:40][7434][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:40][7434][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:40][7434][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:40][7434][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:40][7434][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:40][7434][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:40][7434][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:40][7434][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:40][7434][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:40][7434][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:40][7434][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:40][7434][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:40][7434][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:40][7434][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:40][7434][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:40][7434][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:40][7434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:40][7434][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:40][7434][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:40][7434][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:40][7434][INFO][MAIN] Duplicate execution. +[28 11:19:43][7440][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:43][7440][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:43][7440][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:43][7440][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:43][7440][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:43][7440][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:43][7440][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:43][7440][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:43][7440][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:43][7440][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:43][7440][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:43][7440][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:43][7440][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:43][7440][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:43][7440][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:43][7440][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:43][7440][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:43][7440][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:43][7440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:43][7440][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:43][7440][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:43][7440][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:43][7440][INFO][MAIN] Duplicate execution. +[28 11:19:46][7446][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:46][7446][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:46][7446][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:46][7446][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:46][7446][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:46][7446][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:46][7446][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:46][7446][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:46][7446][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:46][7446][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:46][7446][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:46][7446][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:46][7446][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:46][7446][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:46][7446][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:46][7446][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:46][7446][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:46][7446][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:46][7446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:46][7446][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:46][7446][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:46][7446][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:46][7446][INFO][MAIN] Duplicate execution. +[28 11:19:49][7452][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:49][7452][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:49][7452][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:49][7452][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:49][7452][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:49][7452][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:49][7452][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:49][7452][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:49][7452][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:49][7452][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:49][7452][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:49][7452][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:49][7452][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:49][7452][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:49][7452][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:49][7452][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:49][7452][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:49][7452][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:49][7452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:49][7452][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:49][7452][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:49][7452][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:49][7452][INFO][MAIN] Duplicate execution. +[28 11:19:52][7458][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:52][7458][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:52][7458][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:52][7458][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:52][7458][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:52][7458][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:52][7458][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:52][7458][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:52][7458][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:52][7458][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:52][7458][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:52][7458][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:52][7458][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:52][7458][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:52][7458][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:52][7458][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:52][7458][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:52][7458][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:52][7458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:52][7458][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:52][7458][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:52][7458][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:52][7458][INFO][MAIN] Duplicate execution. +[28 11:19:55][7464][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:55][7464][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:55][7464][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:55][7464][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:55][7464][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:55][7464][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:55][7464][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:55][7464][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:55][7464][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:55][7464][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:55][7464][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:55][7464][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:55][7464][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:55][7464][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:55][7464][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:55][7464][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:55][7464][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:55][7464][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:55][7464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:55][7464][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:55][7464][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:55][7464][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:55][7464][INFO][MAIN] Duplicate execution. +[28 11:19:58][7470][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:19:58][7470][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:19:58][7470][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:19:58][7470][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:19:58][7470][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:19:58][7470][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:19:58][7470][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:19:58][7470][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:19:58][7470][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:19:58][7470][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:19:58][7470][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:19:58][7470][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:19:58][7470][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:19:58][7470][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:19:58][7470][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:19:58][7470][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:19:58][7470][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:19:58][7470][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:19:58][7470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:19:58][7470][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:19:58][7470][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:19:58][7470][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:19:58][7470][INFO][MAIN] Duplicate execution. +[28 11:20:01][7476][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:01][7476][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:01][7476][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:01][7476][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:01][7476][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:01][7476][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:01][7476][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:01][7476][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:01][7476][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:01][7476][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:01][7476][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:01][7476][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:01][7476][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:01][7476][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:01][7476][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:01][7476][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:01][7476][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:01][7476][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:01][7476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:01][7476][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:01][7476][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:01][7476][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:01][7476][INFO][MAIN] Duplicate execution. +[28 11:20:04][7482][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:04][7482][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:04][7482][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:04][7482][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:04][7482][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:04][7482][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:04][7482][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:04][7482][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:04][7482][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:04][7482][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:04][7482][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:04][7482][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:04][7482][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:04][7482][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:04][7482][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:04][7482][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:04][7482][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:04][7482][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:04][7482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:04][7482][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:04][7482][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:04][7482][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:04][7482][INFO][MAIN] Duplicate execution. +[28 11:20:07][7488][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:07][7488][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:07][7488][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:07][7488][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:07][7488][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:07][7488][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:07][7488][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:07][7488][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:07][7488][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:07][7488][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:07][7488][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:07][7488][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:07][7488][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:07][7488][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:07][7488][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:07][7488][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:07][7488][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:07][7488][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:07][7488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:07][7488][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:07][7488][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:07][7488][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:07][7488][INFO][MAIN] Duplicate execution. +[28 11:20:10][7494][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:10][7494][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:10][7494][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:10][7494][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:10][7494][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:10][7494][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:10][7494][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:10][7494][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:10][7494][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:10][7494][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:10][7494][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:10][7494][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:10][7494][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:10][7494][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:10][7494][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:10][7494][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:10][7494][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:10][7494][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:10][7494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:10][7494][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:10][7494][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:10][7494][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:10][7494][INFO][MAIN] Duplicate execution. +[28 11:20:13][7500][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:13][7500][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:13][7500][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:13][7500][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:13][7500][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:13][7500][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:13][7500][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:13][7500][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:13][7500][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:13][7500][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:13][7500][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:13][7500][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:13][7500][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:13][7500][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:13][7500][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:13][7500][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:13][7500][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:13][7500][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:13][7500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:13][7500][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:13][7500][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:13][7500][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:13][7500][INFO][MAIN] Duplicate execution. +[28 11:20:16][7506][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:16][7506][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:16][7506][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:16][7506][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:16][7506][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:16][7506][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:16][7506][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:16][7506][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:16][7506][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:16][7506][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:16][7506][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:16][7506][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:16][7506][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:16][7506][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:16][7506][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:16][7506][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:16][7506][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:16][7506][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:16][7506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:16][7506][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:16][7506][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:16][7506][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:16][7506][INFO][MAIN] Duplicate execution. +[28 11:20:19][7512][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:19][7512][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:19][7512][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:19][7512][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:19][7512][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:19][7512][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:19][7512][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:19][7512][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:19][7512][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:19][7512][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:19][7512][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:19][7512][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:19][7512][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:19][7512][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:19][7512][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:19][7512][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:19][7512][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:19][7512][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:19][7512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:19][7512][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:19][7512][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:19][7512][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:19][7512][INFO][MAIN] Duplicate execution. +[28 11:20:22][7518][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:22][7518][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:22][7518][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:22][7518][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:22][7518][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:22][7518][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:22][7518][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:22][7518][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:22][7518][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:22][7518][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:22][7518][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:22][7518][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:22][7518][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:22][7518][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:22][7518][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:22][7518][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:22][7518][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:22][7518][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:22][7518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:22][7518][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:22][7518][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:22][7518][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:22][7518][INFO][MAIN] Duplicate execution. +[28 11:20:25][7524][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:25][7524][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:25][7524][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:25][7524][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:25][7524][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:25][7524][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:25][7524][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:25][7524][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:25][7524][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:25][7524][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:25][7524][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:25][7524][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:25][7524][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:25][7524][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:25][7524][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:25][7524][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:25][7524][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:25][7524][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:25][7524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:25][7524][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:25][7524][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:25][7524][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:25][7524][INFO][MAIN] Duplicate execution. +[28 11:20:28][7530][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:28][7530][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:28][7530][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:28][7530][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:28][7530][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:28][7530][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:28][7530][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:28][7530][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:28][7530][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:28][7530][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:28][7530][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:28][7530][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:28][7530][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:28][7530][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:28][7530][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:28][7530][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:28][7530][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:28][7530][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:28][7530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:28][7530][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:28][7530][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:28][7530][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:28][7530][INFO][MAIN] Duplicate execution. +[28 11:20:31][7536][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:31][7536][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:31][7536][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:31][7536][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:31][7536][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:31][7536][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:31][7536][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:31][7536][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:31][7536][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:31][7536][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:31][7536][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:31][7536][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:31][7536][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:31][7536][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:31][7536][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:31][7536][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:31][7536][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:31][7536][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:31][7536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:31][7536][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:31][7536][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:31][7536][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:31][7536][INFO][MAIN] Duplicate execution. +[28 11:20:34][7542][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:34][7542][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:34][7542][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:34][7542][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:34][7542][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:34][7542][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:34][7542][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:34][7542][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:34][7542][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:34][7542][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:34][7542][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:34][7542][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:34][7542][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:34][7542][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:34][7542][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:34][7542][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:34][7542][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:34][7542][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:34][7542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:34][7542][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:34][7542][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:34][7542][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:34][7542][INFO][MAIN] Duplicate execution. +[28 11:20:37][7548][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:37][7548][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:37][7548][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:37][7548][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:37][7548][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:37][7548][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:37][7548][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:37][7548][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:37][7548][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:37][7548][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:37][7548][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:37][7548][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:37][7548][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:37][7548][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:37][7548][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:37][7548][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:37][7548][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:37][7548][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:37][7548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:37][7548][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:37][7548][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:37][7548][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:37][7548][INFO][MAIN] Duplicate execution. +[28 11:20:40][7554][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:40][7554][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:40][7554][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:40][7554][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:40][7554][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:40][7554][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:40][7554][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:40][7554][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:40][7554][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:40][7554][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:40][7554][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:40][7554][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:40][7554][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:40][7554][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:40][7554][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:40][7554][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:40][7554][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:40][7554][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:40][7554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:40][7554][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:40][7554][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:40][7554][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:40][7554][INFO][MAIN] Duplicate execution. +[28 11:20:43][7560][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:43][7560][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:43][7560][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:43][7560][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:43][7560][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:43][7560][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:43][7560][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:43][7560][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:43][7560][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:43][7560][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:43][7560][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:43][7560][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:43][7560][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:43][7560][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:43][7560][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:43][7560][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:43][7560][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:43][7560][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:43][7560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:43][7560][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:43][7560][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:43][7560][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:43][7560][INFO][MAIN] Duplicate execution. +[28 11:20:46][7566][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:46][7566][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:46][7566][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:46][7566][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:46][7566][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:46][7566][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:46][7566][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:46][7566][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:46][7566][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:46][7566][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:46][7566][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:46][7566][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:46][7566][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:46][7566][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:46][7566][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:46][7566][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:46][7566][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:46][7566][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:46][7566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:46][7566][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:46][7566][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:46][7566][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:46][7566][INFO][MAIN] Duplicate execution. +[28 11:20:49][7572][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:49][7572][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:49][7572][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:49][7572][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:49][7572][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:49][7572][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:49][7572][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:49][7572][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:49][7572][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:49][7572][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:49][7572][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:49][7572][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:49][7572][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:49][7572][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:49][7572][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:49][7572][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:49][7572][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:49][7572][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:49][7572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:49][7572][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:49][7572][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:49][7572][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:49][7572][INFO][MAIN] Duplicate execution. +[28 11:20:52][7578][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:52][7578][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:52][7578][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:52][7578][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:52][7578][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:52][7578][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:52][7578][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:52][7578][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:52][7578][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:52][7578][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:52][7578][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:52][7578][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:52][7578][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:52][7578][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:52][7578][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:52][7578][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:52][7578][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:52][7578][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:52][7578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:52][7578][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:52][7578][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:52][7578][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:52][7578][INFO][MAIN] Duplicate execution. +[28 11:20:55][7584][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:55][7584][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:55][7584][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:55][7584][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:55][7584][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:55][7584][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:55][7584][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:55][7584][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:55][7584][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:55][7584][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:55][7584][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:55][7584][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:55][7584][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:55][7584][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:55][7584][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:55][7584][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:55][7584][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:55][7584][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:55][7584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:55][7584][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:55][7584][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:55][7584][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:55][7584][INFO][MAIN] Duplicate execution. +[28 11:20:58][7590][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:20:58][7590][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:20:58][7590][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:20:58][7590][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:20:58][7590][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:20:58][7590][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:20:58][7590][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:20:58][7590][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:20:58][7590][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:20:58][7590][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:20:58][7590][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:20:58][7590][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:20:58][7590][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:20:58][7590][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:20:58][7590][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:20:58][7590][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:20:58][7590][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:20:58][7590][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:20:58][7590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:20:58][7590][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:20:58][7590][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:20:58][7590][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:20:58][7590][INFO][MAIN] Duplicate execution. +[28 11:21:01][7596][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:01][7596][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:01][7596][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:01][7596][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:01][7596][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:01][7596][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:01][7596][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:01][7596][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:01][7596][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:01][7596][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:01][7596][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:01][7596][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:01][7596][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:01][7596][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:01][7596][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:01][7596][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:01][7596][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:01][7596][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:01][7596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:01][7596][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:01][7596][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:01][7596][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:01][7596][INFO][MAIN] Duplicate execution. +[28 11:21:04][7602][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:04][7602][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:04][7602][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:04][7602][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:04][7602][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:04][7602][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:04][7602][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:04][7602][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:04][7602][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:04][7602][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:04][7602][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:04][7602][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:04][7602][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:04][7602][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:04][7602][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:04][7602][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:04][7602][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:04][7602][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:04][7602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:04][7602][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:04][7602][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:04][7602][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:04][7602][INFO][MAIN] Duplicate execution. +[28 11:21:07][7608][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:07][7608][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:07][7608][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:07][7608][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:07][7608][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:07][7608][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:07][7608][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:07][7608][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:07][7608][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:07][7608][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:07][7608][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:07][7608][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:07][7608][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:07][7608][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:07][7608][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:07][7608][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:07][7608][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:07][7608][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:07][7608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:07][7608][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:07][7608][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:07][7608][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:07][7608][INFO][MAIN] Duplicate execution. +[28 11:21:10][7614][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:10][7614][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:10][7614][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:10][7614][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:10][7614][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:10][7614][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:10][7614][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:10][7614][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:10][7614][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:10][7614][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:10][7614][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:10][7614][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:10][7614][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:10][7614][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:10][7614][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:10][7614][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:10][7614][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:10][7614][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:10][7614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:10][7614][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:10][7614][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:10][7614][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:10][7614][INFO][MAIN] Duplicate execution. +[28 11:21:13][7620][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:13][7620][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:13][7620][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:13][7620][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:13][7620][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:13][7620][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:13][7620][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:13][7620][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:13][7620][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:13][7620][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:13][7620][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:13][7620][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:13][7620][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:13][7620][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:13][7620][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:13][7620][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:13][7620][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:13][7620][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:13][7620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:13][7620][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:13][7620][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:13][7620][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:13][7620][INFO][MAIN] Duplicate execution. +[28 11:21:16][7626][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:16][7626][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:16][7626][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:16][7626][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:16][7626][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:16][7626][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:16][7626][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:16][7626][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:16][7626][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:16][7626][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:16][7626][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:16][7626][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:16][7626][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:16][7626][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:16][7626][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:16][7626][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:16][7626][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:16][7626][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:16][7626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:16][7626][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:16][7626][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:16][7626][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:16][7626][INFO][MAIN] Duplicate execution. +[28 11:21:19][7632][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:19][7632][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:19][7632][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:19][7632][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:19][7632][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:19][7632][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:19][7632][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:19][7632][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:19][7632][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:19][7632][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:19][7632][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:19][7632][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:19][7632][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:19][7632][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:19][7632][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:19][7632][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:19][7632][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:19][7632][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:19][7632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:19][7632][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:19][7632][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:19][7632][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:19][7632][INFO][MAIN] Duplicate execution. +[28 11:21:22][7638][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:22][7638][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:22][7638][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:22][7638][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:22][7638][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:22][7638][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:22][7638][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:22][7638][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:22][7638][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:22][7638][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:22][7638][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:22][7638][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:22][7638][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:22][7638][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:22][7638][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:22][7638][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:22][7638][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:22][7638][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:22][7638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:22][7638][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:22][7638][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:22][7638][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:22][7638][INFO][MAIN] Duplicate execution. +[28 11:21:25][7644][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:25][7644][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:25][7644][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:25][7644][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:25][7644][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:25][7644][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:25][7644][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:25][7644][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:25][7644][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:25][7644][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:25][7644][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:25][7644][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:25][7644][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:25][7644][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:25][7644][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:25][7644][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:25][7644][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:25][7644][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:25][7644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:25][7644][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:25][7644][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:25][7644][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:25][7644][INFO][MAIN] Duplicate execution. +[28 11:21:28][7650][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:28][7650][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:28][7650][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:28][7650][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:28][7650][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:28][7650][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:28][7650][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:28][7650][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:28][7650][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:28][7650][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:28][7650][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:28][7650][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:28][7650][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:28][7650][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:28][7650][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:28][7650][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:28][7650][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:28][7650][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:28][7650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:28][7650][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:28][7650][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:28][7650][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:28][7650][INFO][MAIN] Duplicate execution. +[28 11:21:31][7656][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:31][7656][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:31][7656][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:31][7656][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:31][7656][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:31][7656][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:31][7656][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:31][7656][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:31][7656][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:31][7656][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:31][7656][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:31][7656][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:31][7656][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:31][7656][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:31][7656][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:31][7656][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:31][7656][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:31][7656][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:31][7656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:31][7656][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:31][7656][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:31][7656][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:31][7656][INFO][MAIN] Duplicate execution. +[28 11:21:34][7662][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:34][7662][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:34][7662][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:34][7662][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:34][7662][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:34][7662][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:34][7662][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:34][7662][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:34][7662][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:34][7662][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:34][7662][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:34][7662][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:34][7662][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:34][7662][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:34][7662][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:34][7662][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:34][7662][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:34][7662][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:34][7662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:34][7662][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:34][7662][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:34][7662][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:34][7662][INFO][MAIN] Duplicate execution. +[28 11:21:37][7668][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:37][7668][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:37][7668][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:37][7668][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:37][7668][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:37][7668][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:37][7668][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:37][7668][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:37][7668][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:37][7668][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:37][7668][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:37][7668][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:37][7668][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:37][7668][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:37][7668][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:37][7668][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:37][7668][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:37][7668][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:37][7668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:37][7668][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:37][7668][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:37][7668][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:37][7668][INFO][MAIN] Duplicate execution. +[28 11:21:40][7674][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:40][7674][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:40][7674][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:40][7674][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:40][7674][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:40][7674][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:40][7674][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:40][7674][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:40][7674][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:40][7674][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:40][7674][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:40][7674][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:40][7674][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:40][7674][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:40][7674][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:40][7674][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:40][7674][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:40][7674][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:40][7674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:40][7674][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:40][7674][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:40][7674][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:40][7674][INFO][MAIN] Duplicate execution. +[28 11:21:43][7680][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:43][7680][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:43][7680][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:43][7680][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:43][7680][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:43][7680][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:43][7680][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:43][7680][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:43][7680][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:43][7680][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:43][7680][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:43][7680][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:43][7680][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:43][7680][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:43][7680][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:43][7680][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:43][7680][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:43][7680][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:43][7680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:43][7680][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:43][7680][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:43][7680][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:43][7680][INFO][MAIN] Duplicate execution. +[28 11:21:46][7686][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:46][7686][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:46][7686][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:46][7686][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:46][7686][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:46][7686][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:46][7686][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:46][7686][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:46][7686][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:46][7686][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:46][7686][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:46][7686][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:46][7686][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:46][7686][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:46][7686][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:46][7686][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:46][7686][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:46][7686][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:46][7686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:46][7686][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:46][7686][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:46][7686][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:46][7686][INFO][MAIN] Duplicate execution. +[28 11:21:49][7692][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:49][7692][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:49][7692][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:49][7692][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:49][7692][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:49][7692][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:49][7692][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:49][7692][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:49][7692][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:49][7692][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:49][7692][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:49][7692][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:49][7692][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:49][7692][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:49][7692][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:49][7692][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:49][7692][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:49][7692][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:49][7692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:49][7692][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:49][7692][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:49][7692][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:49][7692][INFO][MAIN] Duplicate execution. +[28 11:21:52][7698][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:52][7698][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:52][7698][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:52][7698][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:52][7698][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:52][7698][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:52][7698][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:52][7698][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:52][7698][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:52][7698][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:52][7698][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:52][7698][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:52][7698][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:52][7698][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:52][7698][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:52][7698][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:52][7698][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:52][7698][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:52][7698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:52][7698][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:52][7698][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:52][7698][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:52][7698][INFO][MAIN] Duplicate execution. +[28 11:21:55][7704][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:55][7704][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:55][7704][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:55][7704][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:55][7704][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:55][7704][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:55][7704][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:55][7704][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:55][7704][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:55][7704][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:55][7704][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:55][7704][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:55][7704][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:55][7704][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:55][7704][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:55][7704][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:55][7704][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:55][7704][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:55][7704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:55][7704][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:55][7704][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:55][7704][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:55][7704][INFO][MAIN] Duplicate execution. +[28 11:21:58][7710][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:21:58][7710][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:21:58][7710][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:21:58][7710][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:21:58][7710][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:21:58][7710][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:21:58][7710][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:21:58][7710][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:21:58][7710][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:21:58][7710][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:21:58][7710][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:21:58][7710][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:21:58][7710][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:21:58][7710][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:21:58][7710][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:21:58][7710][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:21:58][7710][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:21:58][7710][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:21:58][7710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:21:58][7710][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:21:58][7710][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:21:58][7710][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:21:58][7710][INFO][MAIN] Duplicate execution. +[28 11:22:01][7716][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:01][7716][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:01][7716][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:01][7716][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:01][7716][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:01][7716][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:01][7716][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:01][7716][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:01][7716][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:01][7716][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:01][7716][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:01][7716][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:01][7716][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:01][7716][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:01][7716][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:01][7716][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:01][7716][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:01][7716][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:01][7716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:01][7716][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:01][7716][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:01][7716][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:01][7716][INFO][MAIN] Duplicate execution. +[28 11:22:04][7722][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:04][7722][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:04][7722][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:04][7722][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:04][7722][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:04][7722][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:04][7722][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:04][7722][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:04][7722][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:04][7722][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:04][7722][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:04][7722][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:04][7722][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:04][7722][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:04][7722][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:04][7722][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:04][7722][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:04][7722][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:04][7722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:04][7722][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:04][7722][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:04][7722][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:04][7722][INFO][MAIN] Duplicate execution. +[28 11:22:07][7728][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:07][7728][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:07][7728][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:07][7728][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:07][7728][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:07][7728][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:07][7728][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:07][7728][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:07][7728][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:07][7728][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:07][7728][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:07][7728][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:07][7728][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:07][7728][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:07][7728][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:07][7728][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:07][7728][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:07][7728][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:07][7728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:07][7728][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:07][7728][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:07][7728][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:07][7728][INFO][MAIN] Duplicate execution. +[28 11:22:10][7734][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:10][7734][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:10][7734][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:10][7734][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:10][7734][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:10][7734][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:10][7734][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:10][7734][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:10][7734][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:10][7734][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:10][7734][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:10][7734][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:10][7734][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:10][7734][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:10][7734][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:10][7734][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:10][7734][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:10][7734][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:10][7734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:10][7734][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:10][7734][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:10][7734][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:10][7734][INFO][MAIN] Duplicate execution. +[28 11:22:13][7740][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:13][7740][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:13][7740][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:13][7740][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:13][7740][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:13][7740][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:13][7740][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:13][7740][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:13][7740][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:13][7740][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:13][7740][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:13][7740][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:13][7740][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:13][7740][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:13][7740][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:13][7740][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:13][7740][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:13][7740][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:13][7740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:13][7740][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:13][7740][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:13][7740][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:13][7740][INFO][MAIN] Duplicate execution. +[28 11:22:16][7746][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:16][7746][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:16][7746][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:16][7746][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:16][7746][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:16][7746][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:16][7746][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:16][7746][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:16][7746][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:16][7746][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:16][7746][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:16][7746][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:16][7746][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:16][7746][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:16][7746][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:16][7746][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:16][7746][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:16][7746][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:16][7746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:16][7746][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:16][7746][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:16][7746][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:16][7746][INFO][MAIN] Duplicate execution. +[28 11:22:19][7752][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:19][7752][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:19][7752][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:19][7752][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:19][7752][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:19][7752][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:19][7752][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:19][7752][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:19][7752][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:19][7752][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:19][7752][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:19][7752][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:19][7752][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:19][7752][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:19][7752][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:19][7752][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:19][7752][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:19][7752][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:19][7752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:19][7752][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:19][7752][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:19][7752][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:19][7752][INFO][MAIN] Duplicate execution. +[28 11:22:22][7758][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:22][7758][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:22][7758][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:22][7758][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:22][7758][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:22][7758][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:22][7758][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:22][7758][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:22][7758][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:22][7758][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:22][7758][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:22][7758][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:22][7758][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:22][7758][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:22][7758][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:22][7758][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:22][7758][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:22][7758][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:22][7758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:22][7758][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:22][7758][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:22][7758][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:22][7758][INFO][MAIN] Duplicate execution. +[28 11:22:25][7764][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:25][7764][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:25][7764][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:25][7764][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:25][7764][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:25][7764][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:25][7764][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:25][7764][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:25][7764][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:25][7764][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:25][7764][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:25][7764][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:25][7764][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:25][7764][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:25][7764][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:25][7764][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:25][7764][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:25][7764][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:25][7764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:25][7764][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:25][7764][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:25][7764][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:25][7764][INFO][MAIN] Duplicate execution. +[28 11:22:28][7770][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:28][7770][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:28][7770][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:28][7770][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:28][7770][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:28][7770][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:28][7770][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:28][7770][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:28][7770][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:28][7770][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:28][7770][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:28][7770][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:28][7770][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:28][7770][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:28][7770][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:28][7770][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:28][7770][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:28][7770][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:28][7770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:28][7770][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:28][7770][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:28][7770][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:28][7770][INFO][MAIN] Duplicate execution. +[28 11:22:31][7776][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:31][7776][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:31][7776][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:31][7776][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:31][7776][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:31][7776][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:31][7776][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:31][7776][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:31][7776][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:31][7776][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:31][7776][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:31][7776][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:31][7776][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:31][7776][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:31][7776][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:31][7776][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:31][7776][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:31][7776][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:31][7776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:31][7776][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:31][7776][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:31][7776][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:31][7776][INFO][MAIN] Duplicate execution. +[28 11:22:34][7782][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:34][7782][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:34][7782][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:34][7782][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:34][7782][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:34][7782][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:34][7782][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:34][7782][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:34][7782][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:34][7782][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:34][7782][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:34][7782][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:34][7782][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:34][7782][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:34][7782][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:34][7782][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:34][7782][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:34][7782][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:34][7782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:34][7782][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:34][7782][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:34][7782][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:34][7782][INFO][MAIN] Duplicate execution. +[28 11:22:37][7788][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:37][7788][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:37][7788][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:37][7788][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:37][7788][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:37][7788][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:37][7788][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:37][7788][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:37][7788][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:37][7788][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:37][7788][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:37][7788][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:37][7788][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:37][7788][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:37][7788][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:37][7788][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:37][7788][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:37][7788][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:37][7788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:37][7788][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:37][7788][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:37][7788][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:37][7788][INFO][MAIN] Duplicate execution. +[28 11:22:40][7794][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:40][7794][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:40][7794][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:40][7794][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:40][7794][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:40][7794][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:40][7794][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:40][7794][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:40][7794][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:40][7794][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:40][7794][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:40][7794][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:40][7794][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:40][7794][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:40][7794][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:40][7794][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:40][7794][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:40][7794][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:40][7794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:40][7794][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:40][7794][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:40][7794][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:40][7794][INFO][MAIN] Duplicate execution. +[28 11:22:43][7800][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:43][7800][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:43][7800][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:43][7800][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:43][7800][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:43][7800][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:43][7800][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:43][7800][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:43][7800][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:43][7800][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:43][7800][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:43][7800][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:43][7800][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:43][7800][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:43][7800][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:43][7800][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:43][7800][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:43][7800][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:43][7800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:43][7800][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:43][7800][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:43][7800][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:43][7800][INFO][MAIN] Duplicate execution. +[28 11:22:46][7806][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:46][7806][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:46][7806][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:46][7806][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:46][7806][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:46][7806][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:46][7806][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:46][7806][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:46][7806][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:46][7806][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:46][7806][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:46][7806][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:46][7806][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:46][7806][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:46][7806][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:46][7806][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:46][7806][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:46][7806][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:46][7806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:46][7806][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:46][7806][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:46][7806][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:46][7806][INFO][MAIN] Duplicate execution. +[28 11:22:49][7812][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:49][7812][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:49][7812][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:49][7812][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:49][7812][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:49][7812][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:49][7812][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:49][7812][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:49][7812][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:49][7812][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:49][7812][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:49][7812][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:49][7812][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:49][7812][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:49][7812][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:49][7812][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:49][7812][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:49][7812][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:49][7812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:49][7812][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:49][7812][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:49][7812][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:49][7812][INFO][MAIN] Duplicate execution. +[28 11:22:52][7818][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:52][7818][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:52][7818][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:52][7818][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:52][7818][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:52][7818][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:52][7818][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:52][7818][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:52][7818][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:52][7818][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:52][7818][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:52][7818][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:52][7818][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:52][7818][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:52][7818][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:52][7818][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:52][7818][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:52][7818][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:52][7818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:52][7818][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:52][7818][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:52][7818][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:52][7818][INFO][MAIN] Duplicate execution. +[28 11:22:55][7824][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:55][7824][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:55][7824][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:55][7824][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:55][7824][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:55][7824][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:55][7824][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:55][7824][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:55][7824][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:55][7824][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:55][7824][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:55][7824][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:55][7824][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:55][7824][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:55][7824][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:55][7824][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:55][7824][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:55][7824][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:55][7824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:55][7824][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:55][7824][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:55][7824][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:55][7824][INFO][MAIN] Duplicate execution. +[28 11:22:58][7830][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:22:58][7830][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:22:58][7830][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:22:58][7830][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:22:58][7830][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:22:58][7830][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:22:58][7830][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:22:58][7830][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:22:58][7830][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:22:58][7830][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:22:58][7830][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:22:58][7830][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:22:58][7830][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:22:58][7830][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:22:58][7830][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:22:58][7830][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:22:58][7830][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:22:58][7830][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:22:58][7830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:22:58][7830][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:22:58][7830][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:22:58][7830][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:22:58][7830][INFO][MAIN] Duplicate execution. +[28 11:23:01][7836][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:01][7836][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:01][7836][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:01][7836][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:01][7836][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:01][7836][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:01][7836][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:01][7836][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:01][7836][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:01][7836][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:01][7836][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:01][7836][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:01][7836][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:01][7836][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:01][7836][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:01][7836][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:01][7836][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:01][7836][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:01][7836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:01][7836][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:01][7836][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:01][7836][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:01][7836][INFO][MAIN] Duplicate execution. +[28 11:23:04][7842][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:04][7842][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:04][7842][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:04][7842][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:04][7842][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:04][7842][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:04][7842][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:04][7842][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:04][7842][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:04][7842][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:04][7842][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:04][7842][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:04][7842][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:04][7842][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:04][7842][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:04][7842][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:04][7842][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:04][7842][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:04][7842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:04][7842][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:04][7842][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:04][7842][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:04][7842][INFO][MAIN] Duplicate execution. +[28 11:23:07][7848][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:07][7848][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:07][7848][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:07][7848][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:07][7848][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:07][7848][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:07][7848][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:07][7848][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:07][7848][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:07][7848][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:07][7848][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:07][7848][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:07][7848][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:07][7848][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:07][7848][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:07][7848][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:07][7848][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:07][7848][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:07][7848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:07][7848][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:07][7848][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:07][7848][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:07][7848][INFO][MAIN] Duplicate execution. +[28 11:23:10][7854][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:10][7854][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:10][7854][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:10][7854][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:10][7854][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:10][7854][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:10][7854][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:10][7854][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:10][7854][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:10][7854][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:10][7854][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:10][7854][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:10][7854][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:10][7854][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:10][7854][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:10][7854][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:10][7854][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:10][7854][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:10][7854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:10][7854][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:10][7854][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:10][7854][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:10][7854][INFO][MAIN] Duplicate execution. +[28 11:23:13][7860][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:13][7860][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:13][7860][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:13][7860][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:13][7860][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:13][7860][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:13][7860][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:13][7860][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:13][7860][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:13][7860][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:13][7860][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:13][7860][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:13][7860][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:13][7860][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:13][7860][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:13][7860][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:13][7860][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:13][7860][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:13][7860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:13][7860][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:13][7860][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:13][7860][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:13][7860][INFO][MAIN] Duplicate execution. +[28 11:23:16][7866][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:16][7866][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:16][7866][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:16][7866][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:16][7866][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:16][7866][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:16][7866][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:16][7866][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:16][7866][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:16][7866][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:16][7866][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:16][7866][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:16][7866][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:16][7866][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:16][7866][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:16][7866][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:16][7866][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:16][7866][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:16][7866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:16][7866][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:16][7866][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:16][7866][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:16][7866][INFO][MAIN] Duplicate execution. +[28 11:23:19][7872][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:19][7872][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:19][7872][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:19][7872][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:19][7872][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:19][7872][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:19][7872][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:19][7872][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:19][7872][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:19][7872][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:19][7872][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:19][7872][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:19][7872][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:19][7872][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:19][7872][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:19][7872][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:19][7872][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:19][7872][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:19][7872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:19][7872][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:19][7872][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:19][7872][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:19][7872][INFO][MAIN] Duplicate execution. +[28 11:23:22][7878][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:22][7878][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:22][7878][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:22][7878][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:22][7878][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:22][7878][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:22][7878][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:22][7878][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:22][7878][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:22][7878][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:22][7878][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:22][7878][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:22][7878][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:22][7878][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:22][7878][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:22][7878][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:22][7878][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:22][7878][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:22][7878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:22][7878][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:22][7878][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:22][7878][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:22][7878][INFO][MAIN] Duplicate execution. +[28 11:23:25][7884][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:25][7884][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:25][7884][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:25][7884][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:25][7884][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:25][7884][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:25][7884][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:25][7884][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:25][7884][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:25][7884][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:25][7884][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:25][7884][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:25][7884][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:25][7884][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:25][7884][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:25][7884][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:25][7884][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:25][7884][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:25][7884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:25][7884][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:25][7884][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:25][7884][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:25][7884][INFO][MAIN] Duplicate execution. +[28 11:23:28][7890][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:28][7890][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:28][7890][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:28][7890][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:28][7890][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:28][7890][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:28][7890][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:28][7890][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:28][7890][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:28][7890][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:28][7890][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:28][7890][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:28][7890][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:28][7890][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:28][7890][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:28][7890][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:28][7890][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:28][7890][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:28][7890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:28][7890][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:28][7890][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:28][7890][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:28][7890][INFO][MAIN] Duplicate execution. +[28 11:23:31][7896][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:31][7896][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:31][7896][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:31][7896][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:31][7896][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:31][7896][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:31][7896][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:31][7896][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:31][7896][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:31][7896][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:31][7896][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:31][7896][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:31][7896][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:31][7896][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:31][7896][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:31][7896][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:31][7896][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:31][7896][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:31][7896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:31][7896][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:31][7896][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:31][7896][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:31][7896][INFO][MAIN] Duplicate execution. +[28 11:23:34][7902][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:34][7902][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:34][7902][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:34][7902][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:34][7902][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:34][7902][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:34][7902][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:34][7902][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:34][7902][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:34][7902][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:34][7902][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:34][7902][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:34][7902][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:34][7902][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:34][7902][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:34][7902][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:34][7902][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:34][7902][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:34][7902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:34][7902][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:34][7902][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:34][7902][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:34][7902][INFO][MAIN] Duplicate execution. +[28 11:23:37][7908][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:37][7908][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:37][7908][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:37][7908][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:37][7908][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:37][7908][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:37][7908][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:37][7908][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:37][7908][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:37][7908][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:37][7908][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:37][7908][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:37][7908][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:37][7908][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:37][7908][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:37][7908][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:37][7908][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:37][7908][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:37][7908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:37][7908][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:37][7908][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:37][7908][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:37][7908][INFO][MAIN] Duplicate execution. +[28 11:23:40][7914][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:40][7914][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:40][7914][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:40][7914][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:40][7914][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:40][7914][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:40][7914][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:40][7914][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:40][7914][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:40][7914][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:40][7914][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:40][7914][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:40][7914][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:40][7914][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:40][7914][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:40][7914][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:40][7914][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:40][7914][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:40][7914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:40][7914][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:40][7914][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:40][7914][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:40][7914][INFO][MAIN] Duplicate execution. +[28 11:23:43][7920][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:43][7920][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:43][7920][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:43][7920][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:43][7920][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:43][7920][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:43][7920][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:43][7920][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:43][7920][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:43][7920][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:43][7920][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:43][7920][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:43][7920][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:43][7920][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:43][7920][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:43][7920][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:43][7920][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:43][7920][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:43][7920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:43][7920][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:43][7920][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:43][7920][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:43][7920][INFO][MAIN] Duplicate execution. +[28 11:23:46][7926][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:46][7926][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:46][7926][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:46][7926][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:46][7926][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:46][7926][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:46][7926][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:46][7926][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:46][7926][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:46][7926][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:46][7926][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:46][7926][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:46][7926][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:46][7926][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:46][7926][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:46][7926][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:46][7926][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:46][7926][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:46][7926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:46][7926][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:46][7926][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:46][7926][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:46][7926][INFO][MAIN] Duplicate execution. +[28 11:23:49][7932][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:49][7932][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:49][7932][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:49][7932][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:49][7932][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:49][7932][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:49][7932][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:49][7932][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:49][7932][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:49][7932][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:49][7932][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:49][7932][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:49][7932][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:49][7932][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:49][7932][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:49][7932][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:49][7932][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:49][7932][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:49][7932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:49][7932][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:49][7932][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:49][7932][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:49][7932][INFO][MAIN] Duplicate execution. +[28 11:23:52][7938][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:52][7938][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:52][7938][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:52][7938][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:52][7938][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:52][7938][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:52][7938][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:52][7938][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:52][7938][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:52][7938][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:52][7938][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:52][7938][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:52][7938][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:52][7938][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:52][7938][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:52][7938][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:52][7938][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:52][7938][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:52][7938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:52][7938][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:52][7938][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:52][7938][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:52][7938][INFO][MAIN] Duplicate execution. +[28 11:23:55][7944][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:55][7944][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:55][7944][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:55][7944][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:55][7944][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:55][7944][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:55][7944][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:55][7944][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:55][7944][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:55][7944][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:55][7944][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:55][7944][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:55][7944][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:55][7944][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:55][7944][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:55][7944][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:55][7944][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:55][7944][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:55][7944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:55][7944][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:55][7944][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:55][7944][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:55][7944][INFO][MAIN] Duplicate execution. +[28 11:23:58][7950][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:23:58][7950][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:23:58][7950][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:23:58][7950][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:23:58][7950][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:23:58][7950][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:23:58][7950][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:23:58][7950][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:23:58][7950][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:23:58][7950][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:23:58][7950][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:23:58][7950][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:23:58][7950][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:23:58][7950][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:23:58][7950][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:23:58][7950][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:23:58][7950][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:23:58][7950][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:23:58][7950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:23:58][7950][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:23:58][7950][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:23:58][7950][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:23:58][7950][INFO][MAIN] Duplicate execution. +[28 11:24:01][7956][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:01][7956][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:01][7956][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:01][7956][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:01][7956][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:01][7956][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:01][7956][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:01][7956][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:01][7956][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:01][7956][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:01][7956][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:01][7956][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:01][7956][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:01][7956][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:01][7956][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:01][7956][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:01][7956][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:01][7956][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:01][7956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:01][7956][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:01][7956][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:01][7956][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:01][7956][INFO][MAIN] Duplicate execution. +[28 11:24:04][7962][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:04][7962][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:04][7962][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:04][7962][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:04][7962][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:04][7962][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:04][7962][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:04][7962][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:04][7962][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:04][7962][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:04][7962][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:04][7962][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:04][7962][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:04][7962][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:04][7962][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:04][7962][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:04][7962][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:04][7962][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:04][7962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:04][7962][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:04][7962][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:04][7962][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:04][7962][INFO][MAIN] Duplicate execution. +[28 11:24:07][7968][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:07][7968][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:07][7968][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:07][7968][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:07][7968][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:07][7968][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:07][7968][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:07][7968][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:07][7968][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:07][7968][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:07][7968][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:07][7968][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:07][7968][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:07][7968][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:07][7968][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:07][7968][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:07][7968][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:07][7968][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:07][7968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:07][7968][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:07][7968][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:07][7968][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:07][7968][INFO][MAIN] Duplicate execution. +[28 11:24:10][7974][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:10][7974][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:10][7974][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:10][7974][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:10][7974][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:10][7974][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:10][7974][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:10][7974][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:10][7974][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:10][7974][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:10][7974][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:10][7974][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:10][7974][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:10][7974][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:10][7974][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:10][7974][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:10][7974][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:10][7974][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:10][7974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:10][7974][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:10][7974][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:10][7974][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:10][7974][INFO][MAIN] Duplicate execution. +[28 11:24:13][7980][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:13][7980][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:13][7980][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:13][7980][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:13][7980][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:13][7980][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:13][7980][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:13][7980][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:13][7980][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:13][7980][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:13][7980][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:13][7980][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:13][7980][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:13][7980][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:13][7980][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:13][7980][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:13][7980][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:13][7980][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:13][7980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:13][7980][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:13][7980][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:13][7980][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:13][7980][INFO][MAIN] Duplicate execution. +[28 11:24:16][7986][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:16][7986][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:16][7986][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:16][7986][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:16][7986][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:16][7986][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:16][7986][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:16][7986][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:16][7986][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:16][7986][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:16][7986][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:16][7986][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:16][7986][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:16][7986][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:16][7986][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:16][7986][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:16][7986][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:16][7986][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:16][7986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:16][7986][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:16][7986][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:16][7986][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:16][7986][INFO][MAIN] Duplicate execution. +[28 11:24:19][7992][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:19][7992][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:19][7992][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:19][7992][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:19][7992][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:19][7992][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:19][7992][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:19][7992][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:19][7992][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:19][7992][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:19][7992][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:19][7992][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:19][7992][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:19][7992][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:19][7992][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:19][7992][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:19][7992][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:19][7992][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:19][7992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:19][7992][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:19][7992][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:19][7992][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:19][7992][INFO][MAIN] Duplicate execution. +[28 11:24:22][7998][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:22][7998][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:22][7998][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:22][7998][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:22][7998][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:22][7998][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:22][7998][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:22][7998][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:22][7998][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:22][7998][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:22][7998][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:22][7998][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:22][7998][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:22][7998][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:22][7998][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:22][7998][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:22][7998][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:22][7998][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:22][7998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:22][7998][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:22][7998][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:22][7998][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:22][7998][INFO][MAIN] Duplicate execution. +[28 11:24:25][8004][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:25][8004][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:25][8004][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:25][8004][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:25][8004][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:25][8004][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:25][8004][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:25][8004][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:25][8004][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:25][8004][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:25][8004][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:25][8004][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:25][8004][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:25][8004][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:25][8004][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:25][8004][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:25][8004][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:25][8004][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:25][8004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:25][8004][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:25][8004][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:25][8004][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:25][8004][INFO][MAIN] Duplicate execution. +[28 11:24:28][8010][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:28][8010][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:28][8010][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:28][8010][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:28][8010][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:28][8010][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:28][8010][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:28][8010][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:28][8010][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:28][8010][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:28][8010][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:28][8010][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:28][8010][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:28][8010][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:28][8010][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:28][8010][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:28][8010][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:28][8010][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:28][8010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:28][8010][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:28][8010][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:28][8010][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:28][8010][INFO][MAIN] Duplicate execution. +[28 11:24:31][8016][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:31][8016][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:31][8016][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:31][8016][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:31][8016][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:31][8016][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:31][8016][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:31][8016][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:31][8016][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:31][8016][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:31][8016][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:31][8016][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:31][8016][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:31][8016][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:31][8016][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:31][8016][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:31][8016][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:31][8016][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:31][8016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:31][8016][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:31][8016][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:31][8016][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:31][8016][INFO][MAIN] Duplicate execution. +[28 11:24:34][8022][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:34][8022][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:34][8022][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:34][8022][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:34][8022][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:34][8022][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:34][8022][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:34][8022][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:34][8022][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:34][8022][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:34][8022][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:34][8022][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:34][8022][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:34][8022][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:34][8022][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:34][8022][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:34][8022][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:34][8022][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:34][8022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:34][8022][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:34][8022][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:34][8022][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:34][8022][INFO][MAIN] Duplicate execution. +[28 11:24:37][8028][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:37][8028][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:37][8028][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:37][8028][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:37][8028][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:37][8028][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:37][8028][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:37][8028][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:37][8028][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:37][8028][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:37][8028][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:37][8028][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:37][8028][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:37][8028][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:37][8028][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:37][8028][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:37][8028][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:37][8028][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:37][8028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:37][8028][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:37][8028][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:37][8028][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:37][8028][INFO][MAIN] Duplicate execution. +[28 11:24:40][8034][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:40][8034][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:40][8034][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:40][8034][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:40][8034][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:40][8034][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:40][8034][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:40][8034][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:40][8034][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:40][8034][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:40][8034][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:40][8034][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:40][8034][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:40][8034][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:40][8034][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:40][8034][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:40][8034][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:40][8034][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:40][8034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:40][8034][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:40][8034][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:40][8034][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:40][8034][INFO][MAIN] Duplicate execution. +[28 11:24:43][8040][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:43][8040][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:43][8040][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:43][8040][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:43][8040][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:43][8040][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:43][8040][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:43][8040][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:43][8040][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:43][8040][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:43][8040][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:43][8040][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:43][8040][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:43][8040][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:43][8040][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:43][8040][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:43][8040][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:43][8040][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:43][8040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:43][8040][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:43][8040][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:43][8040][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:43][8040][INFO][MAIN] Duplicate execution. +[28 11:24:46][8046][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:46][8046][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:46][8046][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:46][8046][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:46][8046][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:46][8046][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:46][8046][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:46][8046][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:46][8046][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:46][8046][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:46][8046][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:46][8046][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:46][8046][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:46][8046][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:46][8046][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:46][8046][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:46][8046][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:46][8046][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:46][8046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:46][8046][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:46][8046][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:46][8046][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:46][8046][INFO][MAIN] Duplicate execution. +[28 11:24:49][8052][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:49][8052][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:49][8052][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:49][8052][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:49][8052][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:49][8052][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:49][8052][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:49][8052][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:49][8052][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:49][8052][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:49][8052][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:49][8052][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:49][8052][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:49][8052][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:49][8052][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:49][8052][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:49][8052][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:49][8052][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:49][8052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:49][8052][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:49][8052][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:49][8052][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:49][8052][INFO][MAIN] Duplicate execution. +[28 11:24:52][8058][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:52][8058][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:52][8058][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:52][8058][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:52][8058][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:52][8058][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:52][8058][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:52][8058][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:52][8058][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:52][8058][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:52][8058][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:52][8058][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:52][8058][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:52][8058][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:52][8058][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:52][8058][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:52][8058][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:52][8058][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:52][8058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:52][8058][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:52][8058][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:52][8058][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:52][8058][INFO][MAIN] Duplicate execution. +[28 11:24:55][8064][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:55][8064][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:55][8064][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:55][8064][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:55][8064][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:55][8064][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:55][8064][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:55][8064][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:55][8064][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:55][8064][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:55][8064][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:55][8064][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:55][8064][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:55][8064][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:55][8064][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:55][8064][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:55][8064][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:55][8064][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:55][8064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:55][8064][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:55][8064][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:55][8064][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:55][8064][INFO][MAIN] Duplicate execution. +[28 11:24:58][8070][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:24:58][8070][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:24:58][8070][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:24:58][8070][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:24:58][8070][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:24:58][8070][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:24:58][8070][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:24:58][8070][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:24:58][8070][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:24:58][8070][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:24:58][8070][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:24:58][8070][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:24:58][8070][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:24:58][8070][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:24:58][8070][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:24:58][8070][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:24:58][8070][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:24:58][8070][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:24:58][8070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:24:58][8070][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:24:58][8070][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:24:58][8070][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:24:58][8070][INFO][MAIN] Duplicate execution. +[28 11:25:01][8076][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:01][8076][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:01][8076][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:01][8076][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:01][8076][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:01][8076][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:01][8076][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:01][8076][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:01][8076][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:01][8076][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:01][8076][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:01][8076][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:01][8076][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:01][8076][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:01][8076][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:01][8076][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:01][8076][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:01][8076][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:01][8076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:01][8076][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:01][8076][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:01][8076][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:01][8076][INFO][MAIN] Duplicate execution. +[28 11:25:04][8082][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:04][8082][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:04][8082][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:04][8082][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:04][8082][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:04][8082][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:04][8082][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:04][8082][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:04][8082][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:04][8082][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:04][8082][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:04][8082][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:04][8082][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:04][8082][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:04][8082][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:04][8082][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:04][8082][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:04][8082][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:04][8082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:04][8082][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:04][8082][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:04][8082][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:04][8082][INFO][MAIN] Duplicate execution. +[28 11:25:07][8088][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:07][8088][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:07][8088][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:07][8088][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:07][8088][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:07][8088][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:07][8088][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:07][8088][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:07][8088][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:07][8088][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:07][8088][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:07][8088][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:07][8088][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:07][8088][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:07][8088][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:07][8088][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:07][8088][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:07][8088][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:07][8088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:07][8088][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:07][8088][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:07][8088][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:07][8088][INFO][MAIN] Duplicate execution. +[28 11:25:10][8094][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:10][8094][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:10][8094][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:10][8094][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:10][8094][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:10][8094][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:10][8094][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:10][8094][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:10][8094][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:10][8094][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:10][8094][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:10][8094][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:10][8094][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:10][8094][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:10][8094][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:10][8094][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:10][8094][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:10][8094][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:10][8094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:10][8094][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:10][8094][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:10][8094][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:10][8094][INFO][MAIN] Duplicate execution. +[28 11:25:13][8100][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:13][8100][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:13][8100][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:13][8100][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:13][8100][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:13][8100][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:13][8100][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:13][8100][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:13][8100][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:13][8100][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:13][8100][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:13][8100][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:13][8100][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:13][8100][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:13][8100][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:13][8100][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:13][8100][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:13][8100][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:13][8100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:13][8100][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:13][8100][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:13][8100][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:13][8100][INFO][MAIN] Duplicate execution. +[28 11:25:16][8106][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:16][8106][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:16][8106][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:16][8106][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:16][8106][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:16][8106][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:16][8106][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:16][8106][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:16][8106][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:16][8106][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:16][8106][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:16][8106][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:16][8106][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:16][8106][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:16][8106][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:16][8106][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:16][8106][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:16][8106][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:16][8106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:16][8106][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:16][8106][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:16][8106][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:16][8106][INFO][MAIN] Duplicate execution. +[28 11:25:19][8112][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:19][8112][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:19][8112][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:19][8112][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:19][8112][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:19][8112][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:19][8112][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:19][8112][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:19][8112][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:19][8112][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:19][8112][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:19][8112][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:19][8112][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:19][8112][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:19][8112][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:19][8112][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:19][8112][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:19][8112][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:19][8112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:19][8112][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:19][8112][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:19][8112][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:19][8112][INFO][MAIN] Duplicate execution. +[28 11:25:22][8118][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:22][8118][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:22][8118][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:22][8118][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:22][8118][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:22][8118][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:22][8118][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:22][8118][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:22][8118][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:22][8118][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:22][8118][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:22][8118][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:22][8118][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:22][8118][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:22][8118][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:22][8118][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:22][8118][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:22][8118][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:22][8118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:22][8118][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:22][8118][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:22][8118][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:22][8118][INFO][MAIN] Duplicate execution. +[28 11:25:25][8124][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:25][8124][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:25][8124][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:25][8124][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:25][8124][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:25][8124][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:25][8124][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:25][8124][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:25][8124][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:25][8124][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:25][8124][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:25][8124][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:25][8124][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:25][8124][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:25][8124][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:25][8124][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:25][8124][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:25][8124][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:25][8124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:25][8124][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:25][8124][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:25][8124][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:25][8124][INFO][MAIN] Duplicate execution. +[28 11:25:28][8130][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:28][8130][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:28][8130][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:28][8130][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:28][8130][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:28][8130][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:28][8130][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:28][8130][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:28][8130][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:28][8130][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:28][8130][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:28][8130][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:28][8130][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:28][8130][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:28][8130][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:28][8130][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:28][8130][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:28][8130][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:28][8130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:28][8130][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:28][8130][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:28][8130][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:28][8130][INFO][MAIN] Duplicate execution. +[28 11:25:31][8136][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:31][8136][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:31][8136][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:31][8136][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:31][8136][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:31][8136][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:31][8136][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:31][8136][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:31][8136][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:31][8136][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:31][8136][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:31][8136][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:31][8136][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:31][8136][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:31][8136][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:31][8136][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:31][8136][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:31][8136][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:31][8136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:31][8136][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:31][8136][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:31][8136][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:31][8136][INFO][MAIN] Duplicate execution. +[28 11:25:34][8142][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:34][8142][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:34][8142][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:34][8142][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:34][8142][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:34][8142][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:34][8142][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:34][8142][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:34][8142][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:34][8142][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:34][8142][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:34][8142][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:34][8142][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:34][8142][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:34][8142][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:34][8142][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:34][8142][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:34][8142][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:34][8142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:34][8142][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:34][8142][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:34][8142][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:34][8142][INFO][MAIN] Duplicate execution. +[28 11:25:37][8148][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:37][8148][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:37][8148][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:37][8148][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:37][8148][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:37][8148][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:37][8148][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:37][8148][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:37][8148][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:37][8148][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:37][8148][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:37][8148][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:37][8148][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:37][8148][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:37][8148][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:37][8148][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:37][8148][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:37][8148][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:37][8148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:37][8148][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:37][8148][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:37][8148][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:37][8148][INFO][MAIN] Duplicate execution. +[28 11:25:40][8154][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:40][8154][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:40][8154][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:40][8154][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:40][8154][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:40][8154][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:40][8154][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:40][8154][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:40][8154][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:40][8154][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:40][8154][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:40][8154][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:40][8154][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:40][8154][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:40][8154][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:40][8154][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:40][8154][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:40][8154][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:40][8154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:40][8154][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:40][8154][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:40][8154][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:40][8154][INFO][MAIN] Duplicate execution. +[28 11:25:43][8160][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:43][8160][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:43][8160][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:43][8160][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:43][8160][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:43][8160][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:43][8160][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:43][8160][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:43][8160][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:43][8160][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:43][8160][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:43][8160][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:43][8160][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:43][8160][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:43][8160][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:43][8160][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:43][8160][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:43][8160][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:43][8160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:43][8160][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:43][8160][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:43][8160][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:43][8160][INFO][MAIN] Duplicate execution. +[28 11:25:46][8166][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:46][8166][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:46][8166][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:46][8166][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:46][8166][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:46][8166][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:46][8166][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:46][8166][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:46][8166][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:46][8166][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:46][8166][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:46][8166][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:46][8166][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:46][8166][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:46][8166][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:46][8166][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:46][8166][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:46][8166][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:46][8166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:46][8166][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:46][8166][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:46][8166][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:46][8166][INFO][MAIN] Duplicate execution. +[28 11:25:49][8172][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:49][8172][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:49][8172][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:49][8172][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:49][8172][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:49][8172][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:49][8172][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:49][8172][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:49][8172][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:49][8172][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:49][8172][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:49][8172][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:49][8172][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:49][8172][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:49][8172][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:49][8172][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:49][8172][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:49][8172][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:49][8172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:49][8172][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:49][8172][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:49][8172][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:49][8172][INFO][MAIN] Duplicate execution. +[28 11:25:52][8178][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:52][8178][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:52][8178][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:52][8178][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:52][8178][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:52][8178][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:52][8178][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:52][8178][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:52][8178][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:52][8178][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:52][8178][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:52][8178][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:52][8178][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:52][8178][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:52][8178][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:52][8178][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:52][8178][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:52][8178][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:52][8178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:52][8178][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:52][8178][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:52][8178][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:52][8178][INFO][MAIN] Duplicate execution. +[28 11:25:55][8184][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:55][8184][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:55][8184][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:55][8184][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:55][8184][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:55][8184][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:55][8184][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:55][8184][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:55][8184][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:55][8184][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:55][8184][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:55][8184][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:55][8184][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:55][8184][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:55][8184][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:55][8184][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:55][8184][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:55][8184][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:55][8184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:55][8184][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:55][8184][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:55][8184][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:55][8184][INFO][MAIN] Duplicate execution. +[28 11:25:58][8190][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:25:58][8190][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:25:58][8190][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:25:58][8190][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:25:58][8190][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:25:58][8190][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:25:58][8190][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:25:58][8190][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:25:58][8190][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:25:58][8190][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:25:58][8190][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:25:58][8190][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:25:58][8190][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:25:58][8190][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:25:58][8190][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:25:58][8190][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:25:58][8190][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:25:58][8190][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:25:58][8190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:25:58][8190][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:25:58][8190][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:25:58][8190][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:25:58][8190][INFO][MAIN] Duplicate execution. +[28 11:26:01][8196][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:01][8196][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:01][8196][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:01][8196][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:01][8196][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:01][8196][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:01][8196][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:01][8196][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:01][8196][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:01][8196][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:01][8196][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:01][8196][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:01][8196][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:01][8196][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:01][8196][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:01][8196][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:01][8196][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:01][8196][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:01][8196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:01][8196][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:01][8196][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:01][8196][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:01][8196][INFO][MAIN] Duplicate execution. +[28 11:26:04][8202][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:04][8202][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:04][8202][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:04][8202][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:04][8202][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:04][8202][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:04][8202][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:04][8202][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:04][8202][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:04][8202][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:04][8202][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:04][8202][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:04][8202][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:04][8202][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:04][8202][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:04][8202][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:04][8202][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:04][8202][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:04][8202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:04][8202][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:04][8202][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:04][8202][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:04][8202][INFO][MAIN] Duplicate execution. +[28 11:26:07][8208][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:07][8208][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:07][8208][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:07][8208][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:07][8208][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:07][8208][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:07][8208][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:07][8208][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:07][8208][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:07][8208][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:07][8208][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:07][8208][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:07][8208][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:07][8208][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:07][8208][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:07][8208][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:07][8208][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:07][8208][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:07][8208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:07][8208][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:07][8208][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:07][8208][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:07][8208][INFO][MAIN] Duplicate execution. +[28 11:26:10][8214][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:10][8214][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:10][8214][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:10][8214][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:10][8214][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:10][8214][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:10][8214][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:10][8214][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:10][8214][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:10][8214][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:10][8214][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:10][8214][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:10][8214][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:10][8214][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:10][8214][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:10][8214][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:10][8214][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:10][8214][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:10][8214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:10][8214][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:10][8214][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:10][8214][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:10][8214][INFO][MAIN] Duplicate execution. +[28 11:26:13][8220][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:13][8220][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:13][8220][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:13][8220][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:13][8220][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:13][8220][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:13][8220][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:13][8220][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:13][8220][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:13][8220][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:13][8220][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:13][8220][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:13][8220][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:13][8220][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:13][8220][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:13][8220][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:13][8220][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:13][8220][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:13][8220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:13][8220][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:13][8220][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:13][8220][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:13][8220][INFO][MAIN] Duplicate execution. +[28 11:26:16][8226][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:16][8226][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:16][8226][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:16][8226][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:16][8226][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:16][8226][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:16][8226][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:16][8226][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:16][8226][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:16][8226][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:16][8226][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:16][8226][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:16][8226][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:16][8226][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:16][8226][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:16][8226][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:16][8226][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:16][8226][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:16][8226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:16][8226][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:16][8226][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:16][8226][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:16][8226][INFO][MAIN] Duplicate execution. +[28 11:26:19][8232][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:19][8232][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:19][8232][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:19][8232][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:19][8232][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:19][8232][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:19][8232][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:19][8232][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:19][8232][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:19][8232][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:19][8232][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:19][8232][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:19][8232][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:19][8232][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:19][8232][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:19][8232][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:19][8232][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:19][8232][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:19][8232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:19][8232][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:19][8232][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:19][8232][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:19][8232][INFO][MAIN] Duplicate execution. +[28 11:26:22][8238][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:22][8238][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:22][8238][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:22][8238][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:22][8238][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:22][8238][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:22][8238][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:22][8238][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:22][8238][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:22][8238][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:22][8238][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:22][8238][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:22][8238][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:22][8238][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:22][8238][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:22][8238][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:22][8238][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:22][8238][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:22][8238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:22][8238][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:22][8238][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:22][8238][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:22][8238][INFO][MAIN] Duplicate execution. +[28 11:26:25][8244][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:25][8244][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:25][8244][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:25][8244][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:25][8244][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:25][8244][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:25][8244][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:25][8244][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:25][8244][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:25][8244][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:25][8244][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:25][8244][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:25][8244][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:25][8244][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:25][8244][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:25][8244][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:25][8244][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:25][8244][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:25][8244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:25][8244][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:25][8244][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:25][8244][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:25][8244][INFO][MAIN] Duplicate execution. +[28 11:26:28][8250][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:28][8250][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:28][8250][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:28][8250][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:28][8250][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:28][8250][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:28][8250][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:28][8250][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:28][8250][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:28][8250][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:28][8250][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:28][8250][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:28][8250][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:28][8250][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:28][8250][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:28][8250][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:28][8250][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:28][8250][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:28][8250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:28][8250][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:28][8250][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:28][8250][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:28][8250][INFO][MAIN] Duplicate execution. +[28 11:26:31][8256][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:31][8256][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:31][8256][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:31][8256][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:31][8256][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:31][8256][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:31][8256][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:31][8256][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:31][8256][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:31][8256][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:31][8256][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:31][8256][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:31][8256][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:31][8256][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:31][8256][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:31][8256][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:31][8256][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:31][8256][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:31][8256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:31][8256][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:31][8256][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:31][8256][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:31][8256][INFO][MAIN] Duplicate execution. +[28 11:26:34][8262][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:34][8262][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:34][8262][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:34][8262][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:34][8262][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:34][8262][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:34][8262][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:34][8262][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:34][8262][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:34][8262][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:34][8262][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:34][8262][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:34][8262][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:34][8262][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:34][8262][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:34][8262][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:34][8262][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:34][8262][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:34][8262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:34][8262][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:34][8262][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:34][8262][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:34][8262][INFO][MAIN] Duplicate execution. +[28 11:26:37][8268][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:37][8268][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:37][8268][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:37][8268][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:37][8268][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:37][8268][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:37][8268][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:37][8268][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:37][8268][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:37][8268][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:37][8268][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:37][8268][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:37][8268][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:37][8268][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:37][8268][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:37][8268][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:37][8268][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:37][8268][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:37][8268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:37][8268][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:37][8268][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:37][8268][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:37][8268][INFO][MAIN] Duplicate execution. +[28 11:26:40][8274][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:40][8274][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:40][8274][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:40][8274][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:40][8274][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:40][8274][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:40][8274][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:40][8274][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:40][8274][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:40][8274][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:40][8274][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:40][8274][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:40][8274][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:40][8274][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:40][8274][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:40][8274][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:40][8274][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:40][8274][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:40][8274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:40][8274][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:40][8274][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:40][8274][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:40][8274][INFO][MAIN] Duplicate execution. +[28 11:26:43][8280][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:43][8280][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:43][8280][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:43][8280][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:43][8280][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:43][8280][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:43][8280][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:43][8280][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:43][8280][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:43][8280][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:43][8280][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:43][8280][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:43][8280][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:43][8280][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:43][8280][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:43][8280][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:43][8280][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:43][8280][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:43][8280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:43][8280][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:43][8280][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:43][8280][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:43][8280][INFO][MAIN] Duplicate execution. +[28 11:26:46][8286][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:46][8286][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:46][8286][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:46][8286][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:46][8286][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:46][8286][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:46][8286][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:46][8286][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:46][8286][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:46][8286][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:46][8286][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:46][8286][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:46][8286][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:46][8286][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:46][8286][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:46][8286][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:46][8286][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:46][8286][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:46][8286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:46][8286][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:46][8286][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:46][8286][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:46][8286][INFO][MAIN] Duplicate execution. +[28 11:26:49][8292][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:49][8292][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:49][8292][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:49][8292][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:49][8292][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:49][8292][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:49][8292][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:49][8292][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:49][8292][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:49][8292][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:49][8292][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:49][8292][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:49][8292][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:49][8292][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:49][8292][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:49][8292][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:49][8292][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:49][8292][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:49][8292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:49][8292][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:49][8292][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:49][8292][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:49][8292][INFO][MAIN] Duplicate execution. +[28 11:26:52][8298][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:52][8298][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:52][8298][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:52][8298][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:52][8298][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:52][8298][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:52][8298][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:52][8298][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:52][8298][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:52][8298][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:52][8298][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:52][8298][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:52][8298][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:52][8298][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:52][8298][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:52][8298][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:52][8298][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:52][8298][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:52][8298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:52][8298][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:52][8298][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:52][8298][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:52][8298][INFO][MAIN] Duplicate execution. +[28 11:26:55][8304][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:55][8304][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:55][8304][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:55][8304][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:55][8304][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:55][8304][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:55][8304][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:55][8304][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:55][8304][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:55][8304][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:55][8304][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:55][8304][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:55][8304][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:55][8304][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:55][8304][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:55][8304][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:55][8304][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:55][8304][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:55][8304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:55][8304][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:55][8304][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:55][8304][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:55][8304][INFO][MAIN] Duplicate execution. +[28 11:26:58][8310][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:26:58][8310][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:26:58][8310][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:26:58][8310][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:26:58][8310][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:26:58][8310][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:26:58][8310][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:26:58][8310][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:26:58][8310][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:26:58][8310][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:26:58][8310][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:26:58][8310][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:26:58][8310][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:26:58][8310][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:26:58][8310][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:26:58][8310][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:26:58][8310][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:26:58][8310][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:26:58][8310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:26:58][8310][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:26:58][8310][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:26:58][8310][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:26:58][8310][INFO][MAIN] Duplicate execution. +[28 11:27:01][8316][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:01][8316][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:01][8316][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:01][8316][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:01][8316][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:01][8316][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:01][8316][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:01][8316][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:01][8316][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:01][8316][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:01][8316][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:01][8316][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:01][8316][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:01][8316][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:01][8316][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:01][8316][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:01][8316][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:01][8316][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:01][8316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:01][8316][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:01][8316][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:01][8316][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:01][8316][INFO][MAIN] Duplicate execution. +[28 11:27:04][8322][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:04][8322][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:04][8322][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:04][8322][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:04][8322][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:04][8322][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:04][8322][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:04][8322][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:04][8322][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:04][8322][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:04][8322][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:04][8322][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:04][8322][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:04][8322][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:04][8322][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:04][8322][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:04][8322][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:04][8322][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:04][8322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:04][8322][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:04][8322][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:04][8322][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:04][8322][INFO][MAIN] Duplicate execution. +[28 11:27:07][8328][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:07][8328][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:07][8328][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:07][8328][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:07][8328][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:07][8328][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:07][8328][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:07][8328][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:07][8328][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:07][8328][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:07][8328][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:07][8328][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:07][8328][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:07][8328][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:07][8328][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:07][8328][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:07][8328][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:07][8328][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:07][8328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:07][8328][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:07][8328][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:07][8328][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:07][8328][INFO][MAIN] Duplicate execution. +[28 11:27:10][8334][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:10][8334][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:10][8334][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:10][8334][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:10][8334][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:10][8334][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:10][8334][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:10][8334][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:10][8334][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:10][8334][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:10][8334][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:10][8334][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:10][8334][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:10][8334][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:10][8334][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:10][8334][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:10][8334][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:10][8334][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:10][8334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:10][8334][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:10][8334][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:10][8334][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:10][8334][INFO][MAIN] Duplicate execution. +[28 11:27:13][8340][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:13][8340][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:13][8340][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:13][8340][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:13][8340][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:13][8340][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:13][8340][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:13][8340][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:13][8340][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:13][8340][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:13][8340][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:13][8340][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:13][8340][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:13][8340][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:13][8340][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:13][8340][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:13][8340][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:13][8340][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:13][8340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:13][8340][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:13][8340][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:13][8340][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:13][8340][INFO][MAIN] Duplicate execution. +[28 11:27:16][8346][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:16][8346][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:16][8346][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:16][8346][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:16][8346][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:16][8346][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:16][8346][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:16][8346][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:16][8346][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:16][8346][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:16][8346][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:16][8346][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:16][8346][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:16][8346][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:16][8346][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:16][8346][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:16][8346][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:16][8346][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:16][8346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:16][8346][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:16][8346][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:16][8346][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:16][8346][INFO][MAIN] Duplicate execution. +[28 11:27:19][8352][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:19][8352][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:19][8352][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:19][8352][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:19][8352][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:19][8352][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:19][8352][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:19][8352][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:19][8352][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:19][8352][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:19][8352][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:19][8352][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:19][8352][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:19][8352][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:19][8352][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:19][8352][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:19][8352][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:19][8352][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:19][8352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:19][8352][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:19][8352][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:19][8352][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:19][8352][INFO][MAIN] Duplicate execution. +[28 11:27:22][8358][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:22][8358][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:22][8358][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:22][8358][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:22][8358][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:22][8358][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:22][8358][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:22][8358][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:22][8358][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:22][8358][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:22][8358][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:22][8358][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:22][8358][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:22][8358][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:22][8358][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:22][8358][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:22][8358][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:22][8358][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:22][8358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:22][8358][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:22][8358][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:22][8358][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:22][8358][INFO][MAIN] Duplicate execution. +[28 11:27:25][8364][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:25][8364][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:25][8364][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:25][8364][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:25][8364][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:25][8364][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:25][8364][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:25][8364][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:25][8364][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:25][8364][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:25][8364][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:25][8364][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:25][8364][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:25][8364][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:25][8364][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:25][8364][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:25][8364][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:25][8364][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:25][8364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:25][8364][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:25][8364][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:25][8364][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:25][8364][INFO][MAIN] Duplicate execution. +[28 11:27:28][8370][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:28][8370][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:28][8370][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:28][8370][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:28][8370][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:28][8370][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:28][8370][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:28][8370][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:28][8370][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:28][8370][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:28][8370][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:28][8370][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:28][8370][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:28][8370][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:28][8370][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:28][8370][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:28][8370][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:28][8370][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:28][8370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:28][8370][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:28][8370][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:28][8370][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:28][8370][INFO][MAIN] Duplicate execution. +[28 11:27:31][8376][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:31][8376][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:31][8376][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:31][8376][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:31][8376][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:31][8376][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:31][8376][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:31][8376][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:31][8376][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:31][8376][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:31][8376][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:31][8376][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:31][8376][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:31][8376][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:31][8376][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:31][8376][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:31][8376][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:31][8376][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:31][8376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:31][8376][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:31][8376][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:31][8376][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:31][8376][INFO][MAIN] Duplicate execution. +[28 11:27:34][8382][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:34][8382][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:34][8382][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:34][8382][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:34][8382][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:34][8382][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:34][8382][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:34][8382][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:34][8382][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:34][8382][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:34][8382][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:34][8382][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:34][8382][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:34][8382][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:34][8382][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:34][8382][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:34][8382][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:34][8382][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:34][8382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:34][8382][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:34][8382][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:34][8382][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:34][8382][INFO][MAIN] Duplicate execution. +[28 11:27:37][8388][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:37][8388][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:37][8388][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:37][8388][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:37][8388][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:37][8388][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:37][8388][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:37][8388][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:37][8388][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:37][8388][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:37][8388][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:37][8388][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:37][8388][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:37][8388][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:37][8388][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:37][8388][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:37][8388][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:37][8388][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:37][8388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:37][8388][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:37][8388][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:37][8388][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:37][8388][INFO][MAIN] Duplicate execution. +[28 11:27:40][8394][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:40][8394][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:40][8394][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:40][8394][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:40][8394][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:40][8394][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:40][8394][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:40][8394][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:40][8394][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:40][8394][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:40][8394][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:40][8394][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:40][8394][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:40][8394][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:40][8394][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:40][8394][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:40][8394][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:40][8394][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:40][8394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:40][8394][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:40][8394][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:40][8394][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:40][8394][INFO][MAIN] Duplicate execution. +[28 11:27:43][8400][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:43][8400][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:43][8400][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:43][8400][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:43][8400][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:43][8400][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:43][8400][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:43][8400][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:43][8400][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:43][8400][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:43][8400][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:43][8400][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:43][8400][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:43][8400][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:43][8400][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:43][8400][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:43][8400][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:43][8400][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:43][8400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:43][8400][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:43][8400][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:43][8400][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:43][8400][INFO][MAIN] Duplicate execution. +[28 11:27:46][8406][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:46][8406][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:46][8406][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:46][8406][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:46][8406][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:46][8406][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:46][8406][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:46][8406][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:46][8406][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:46][8406][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:46][8406][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:46][8406][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:46][8406][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:46][8406][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:46][8406][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:46][8406][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:46][8406][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:46][8406][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:46][8406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:46][8406][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:46][8406][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:46][8406][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:46][8406][INFO][MAIN] Duplicate execution. +[28 11:27:49][8412][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:49][8412][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:49][8412][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:49][8412][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:49][8412][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:49][8412][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:49][8412][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:49][8412][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:49][8412][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:49][8412][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:49][8412][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:49][8412][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:49][8412][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:49][8412][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:49][8412][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:49][8412][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:49][8412][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:49][8412][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:49][8412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:49][8412][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:49][8412][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:49][8412][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:49][8412][INFO][MAIN] Duplicate execution. +[28 11:27:52][8418][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:52][8418][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:52][8418][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:52][8418][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:52][8418][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:52][8418][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:52][8418][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:52][8418][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:52][8418][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:52][8418][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:52][8418][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:52][8418][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:52][8418][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:52][8418][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:52][8418][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:52][8418][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:52][8418][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:52][8418][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:52][8418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:52][8418][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:52][8418][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:52][8418][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:52][8418][INFO][MAIN] Duplicate execution. +[28 11:27:55][8424][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:55][8424][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:55][8424][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:55][8424][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:55][8424][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:55][8424][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:55][8424][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:55][8424][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:55][8424][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:55][8424][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:55][8424][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:55][8424][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:55][8424][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:55][8424][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:55][8424][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:55][8424][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:55][8424][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:55][8424][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:55][8424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:55][8424][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:55][8424][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:55][8424][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:55][8424][INFO][MAIN] Duplicate execution. +[28 11:27:58][8430][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:27:58][8430][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:27:58][8430][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:27:58][8430][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:27:58][8430][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:27:58][8430][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:27:58][8430][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:27:58][8430][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:27:58][8430][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:27:58][8430][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:27:58][8430][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:27:58][8430][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:27:58][8430][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:27:58][8430][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:27:58][8430][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:27:58][8430][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:27:58][8430][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:27:58][8430][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:27:58][8430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:27:58][8430][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:27:58][8430][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:27:58][8430][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:27:58][8430][INFO][MAIN] Duplicate execution. +[28 11:28:01][8436][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:01][8436][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:01][8436][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:01][8436][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:01][8436][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:01][8436][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:01][8436][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:01][8436][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:01][8436][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:01][8436][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:01][8436][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:01][8436][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:01][8436][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:01][8436][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:01][8436][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:01][8436][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:01][8436][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:01][8436][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:01][8436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:01][8436][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:01][8436][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:01][8436][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:01][8436][INFO][MAIN] Duplicate execution. +[28 11:28:04][8442][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:04][8442][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:04][8442][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:04][8442][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:04][8442][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:04][8442][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:04][8442][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:04][8442][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:04][8442][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:04][8442][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:04][8442][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:04][8442][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:04][8442][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:04][8442][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:04][8442][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:04][8442][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:04][8442][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:04][8442][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:04][8442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:04][8442][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:04][8442][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:04][8442][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:04][8442][INFO][MAIN] Duplicate execution. +[28 11:28:07][8448][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:07][8448][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:07][8448][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:07][8448][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:07][8448][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:07][8448][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:07][8448][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:07][8448][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:07][8448][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:07][8448][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:07][8448][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:07][8448][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:07][8448][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:07][8448][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:07][8448][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:07][8448][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:07][8448][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:07][8448][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:07][8448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:07][8448][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:07][8448][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:07][8448][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:07][8448][INFO][MAIN] Duplicate execution. +[28 11:28:10][8454][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:10][8454][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:10][8454][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:10][8454][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:10][8454][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:10][8454][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:10][8454][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:10][8454][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:10][8454][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:10][8454][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:10][8454][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:10][8454][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:10][8454][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:10][8454][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:10][8454][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:10][8454][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:10][8454][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:10][8454][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:10][8454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:10][8454][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:10][8454][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:10][8454][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:10][8454][INFO][MAIN] Duplicate execution. +[28 11:28:13][8460][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:13][8460][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:13][8460][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:13][8460][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:13][8460][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:13][8460][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:13][8460][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:13][8460][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:13][8460][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:13][8460][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:13][8460][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:13][8460][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:13][8460][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:13][8460][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:13][8460][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:13][8460][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:13][8460][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:13][8460][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:13][8460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:13][8460][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:13][8460][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:13][8460][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:13][8460][INFO][MAIN] Duplicate execution. +[28 11:28:16][8466][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:16][8466][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:16][8466][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:16][8466][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:16][8466][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:16][8466][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:16][8466][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:16][8466][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:16][8466][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:16][8466][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:16][8466][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:16][8466][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:16][8466][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:16][8466][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:16][8466][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:16][8466][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:16][8466][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:16][8466][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:16][8466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:16][8466][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:16][8466][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:16][8466][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:16][8466][INFO][MAIN] Duplicate execution. +[28 11:28:19][8472][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:19][8472][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:19][8472][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:19][8472][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:19][8472][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:19][8472][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:19][8472][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:19][8472][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:19][8472][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:19][8472][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:19][8472][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:19][8472][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:19][8472][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:19][8472][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:19][8472][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:19][8472][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:19][8472][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:19][8472][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:19][8472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:19][8472][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:19][8472][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:19][8472][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:19][8472][INFO][MAIN] Duplicate execution. +[28 11:28:22][8478][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:22][8478][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:22][8478][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:22][8478][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:22][8478][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:22][8478][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:22][8478][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:22][8478][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:22][8478][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:22][8478][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:22][8478][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:22][8478][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:22][8478][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:22][8478][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:22][8478][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:22][8478][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:22][8478][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:22][8478][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:22][8478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:22][8478][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:22][8478][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:22][8478][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:22][8478][INFO][MAIN] Duplicate execution. +[28 11:28:25][8484][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:25][8484][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:25][8484][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:25][8484][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:25][8484][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:25][8484][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:25][8484][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:25][8484][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:25][8484][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:25][8484][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:25][8484][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:25][8484][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:25][8484][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:25][8484][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:25][8484][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:25][8484][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:25][8484][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:25][8484][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:25][8484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:25][8484][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:25][8484][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:25][8484][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:25][8484][INFO][MAIN] Duplicate execution. +[28 11:28:28][8490][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:28][8490][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:28][8490][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:28][8490][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:28][8490][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:28][8490][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:28][8490][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:28][8490][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:28][8490][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:28][8490][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:28][8490][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:28][8490][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:28][8490][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:28][8490][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:28][8490][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:28][8490][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:28][8490][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:28][8490][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:28][8490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:28][8490][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:28][8490][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:28][8490][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:28][8490][INFO][MAIN] Duplicate execution. +[28 11:28:31][8496][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:31][8496][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:31][8496][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:31][8496][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:31][8496][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:31][8496][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:31][8496][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:31][8496][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:31][8496][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:31][8496][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:31][8496][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:31][8496][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:31][8496][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:31][8496][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:31][8496][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:31][8496][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:31][8496][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:31][8496][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:31][8496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:31][8496][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:31][8496][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:31][8496][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:31][8496][INFO][MAIN] Duplicate execution. +[28 11:28:34][8502][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:34][8502][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:34][8502][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:34][8502][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:34][8502][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:34][8502][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:34][8502][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:34][8502][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:34][8502][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:34][8502][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:34][8502][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:34][8502][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:34][8502][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:34][8502][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:34][8502][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:34][8502][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:34][8502][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:34][8502][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:34][8502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:34][8502][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:34][8502][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:34][8502][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:34][8502][INFO][MAIN] Duplicate execution. +[28 11:28:37][8508][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:37][8508][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:37][8508][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:37][8508][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:37][8508][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:37][8508][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:37][8508][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:37][8508][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:37][8508][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:37][8508][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:37][8508][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:37][8508][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:37][8508][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:37][8508][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:37][8508][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:37][8508][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:37][8508][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:37][8508][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:37][8508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:37][8508][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:37][8508][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:37][8508][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:37][8508][INFO][MAIN] Duplicate execution. +[28 11:28:40][8514][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:40][8514][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:40][8514][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:40][8514][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:40][8514][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:40][8514][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:40][8514][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:40][8514][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:40][8514][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:40][8514][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:40][8514][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:40][8514][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:40][8514][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:40][8514][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:40][8514][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:40][8514][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:40][8514][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:40][8514][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:40][8514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:40][8514][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:40][8514][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:40][8514][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:40][8514][INFO][MAIN] Duplicate execution. +[28 11:28:43][8520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:43][8520][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:43][8520][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:43][8520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:43][8520][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:43][8520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:43][8520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:43][8520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:43][8520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:43][8520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:43][8520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:43][8520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:43][8520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:43][8520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:43][8520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:43][8520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:43][8520][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:43][8520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:43][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:43][8520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:43][8520][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:43][8520][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:43][8520][INFO][MAIN] Duplicate execution. +[28 11:28:46][8526][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:46][8526][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:46][8526][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:46][8526][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:46][8526][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:46][8526][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:46][8526][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:46][8526][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:46][8526][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:46][8526][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:46][8526][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:46][8526][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:46][8526][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:46][8526][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:46][8526][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:46][8526][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:46][8526][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:46][8526][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:46][8526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:46][8526][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:46][8526][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:46][8526][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:46][8526][INFO][MAIN] Duplicate execution. +[28 11:28:49][8532][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:49][8532][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:49][8532][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:49][8532][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:49][8532][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:49][8532][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:49][8532][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:49][8532][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:49][8532][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:49][8532][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:49][8532][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:49][8532][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:49][8532][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:49][8532][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:49][8532][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:49][8532][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:49][8532][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:49][8532][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:49][8532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:49][8532][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:49][8532][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:49][8532][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:49][8532][INFO][MAIN] Duplicate execution. +[28 11:28:52][8538][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:52][8538][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:52][8538][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:52][8538][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:52][8538][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:52][8538][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:52][8538][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:52][8538][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:52][8538][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:52][8538][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:52][8538][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:52][8538][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:52][8538][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:52][8538][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:52][8538][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:52][8538][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:52][8538][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:52][8538][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:52][8538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:52][8538][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:52][8538][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:52][8538][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:52][8538][INFO][MAIN] Duplicate execution. +[28 11:28:55][8544][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:55][8544][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:55][8544][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:55][8544][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:55][8544][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:55][8544][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:55][8544][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:55][8544][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:55][8544][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:55][8544][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:55][8544][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:55][8544][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:55][8544][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:55][8544][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:55][8544][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:55][8544][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:55][8544][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:55][8544][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:55][8544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:55][8544][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:55][8544][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:55][8544][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:55][8544][INFO][MAIN] Duplicate execution. +[28 11:28:58][8550][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:28:58][8550][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:28:58][8550][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:28:58][8550][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:28:58][8550][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:28:58][8550][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:28:58][8550][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:28:58][8550][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:28:58][8550][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:28:58][8550][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:28:58][8550][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:28:58][8550][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:28:58][8550][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:28:58][8550][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:28:58][8550][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:28:58][8550][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:28:58][8550][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:28:58][8550][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:28:58][8550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:28:58][8550][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:28:58][8550][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:28:58][8550][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:28:58][8550][INFO][MAIN] Duplicate execution. +[28 11:29:01][8556][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:01][8556][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:01][8556][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:01][8556][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:01][8556][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:01][8556][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:01][8556][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:01][8556][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:01][8556][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:01][8556][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:01][8556][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:01][8556][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:01][8556][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:01][8556][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:01][8556][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:01][8556][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:01][8556][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:01][8556][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:01][8556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:01][8556][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:01][8556][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:01][8556][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:01][8556][INFO][MAIN] Duplicate execution. +[28 11:29:04][8562][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:04][8562][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:04][8562][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:04][8562][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:04][8562][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:04][8562][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:04][8562][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:04][8562][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:04][8562][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:04][8562][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:04][8562][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:04][8562][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:04][8562][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:04][8562][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:04][8562][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:04][8562][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:04][8562][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:04][8562][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:04][8562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:04][8562][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:04][8562][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:04][8562][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:04][8562][INFO][MAIN] Duplicate execution. +[28 11:29:07][8568][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:07][8568][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:07][8568][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:07][8568][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:07][8568][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:07][8568][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:07][8568][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:07][8568][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:07][8568][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:07][8568][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:07][8568][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:07][8568][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:07][8568][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:07][8568][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:07][8568][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:07][8568][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:07][8568][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:07][8568][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:07][8568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:07][8568][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:07][8568][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:07][8568][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:07][8568][INFO][MAIN] Duplicate execution. +[28 11:29:10][8574][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:10][8574][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:10][8574][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:10][8574][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:10][8574][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:10][8574][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:10][8574][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:10][8574][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:10][8574][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:10][8574][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:10][8574][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:10][8574][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:10][8574][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:10][8574][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:10][8574][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:10][8574][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:10][8574][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:10][8574][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:10][8574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:10][8574][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:10][8574][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:10][8574][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:10][8574][INFO][MAIN] Duplicate execution. +[28 11:29:13][8580][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:13][8580][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:13][8580][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:13][8580][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:13][8580][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:13][8580][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:13][8580][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:13][8580][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:13][8580][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:13][8580][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:13][8580][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:13][8580][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:13][8580][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:13][8580][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:13][8580][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:13][8580][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:13][8580][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:13][8580][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:13][8580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:13][8580][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:13][8580][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:13][8580][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:13][8580][INFO][MAIN] Duplicate execution. +[28 11:29:16][8586][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:16][8586][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:16][8586][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:16][8586][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:16][8586][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:16][8586][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:16][8586][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:16][8586][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:16][8586][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:16][8586][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:16][8586][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:16][8586][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:16][8586][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:16][8586][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:16][8586][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:16][8586][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:16][8586][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:16][8586][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:16][8586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:16][8586][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:16][8586][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:16][8586][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:16][8586][INFO][MAIN] Duplicate execution. +[28 11:29:19][8592][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:19][8592][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:19][8592][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:19][8592][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:19][8592][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:19][8592][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:19][8592][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:19][8592][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:19][8592][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:19][8592][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:19][8592][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:19][8592][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:19][8592][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:19][8592][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:19][8592][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:19][8592][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:19][8592][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:19][8592][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:19][8592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:19][8592][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:19][8592][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:19][8592][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:19][8592][INFO][MAIN] Duplicate execution. +[28 11:29:22][8598][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:22][8598][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:22][8598][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:22][8598][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:22][8598][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:22][8598][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:22][8598][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:22][8598][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:22][8598][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:22][8598][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:22][8598][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:22][8598][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:22][8598][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:22][8598][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:22][8598][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:22][8598][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:22][8598][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:22][8598][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:22][8598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:22][8598][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:22][8598][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:22][8598][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:22][8598][INFO][MAIN] Duplicate execution. +[28 11:29:25][8604][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:25][8604][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:25][8604][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:25][8604][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:25][8604][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:25][8604][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:25][8604][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:25][8604][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:25][8604][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:25][8604][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:25][8604][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:25][8604][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:25][8604][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:25][8604][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:25][8604][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:25][8604][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:25][8604][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:25][8604][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:25][8604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:25][8604][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:25][8604][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:25][8604][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:25][8604][INFO][MAIN] Duplicate execution. +[28 11:29:28][8610][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:28][8610][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:28][8610][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:28][8610][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:28][8610][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:28][8610][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:28][8610][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:28][8610][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:28][8610][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:28][8610][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:28][8610][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:28][8610][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:28][8610][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:28][8610][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:28][8610][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:28][8610][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:28][8610][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:28][8610][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:28][8610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:28][8610][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:28][8610][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:28][8610][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:28][8610][INFO][MAIN] Duplicate execution. +[28 11:29:31][8616][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:31][8616][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:31][8616][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:31][8616][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:31][8616][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:31][8616][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:31][8616][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:31][8616][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:31][8616][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:31][8616][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:31][8616][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:31][8616][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:31][8616][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:31][8616][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:31][8616][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:31][8616][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:31][8616][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:31][8616][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:31][8616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:31][8616][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:31][8616][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:31][8616][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:31][8616][INFO][MAIN] Duplicate execution. +[28 11:29:34][8622][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:34][8622][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:34][8622][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:34][8622][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:34][8622][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:34][8622][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:34][8622][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:34][8622][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:34][8622][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:34][8622][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:34][8622][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:34][8622][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:34][8622][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:34][8622][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:34][8622][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:34][8622][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:34][8622][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:34][8622][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:34][8622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:34][8622][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:34][8622][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:34][8622][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:34][8622][INFO][MAIN] Duplicate execution. +[28 11:29:37][8628][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:37][8628][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:37][8628][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:37][8628][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:37][8628][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:37][8628][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:37][8628][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:37][8628][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:37][8628][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:37][8628][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:37][8628][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:37][8628][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:37][8628][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:37][8628][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:37][8628][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:37][8628][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:37][8628][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:37][8628][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:37][8628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:37][8628][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:37][8628][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:37][8628][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:37][8628][INFO][MAIN] Duplicate execution. +[28 11:29:40][8634][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:40][8634][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:40][8634][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:40][8634][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:40][8634][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:40][8634][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:40][8634][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:40][8634][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:40][8634][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:40][8634][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:40][8634][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:40][8634][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:40][8634][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:40][8634][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:40][8634][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:40][8634][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:40][8634][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:40][8634][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:40][8634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:40][8634][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:40][8634][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:40][8634][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:40][8634][INFO][MAIN] Duplicate execution. +[28 11:29:43][8640][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:43][8640][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:43][8640][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:43][8640][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:43][8640][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:43][8640][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:43][8640][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:43][8640][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:43][8640][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:43][8640][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:43][8640][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:43][8640][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:43][8640][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:43][8640][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:43][8640][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:43][8640][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:43][8640][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:43][8640][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:43][8640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:43][8640][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:43][8640][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:43][8640][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:43][8640][INFO][MAIN] Duplicate execution. +[28 11:29:46][8646][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:46][8646][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:46][8646][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:46][8646][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:46][8646][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:46][8646][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:46][8646][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:46][8646][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:46][8646][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:46][8646][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:46][8646][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:46][8646][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:46][8646][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:46][8646][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:46][8646][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:46][8646][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:46][8646][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:46][8646][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:46][8646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:46][8646][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:46][8646][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:46][8646][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:46][8646][INFO][MAIN] Duplicate execution. +[28 11:29:49][8652][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:49][8652][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:49][8652][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:49][8652][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:49][8652][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:49][8652][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:49][8652][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:49][8652][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:49][8652][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:49][8652][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:49][8652][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:49][8652][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:49][8652][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:49][8652][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:49][8652][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:49][8652][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:49][8652][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:49][8652][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:49][8652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:49][8652][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:49][8652][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:49][8652][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:49][8652][INFO][MAIN] Duplicate execution. +[28 11:29:52][8658][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:52][8658][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:52][8658][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:52][8658][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:52][8658][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:52][8658][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:52][8658][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:52][8658][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:52][8658][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:52][8658][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:52][8658][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:52][8658][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:52][8658][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:52][8658][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:52][8658][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:52][8658][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:52][8658][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:52][8658][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:52][8658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:52][8658][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:52][8658][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:52][8658][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:52][8658][INFO][MAIN] Duplicate execution. +[28 11:29:55][8664][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:55][8664][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:55][8664][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:55][8664][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:55][8664][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:55][8664][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:55][8664][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:55][8664][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:55][8664][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:55][8664][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:55][8664][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:55][8664][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:55][8664][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:55][8664][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:55][8664][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:55][8664][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:55][8664][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:55][8664][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:55][8664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:55][8664][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:55][8664][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:55][8664][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:55][8664][INFO][MAIN] Duplicate execution. +[28 11:29:58][8670][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:29:58][8670][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:29:58][8670][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:29:58][8670][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:29:58][8670][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:29:58][8670][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:29:58][8670][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:29:58][8670][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:29:58][8670][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:29:58][8670][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:29:58][8670][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:29:58][8670][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:29:58][8670][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:29:58][8670][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:29:58][8670][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:29:58][8670][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:29:58][8670][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:29:58][8670][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:29:58][8670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:29:58][8670][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:29:58][8670][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:29:58][8670][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:29:58][8670][INFO][MAIN] Duplicate execution. +[28 11:30:01][8676][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:01][8676][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:01][8676][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:01][8676][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:01][8676][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:01][8676][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:01][8676][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:01][8676][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:01][8676][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:01][8676][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:01][8676][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:01][8676][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:01][8676][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:01][8676][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:01][8676][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:01][8676][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:01][8676][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:01][8676][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:01][8676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:01][8676][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:01][8676][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:01][8676][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:01][8676][INFO][MAIN] Duplicate execution. +[28 11:30:04][8682][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:04][8682][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:04][8682][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:04][8682][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:04][8682][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:04][8682][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:04][8682][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:04][8682][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:04][8682][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:04][8682][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:04][8682][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:04][8682][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:04][8682][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:04][8682][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:04][8682][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:04][8682][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:04][8682][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:04][8682][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:04][8682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:04][8682][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:04][8682][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:04][8682][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:04][8682][INFO][MAIN] Duplicate execution. +[28 11:30:07][8688][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:07][8688][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:07][8688][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:07][8688][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:07][8688][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:07][8688][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:07][8688][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:07][8688][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:07][8688][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:07][8688][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:07][8688][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:07][8688][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:07][8688][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:07][8688][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:07][8688][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:07][8688][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:07][8688][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:07][8688][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:07][8688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:07][8688][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:07][8688][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:07][8688][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:07][8688][INFO][MAIN] Duplicate execution. +[28 11:30:10][8694][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:10][8694][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:10][8694][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:10][8694][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:10][8694][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:10][8694][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:10][8694][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:10][8694][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:10][8694][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:10][8694][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:10][8694][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:10][8694][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:10][8694][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:10][8694][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:10][8694][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:10][8694][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:10][8694][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:10][8694][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:10][8694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:10][8694][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:10][8694][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:10][8694][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:10][8694][INFO][MAIN] Duplicate execution. +[28 11:30:13][8700][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:13][8700][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:13][8700][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:13][8700][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:13][8700][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:13][8700][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:13][8700][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:13][8700][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:13][8700][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:13][8700][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:13][8700][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:13][8700][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:13][8700][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:13][8700][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:13][8700][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:13][8700][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:13][8700][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:13][8700][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:13][8700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:13][8700][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:13][8700][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:13][8700][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:13][8700][INFO][MAIN] Duplicate execution. +[28 11:30:16][8706][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:16][8706][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:16][8706][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:16][8706][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:16][8706][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:16][8706][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:16][8706][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:16][8706][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:16][8706][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:16][8706][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:16][8706][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:16][8706][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:16][8706][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:16][8706][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:16][8706][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:16][8706][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:16][8706][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:16][8706][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:16][8706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:16][8706][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:16][8706][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:16][8706][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:16][8706][INFO][MAIN] Duplicate execution. +[28 11:30:19][8712][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:19][8712][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:19][8712][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:19][8712][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:19][8712][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:19][8712][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:19][8712][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:19][8712][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:19][8712][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:19][8712][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:19][8712][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:19][8712][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:19][8712][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:19][8712][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:19][8712][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:19][8712][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:19][8712][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:19][8712][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:19][8712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:19][8712][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:19][8712][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:19][8712][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:19][8712][INFO][MAIN] Duplicate execution. +[28 11:30:22][8718][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:22][8718][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:22][8718][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:22][8718][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:22][8718][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:22][8718][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:22][8718][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:22][8718][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:22][8718][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:22][8718][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:22][8718][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:22][8718][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:22][8718][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:22][8718][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:22][8718][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:22][8718][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:22][8718][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:22][8718][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:22][8718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:22][8718][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:22][8718][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:22][8718][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:22][8718][INFO][MAIN] Duplicate execution. +[28 11:30:25][8724][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:25][8724][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:25][8724][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:25][8724][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:25][8724][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:25][8724][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:25][8724][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:25][8724][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:25][8724][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:25][8724][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:25][8724][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:25][8724][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:25][8724][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:25][8724][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:25][8724][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:25][8724][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:25][8724][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:25][8724][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:25][8724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:25][8724][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:25][8724][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:25][8724][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:25][8724][INFO][MAIN] Duplicate execution. +[28 11:30:28][8730][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:28][8730][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:28][8730][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:28][8730][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:28][8730][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:28][8730][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:28][8730][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:28][8730][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:28][8730][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:28][8730][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:28][8730][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:28][8730][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:28][8730][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:28][8730][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:28][8730][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:28][8730][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:28][8730][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:28][8730][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:28][8730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:28][8730][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:28][8730][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:28][8730][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:28][8730][INFO][MAIN] Duplicate execution. +[28 11:30:31][8736][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:31][8736][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:31][8736][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:31][8736][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:31][8736][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:31][8736][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:31][8736][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:31][8736][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:31][8736][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:31][8736][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:31][8736][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:31][8736][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:31][8736][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:31][8736][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:31][8736][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:31][8736][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:31][8736][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:31][8736][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:31][8736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:31][8736][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:31][8736][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:31][8736][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:31][8736][INFO][MAIN] Duplicate execution. +[28 11:30:34][8742][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:34][8742][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:34][8742][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:34][8742][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:34][8742][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:34][8742][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:34][8742][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:34][8742][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:34][8742][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:34][8742][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:34][8742][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:34][8742][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:34][8742][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:34][8742][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:34][8742][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:34][8742][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:34][8742][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:34][8742][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:34][8742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:34][8742][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:34][8742][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:34][8742][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:34][8742][INFO][MAIN] Duplicate execution. +[28 11:30:37][8748][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:37][8748][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:37][8748][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:37][8748][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:37][8748][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:37][8748][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:37][8748][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:37][8748][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:37][8748][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:37][8748][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:37][8748][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:37][8748][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:37][8748][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:37][8748][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:37][8748][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:37][8748][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:37][8748][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:37][8748][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:37][8748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:37][8748][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:37][8748][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:37][8748][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:37][8748][INFO][MAIN] Duplicate execution. +[28 11:30:40][8754][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:40][8754][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:40][8754][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:40][8754][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:40][8754][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:40][8754][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:40][8754][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:40][8754][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:40][8754][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:40][8754][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:40][8754][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:40][8754][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:40][8754][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:40][8754][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:40][8754][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:40][8754][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:40][8754][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:40][8754][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:40][8754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:40][8754][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:40][8754][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:40][8754][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:40][8754][INFO][MAIN] Duplicate execution. +[28 11:30:43][8760][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:43][8760][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:43][8760][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:43][8760][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:43][8760][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:43][8760][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:43][8760][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:43][8760][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:43][8760][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:43][8760][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:43][8760][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:43][8760][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:43][8760][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:43][8760][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:43][8760][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:43][8760][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:43][8760][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:43][8760][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:43][8760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:43][8760][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:43][8760][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:43][8760][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:43][8760][INFO][MAIN] Duplicate execution. +[28 11:30:46][8766][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:46][8766][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:46][8766][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:46][8766][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:46][8766][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:46][8766][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:46][8766][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:46][8766][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:46][8766][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:46][8766][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:46][8766][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:46][8766][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:46][8766][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:46][8766][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:46][8766][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:46][8766][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:46][8766][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:46][8766][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:46][8766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:46][8766][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:46][8766][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:46][8766][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:46][8766][INFO][MAIN] Duplicate execution. +[28 11:30:49][8772][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:49][8772][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:49][8772][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:49][8772][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:49][8772][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:49][8772][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:49][8772][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:49][8772][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:49][8772][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:49][8772][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:49][8772][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:49][8772][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:49][8772][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:49][8772][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:49][8772][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:49][8772][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:49][8772][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:49][8772][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:49][8772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:49][8772][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:49][8772][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:49][8772][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:49][8772][INFO][MAIN] Duplicate execution. +[28 11:30:52][8778][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:52][8778][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:52][8778][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:52][8778][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:52][8778][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:52][8778][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:52][8778][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:52][8778][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:52][8778][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:52][8778][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:52][8778][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:52][8778][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:52][8778][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:52][8778][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:52][8778][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:52][8778][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:52][8778][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:52][8778][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:52][8778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:52][8778][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:52][8778][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:52][8778][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:52][8778][INFO][MAIN] Duplicate execution. +[28 11:30:56][8784][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:56][8784][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:56][8784][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:56][8784][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:56][8784][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:56][8784][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:56][8784][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:56][8784][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:56][8784][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:56][8784][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:56][8784][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:56][8784][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:56][8784][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:56][8784][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:56][8784][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:56][8784][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:56][8784][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:56][8784][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:56][8784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:56][8784][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:56][8784][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:56][8784][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:56][8784][INFO][MAIN] Duplicate execution. +[28 11:30:58][8790][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:30:58][8790][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:30:58][8790][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:30:58][8790][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:30:58][8790][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:30:58][8790][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:30:58][8790][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:30:58][8790][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:30:58][8790][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:30:58][8790][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:30:58][8790][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:30:58][8790][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:30:58][8790][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:30:58][8790][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:30:58][8790][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:30:58][8790][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:30:58][8790][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:30:58][8790][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:30:58][8790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:30:58][8790][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:30:58][8790][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:30:58][8790][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:30:58][8790][INFO][MAIN] Duplicate execution. +[28 11:31:01][8796][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:01][8796][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:01][8796][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:01][8796][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:01][8796][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:01][8796][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:01][8796][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:01][8796][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:01][8796][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:01][8796][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:01][8796][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:01][8796][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:01][8796][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:01][8796][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:01][8796][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:01][8796][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:01][8796][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:01][8796][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:01][8796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:01][8796][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:01][8796][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:01][8796][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:01][8796][INFO][MAIN] Duplicate execution. +[28 11:31:04][8802][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:04][8802][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:04][8802][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:04][8802][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:04][8802][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:04][8802][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:04][8802][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:04][8802][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:04][8802][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:04][8802][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:04][8802][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:04][8802][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:04][8802][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:04][8802][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:04][8802][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:04][8802][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:04][8802][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:04][8802][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:04][8802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:04][8802][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:04][8802][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:04][8802][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:04][8802][INFO][MAIN] Duplicate execution. +[28 11:31:07][8808][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:07][8808][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:07][8808][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:07][8808][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:07][8808][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:07][8808][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:07][8808][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:07][8808][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:07][8808][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:07][8808][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:07][8808][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:07][8808][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:07][8808][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:07][8808][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:07][8808][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:07][8808][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:07][8808][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:07][8808][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:07][8808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:07][8808][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:07][8808][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:07][8808][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:07][8808][INFO][MAIN] Duplicate execution. +[28 11:31:10][8814][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:10][8814][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:10][8814][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:10][8814][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:10][8814][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:10][8814][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:10][8814][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:10][8814][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:10][8814][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:10][8814][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:10][8814][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:10][8814][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:10][8814][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:10][8814][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:10][8814][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:10][8814][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:10][8814][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:10][8814][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:10][8814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:10][8814][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:10][8814][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:10][8814][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:10][8814][INFO][MAIN] Duplicate execution. +[28 11:31:13][8820][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:13][8820][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:13][8820][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:13][8820][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:13][8820][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:13][8820][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:13][8820][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:13][8820][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:13][8820][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:13][8820][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:13][8820][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:13][8820][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:13][8820][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:13][8820][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:13][8820][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:13][8820][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:13][8820][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:13][8820][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:13][8820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:13][8820][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:13][8820][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:13][8820][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:13][8820][INFO][MAIN] Duplicate execution. +[28 11:31:16][8826][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:16][8826][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:16][8826][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:16][8826][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:16][8826][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:16][8826][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:16][8826][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:16][8826][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:16][8826][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:16][8826][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:16][8826][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:16][8826][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:16][8826][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:16][8826][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:16][8826][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:16][8826][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:16][8826][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:16][8826][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:16][8826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:16][8826][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:16][8826][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:16][8826][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:16][8826][INFO][MAIN] Duplicate execution. +[28 11:31:19][8832][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:19][8832][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:19][8832][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:19][8832][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:19][8832][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:19][8832][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:19][8832][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:19][8832][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:19][8832][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:19][8832][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:19][8832][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:19][8832][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:19][8832][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:19][8832][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:19][8832][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:19][8832][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:19][8832][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:19][8832][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:19][8832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:19][8832][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:19][8832][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:19][8832][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:19][8832][INFO][MAIN] Duplicate execution. +[28 11:31:22][8838][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:22][8838][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:22][8838][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:22][8838][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:22][8838][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:22][8838][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:22][8838][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:22][8838][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:22][8838][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:22][8838][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:22][8838][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:22][8838][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:22][8838][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:22][8838][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:22][8838][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:22][8838][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:22][8838][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:22][8838][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:22][8838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:22][8838][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:22][8838][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:22][8838][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:22][8838][INFO][MAIN] Duplicate execution. +[28 11:31:25][8844][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:25][8844][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:25][8844][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:25][8844][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:25][8844][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:25][8844][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:25][8844][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:25][8844][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:25][8844][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:25][8844][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:25][8844][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:25][8844][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:25][8844][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:25][8844][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:25][8844][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:25][8844][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:25][8844][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:25][8844][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:25][8844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:25][8844][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:25][8844][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:25][8844][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:25][8844][INFO][MAIN] Duplicate execution. +[28 11:31:28][8850][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:28][8850][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:28][8850][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:28][8850][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:28][8850][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:28][8850][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:28][8850][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:28][8850][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:28][8850][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:28][8850][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:28][8850][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:28][8850][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:28][8850][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:28][8850][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:28][8850][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:28][8850][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:28][8850][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:28][8850][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:28][8850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:28][8850][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:28][8850][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:28][8850][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:28][8850][INFO][MAIN] Duplicate execution. +[28 11:31:31][8856][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:31][8856][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:31][8856][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:31][8856][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:31][8856][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:31][8856][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:31][8856][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:31][8856][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:31][8856][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:31][8856][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:31][8856][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:31][8856][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:31][8856][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:31][8856][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:31][8856][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:31][8856][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:31][8856][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:31][8856][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:31][8856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:31][8856][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:31][8856][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:31][8856][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:31][8856][INFO][MAIN] Duplicate execution. +[28 11:31:34][8862][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:34][8862][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:34][8862][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:34][8862][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:34][8862][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:34][8862][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:34][8862][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:34][8862][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:34][8862][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:34][8862][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:34][8862][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:34][8862][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:34][8862][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:34][8862][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:34][8862][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:34][8862][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:34][8862][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:34][8862][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:34][8862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:34][8862][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:34][8862][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:34][8862][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:34][8862][INFO][MAIN] Duplicate execution. +[28 11:31:37][8868][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:37][8868][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:37][8868][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:37][8868][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:37][8868][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:37][8868][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:37][8868][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:37][8868][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:37][8868][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:37][8868][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:37][8868][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:37][8868][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:37][8868][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:37][8868][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:37][8868][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:37][8868][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:37][8868][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:37][8868][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:37][8868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:37][8868][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:37][8868][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:37][8868][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:37][8868][INFO][MAIN] Duplicate execution. +[28 11:31:40][8874][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:40][8874][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:40][8874][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:40][8874][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:40][8874][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:40][8874][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:40][8874][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:40][8874][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:40][8874][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:40][8874][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:40][8874][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:40][8874][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:40][8874][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:40][8874][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:40][8874][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:40][8874][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:40][8874][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:40][8874][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:40][8874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:40][8874][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:40][8874][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:40][8874][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:40][8874][INFO][MAIN] Duplicate execution. +[28 11:31:43][8880][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:43][8880][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:43][8880][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:43][8880][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:43][8880][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:43][8880][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:43][8880][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:43][8880][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:43][8880][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:43][8880][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:43][8880][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:43][8880][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:43][8880][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:43][8880][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:43][8880][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:43][8880][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:43][8880][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:43][8880][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:43][8880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:43][8880][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:43][8880][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:43][8880][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:43][8880][INFO][MAIN] Duplicate execution. +[28 11:31:46][8886][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:46][8886][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:46][8886][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:46][8886][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:46][8886][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:46][8886][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:46][8886][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:46][8886][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:46][8886][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:46][8886][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:46][8886][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:46][8886][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:46][8886][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:46][8886][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:46][8886][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:46][8886][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:46][8886][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:46][8886][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:46][8886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:46][8886][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:46][8886][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:46][8886][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:46][8886][INFO][MAIN] Duplicate execution. +[28 11:31:49][8892][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:49][8892][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:49][8892][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:49][8892][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:49][8892][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:49][8892][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:49][8892][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:49][8892][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:49][8892][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:49][8892][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:49][8892][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:49][8892][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:49][8892][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:49][8892][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:49][8892][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:49][8892][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:49][8892][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:49][8892][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:49][8892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:49][8892][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:49][8892][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:49][8892][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:49][8892][INFO][MAIN] Duplicate execution. +[28 11:31:52][8898][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:52][8898][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:52][8898][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:52][8898][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:52][8898][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:52][8898][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:52][8898][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:52][8898][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:52][8898][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:52][8898][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:52][8898][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:52][8898][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:52][8898][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:52][8898][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:52][8898][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:52][8898][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:52][8898][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:52][8898][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:52][8898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:52][8898][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:52][8898][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:52][8898][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:52][8898][INFO][MAIN] Duplicate execution. +[28 11:31:55][8904][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:55][8904][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:55][8904][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:55][8904][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:55][8904][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:55][8904][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:55][8904][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:55][8904][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:55][8904][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:55][8904][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:55][8904][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:55][8904][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:55][8904][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:55][8904][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:55][8904][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:55][8904][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:55][8904][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:55][8904][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:55][8904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:55][8904][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:55][8904][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:55][8904][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:55][8904][INFO][MAIN] Duplicate execution. +[28 11:31:58][8910][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:31:58][8910][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:31:58][8910][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:31:58][8910][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:31:58][8910][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:31:58][8910][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:31:58][8910][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:31:58][8910][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:31:58][8910][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:31:58][8910][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:31:58][8910][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:31:58][8910][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:31:58][8910][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:31:58][8910][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:31:58][8910][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:31:58][8910][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:31:58][8910][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:31:58][8910][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:31:58][8910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:31:58][8910][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:31:58][8910][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:31:58][8910][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:31:58][8910][INFO][MAIN] Duplicate execution. +[28 11:32:01][8916][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:01][8916][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:01][8916][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:01][8916][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:01][8916][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:01][8916][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:01][8916][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:01][8916][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:01][8916][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:01][8916][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:01][8916][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:01][8916][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:01][8916][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:01][8916][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:01][8916][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:01][8916][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:01][8916][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:01][8916][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:01][8916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:01][8916][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:01][8916][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:01][8916][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:01][8916][INFO][MAIN] Duplicate execution. +[28 11:32:04][8922][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:04][8922][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:04][8922][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:04][8922][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:04][8922][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:04][8922][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:04][8922][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:04][8922][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:04][8922][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:04][8922][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:04][8922][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:04][8922][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:04][8922][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:04][8922][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:04][8922][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:04][8922][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:04][8922][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:04][8922][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:04][8922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:04][8922][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:04][8922][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:04][8922][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:04][8922][INFO][MAIN] Duplicate execution. +[28 11:32:07][8928][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:07][8928][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:07][8928][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:07][8928][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:07][8928][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:07][8928][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:07][8928][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:07][8928][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:07][8928][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:07][8928][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:07][8928][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:07][8928][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:07][8928][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:07][8928][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:07][8928][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:07][8928][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:07][8928][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:07][8928][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:07][8928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:07][8928][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:07][8928][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:07][8928][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:07][8928][INFO][MAIN] Duplicate execution. +[28 11:32:10][8934][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:10][8934][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:10][8934][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:10][8934][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:10][8934][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:10][8934][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:10][8934][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:10][8934][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:10][8934][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:10][8934][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:10][8934][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:10][8934][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:10][8934][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:10][8934][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:10][8934][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:10][8934][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:10][8934][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:10][8934][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:10][8934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:10][8934][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:10][8934][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:10][8934][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:10][8934][INFO][MAIN] Duplicate execution. +[28 11:32:13][8940][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:13][8940][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:13][8940][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:13][8940][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:13][8940][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:13][8940][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:13][8940][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:13][8940][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:13][8940][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:13][8940][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:13][8940][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:13][8940][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:13][8940][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:13][8940][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:13][8940][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:13][8940][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:13][8940][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:13][8940][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:13][8940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:13][8940][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:13][8940][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:13][8940][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:13][8940][INFO][MAIN] Duplicate execution. +[28 11:32:16][8946][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:16][8946][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:16][8946][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:16][8946][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:16][8946][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:16][8946][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:16][8946][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:16][8946][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:16][8946][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:16][8946][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:16][8946][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:16][8946][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:16][8946][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:16][8946][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:16][8946][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:16][8946][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:16][8946][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:16][8946][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:16][8946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:16][8946][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:16][8946][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:16][8946][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:16][8946][INFO][MAIN] Duplicate execution. +[28 11:32:19][8952][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:19][8952][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:19][8952][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:19][8952][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:19][8952][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:19][8952][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:19][8952][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:19][8952][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:19][8952][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:19][8952][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:19][8952][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:19][8952][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:19][8952][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:19][8952][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:19][8952][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:19][8952][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:19][8952][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:19][8952][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:19][8952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:19][8952][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:19][8952][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:19][8952][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:19][8952][INFO][MAIN] Duplicate execution. +[28 11:32:22][8958][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:22][8958][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:22][8958][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:22][8958][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:22][8958][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:22][8958][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:22][8958][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:22][8958][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:22][8958][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:22][8958][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:22][8958][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:22][8958][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:22][8958][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:22][8958][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:22][8958][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:22][8958][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:22][8958][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:22][8958][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:22][8958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:22][8958][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:22][8958][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:22][8958][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:22][8958][INFO][MAIN] Duplicate execution. +[28 11:32:25][8964][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:25][8964][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:25][8964][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:25][8964][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:25][8964][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:25][8964][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:25][8964][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:25][8964][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:25][8964][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:25][8964][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:25][8964][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:25][8964][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:25][8964][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:25][8964][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:25][8964][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:25][8964][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:25][8964][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:25][8964][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:25][8964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:25][8964][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:25][8964][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:25][8964][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:25][8964][INFO][MAIN] Duplicate execution. +[28 11:32:28][8970][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:28][8970][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:28][8970][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:28][8970][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:28][8970][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:28][8970][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:28][8970][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:28][8970][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:28][8970][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:28][8970][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:28][8970][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:28][8970][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:28][8970][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:28][8970][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:28][8970][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:28][8970][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:28][8970][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:28][8970][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:28][8970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:28][8970][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:28][8970][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:28][8970][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:28][8970][INFO][MAIN] Duplicate execution. +[28 11:32:31][8976][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:31][8976][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:31][8976][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:31][8976][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:31][8976][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:31][8976][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:31][8976][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:31][8976][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:31][8976][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:31][8976][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:31][8976][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:31][8976][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:31][8976][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:31][8976][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:31][8976][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:31][8976][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:31][8976][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:31][8976][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:31][8976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:31][8976][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:31][8976][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:31][8976][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:31][8976][INFO][MAIN] Duplicate execution. +[28 11:32:34][8982][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:34][8982][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:34][8982][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:34][8982][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:34][8982][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:34][8982][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:34][8982][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:34][8982][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:34][8982][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:34][8982][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:34][8982][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:34][8982][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:34][8982][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:34][8982][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:34][8982][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:34][8982][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:34][8982][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:34][8982][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:34][8982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:34][8982][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:34][8982][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:34][8982][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:34][8982][INFO][MAIN] Duplicate execution. +[28 11:32:37][8988][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:37][8988][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:37][8988][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:37][8988][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:37][8988][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:37][8988][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:37][8988][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:37][8988][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:37][8988][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:37][8988][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:37][8988][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:37][8988][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:37][8988][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:37][8988][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:37][8988][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:37][8988][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:37][8988][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:37][8988][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:37][8988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:37][8988][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:37][8988][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:37][8988][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:37][8988][INFO][MAIN] Duplicate execution. +[28 11:32:40][8994][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:40][8994][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:40][8994][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:40][8994][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:40][8994][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:40][8994][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:40][8994][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:40][8994][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:40][8994][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:40][8994][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:40][8994][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:40][8994][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:40][8994][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:40][8994][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:40][8994][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:40][8994][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:40][8994][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:40][8994][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:40][8994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:40][8994][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:40][8994][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:40][8994][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:40][8994][INFO][MAIN] Duplicate execution. +[28 11:32:43][9000][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:43][9000][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:43][9000][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:43][9000][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:43][9000][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:43][9000][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:43][9000][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:43][9000][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:43][9000][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:43][9000][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:43][9000][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:43][9000][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:43][9000][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:43][9000][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:43][9000][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:43][9000][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:43][9000][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:43][9000][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:43][9000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:43][9000][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:43][9000][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:43][9000][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:43][9000][INFO][MAIN] Duplicate execution. +[28 11:32:46][9006][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:46][9006][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:46][9006][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:46][9006][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:46][9006][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:46][9006][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:46][9006][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:46][9006][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:46][9006][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:46][9006][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:46][9006][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:46][9006][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:46][9006][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:46][9006][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:46][9006][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:46][9006][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:46][9006][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:46][9006][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:46][9006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:46][9006][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:46][9006][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:46][9006][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:46][9006][INFO][MAIN] Duplicate execution. +[28 11:32:49][9012][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:49][9012][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:49][9012][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:49][9012][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:49][9012][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:49][9012][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:49][9012][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:49][9012][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:49][9012][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:49][9012][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:49][9012][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:49][9012][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:49][9012][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:49][9012][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:49][9012][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:49][9012][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:49][9012][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:49][9012][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:49][9012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:49][9012][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:49][9012][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:49][9012][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:49][9012][INFO][MAIN] Duplicate execution. +[28 11:32:52][9018][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:52][9018][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:52][9018][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:52][9018][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:52][9018][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:52][9018][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:52][9018][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:52][9018][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:52][9018][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:52][9018][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:52][9018][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:52][9018][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:52][9018][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:52][9018][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:52][9018][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:52][9018][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:52][9018][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:52][9018][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:52][9018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:52][9018][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:52][9018][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:52][9018][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:52][9018][INFO][MAIN] Duplicate execution. +[28 11:32:55][9024][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:55][9024][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:55][9024][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:55][9024][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:55][9024][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:55][9024][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:55][9024][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:55][9024][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:55][9024][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:55][9024][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:55][9024][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:55][9024][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:55][9024][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:55][9024][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:55][9024][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:55][9024][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:55][9024][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:55][9024][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:55][9024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:55][9024][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:55][9024][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:55][9024][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:55][9024][INFO][MAIN] Duplicate execution. +[28 11:32:58][9030][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:32:58][9030][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:32:58][9030][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:32:58][9030][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:32:58][9030][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:32:58][9030][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:32:58][9030][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:32:58][9030][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:32:58][9030][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:32:58][9030][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:32:58][9030][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:32:58][9030][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:32:58][9030][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:32:58][9030][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:32:58][9030][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:32:58][9030][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:32:58][9030][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:32:58][9030][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:32:58][9030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:32:58][9030][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:32:58][9030][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:32:58][9030][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:32:58][9030][INFO][MAIN] Duplicate execution. +[28 11:33:01][9036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:01][9036][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:01][9036][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:01][9036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:01][9036][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:01][9036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:01][9036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:01][9036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:01][9036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:01][9036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:01][9036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:01][9036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:01][9036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:01][9036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:01][9036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:01][9036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:01][9036][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:01][9036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:01][9036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:01][9036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:01][9036][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:01][9036][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:01][9036][INFO][MAIN] Duplicate execution. +[28 11:33:04][9042][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:04][9042][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:04][9042][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:04][9042][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:04][9042][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:04][9042][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:04][9042][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:04][9042][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:04][9042][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:04][9042][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:04][9042][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:04][9042][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:04][9042][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:04][9042][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:04][9042][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:04][9042][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:04][9042][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:04][9042][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:04][9042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:04][9042][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:04][9042][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:04][9042][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:04][9042][INFO][MAIN] Duplicate execution. +[28 11:33:07][9048][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:07][9048][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:07][9048][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:07][9048][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:07][9048][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:07][9048][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:07][9048][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:07][9048][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:07][9048][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:07][9048][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:07][9048][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:07][9048][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:07][9048][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:07][9048][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:07][9048][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:07][9048][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:07][9048][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:07][9048][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:07][9048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:07][9048][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:07][9048][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:07][9048][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:07][9048][INFO][MAIN] Duplicate execution. +[28 11:33:10][9054][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:10][9054][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:10][9054][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:10][9054][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:10][9054][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:10][9054][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:10][9054][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:10][9054][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:10][9054][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:10][9054][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:10][9054][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:10][9054][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:10][9054][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:10][9054][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:10][9054][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:10][9054][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:10][9054][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:10][9054][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:10][9054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:10][9054][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:10][9054][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:10][9054][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:10][9054][INFO][MAIN] Duplicate execution. +[28 11:33:13][9060][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:13][9060][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:13][9060][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:13][9060][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:13][9060][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:13][9060][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:13][9060][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:13][9060][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:13][9060][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:13][9060][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:13][9060][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:13][9060][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:13][9060][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:13][9060][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:13][9060][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:13][9060][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:13][9060][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:13][9060][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:13][9060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:13][9060][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:13][9060][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:13][9060][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:13][9060][INFO][MAIN] Duplicate execution. +[28 11:33:16][9066][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:16][9066][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:16][9066][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:16][9066][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:16][9066][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:16][9066][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:16][9066][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:16][9066][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:16][9066][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:16][9066][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:16][9066][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:16][9066][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:16][9066][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:16][9066][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:16][9066][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:16][9066][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:16][9066][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:16][9066][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:16][9066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:16][9066][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:16][9066][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:16][9066][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:16][9066][INFO][MAIN] Duplicate execution. +[28 11:33:19][9072][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:19][9072][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:19][9072][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:19][9072][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:19][9072][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:19][9072][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:19][9072][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:19][9072][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:19][9072][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:19][9072][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:19][9072][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:19][9072][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:19][9072][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:19][9072][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:19][9072][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:19][9072][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:19][9072][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:19][9072][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:19][9072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:19][9072][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:19][9072][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:19][9072][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:19][9072][INFO][MAIN] Duplicate execution. +[28 11:33:22][9078][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:22][9078][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:22][9078][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:22][9078][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:22][9078][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:22][9078][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:22][9078][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:22][9078][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:22][9078][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:22][9078][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:22][9078][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:22][9078][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:22][9078][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:22][9078][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:22][9078][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:22][9078][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:22][9078][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:22][9078][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:22][9078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:22][9078][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:22][9078][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:22][9078][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:22][9078][INFO][MAIN] Duplicate execution. +[28 11:33:25][9084][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:25][9084][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:25][9084][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:25][9084][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:25][9084][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:25][9084][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:25][9084][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:25][9084][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:25][9084][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:25][9084][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:25][9084][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:25][9084][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:25][9084][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:25][9084][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:25][9084][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:25][9084][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:25][9084][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:25][9084][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:25][9084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:25][9084][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:25][9084][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:25][9084][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:25][9084][INFO][MAIN] Duplicate execution. +[28 11:33:28][9090][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:28][9090][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:28][9090][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:28][9090][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:28][9090][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:28][9090][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:28][9090][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:28][9090][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:28][9090][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:28][9090][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:28][9090][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:28][9090][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:28][9090][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:28][9090][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:28][9090][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:28][9090][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:28][9090][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:28][9090][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:28][9090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:28][9090][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:28][9090][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:28][9090][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:28][9090][INFO][MAIN] Duplicate execution. +[28 11:33:31][9096][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:31][9096][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:31][9096][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:31][9096][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:31][9096][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:31][9096][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:31][9096][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:31][9096][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:31][9096][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:31][9096][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:31][9096][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:31][9096][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:31][9096][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:31][9096][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:31][9096][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:31][9096][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:31][9096][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:31][9096][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:31][9096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:31][9096][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:31][9096][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:31][9096][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:31][9096][INFO][MAIN] Duplicate execution. +[28 11:33:34][9102][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:34][9102][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:34][9102][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:34][9102][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:34][9102][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:34][9102][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:34][9102][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:34][9102][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:34][9102][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:34][9102][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:34][9102][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:34][9102][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:34][9102][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:34][9102][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:34][9102][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:34][9102][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:34][9102][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:34][9102][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:34][9102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:34][9102][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:34][9102][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:34][9102][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:34][9102][INFO][MAIN] Duplicate execution. +[28 11:33:37][9108][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:37][9108][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:37][9108][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:37][9108][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:37][9108][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:37][9108][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:37][9108][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:37][9108][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:37][9108][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:37][9108][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:37][9108][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:37][9108][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:37][9108][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:37][9108][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:37][9108][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:37][9108][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:37][9108][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:37][9108][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:37][9108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:37][9108][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:37][9108][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:37][9108][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:37][9108][INFO][MAIN] Duplicate execution. +[28 11:33:40][9114][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:40][9114][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:40][9114][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:40][9114][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:40][9114][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:40][9114][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:40][9114][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:40][9114][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:40][9114][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:40][9114][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:40][9114][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:40][9114][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:40][9114][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:40][9114][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:40][9114][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:40][9114][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:40][9114][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:40][9114][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:40][9114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:40][9114][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:40][9114][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:40][9114][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:40][9114][INFO][MAIN] Duplicate execution. +[28 11:33:43][9120][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:43][9120][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:43][9120][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:43][9120][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:43][9120][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:43][9120][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:43][9120][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:43][9120][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:43][9120][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:43][9120][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:43][9120][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:43][9120][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:43][9120][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:43][9120][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:43][9120][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:43][9120][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:43][9120][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:43][9120][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:43][9120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:43][9120][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:43][9120][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:43][9120][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:43][9120][INFO][MAIN] Duplicate execution. +[28 11:33:46][9126][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:46][9126][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:46][9126][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:46][9126][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:46][9126][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:46][9126][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:46][9126][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:46][9126][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:46][9126][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:46][9126][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:46][9126][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:46][9126][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:46][9126][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:46][9126][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:46][9126][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:46][9126][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:46][9126][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:46][9126][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:46][9126][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:46][9126][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:46][9126][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:46][9126][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:46][9126][INFO][MAIN] Duplicate execution. +[28 11:33:49][9132][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:49][9132][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:49][9132][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:49][9132][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:49][9132][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:49][9132][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:49][9132][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:49][9132][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:49][9132][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:49][9132][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:49][9132][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:49][9132][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:49][9132][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:49][9132][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:49][9132][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:49][9132][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:49][9132][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:49][9132][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:49][9132][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:49][9132][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:49][9132][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:49][9132][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:49][9132][INFO][MAIN] Duplicate execution. +[28 11:33:52][9138][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:52][9138][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:52][9138][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:52][9138][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:52][9138][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:52][9138][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:52][9138][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:52][9138][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:52][9138][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:52][9138][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:52][9138][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:52][9138][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:52][9138][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:52][9138][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:52][9138][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:52][9138][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:52][9138][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:52][9138][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:52][9138][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:52][9138][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:52][9138][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:52][9138][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:52][9138][INFO][MAIN] Duplicate execution. +[28 11:33:55][9144][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:55][9144][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:55][9144][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:55][9144][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:55][9144][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:55][9144][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:55][9144][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:55][9144][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:55][9144][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:55][9144][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:55][9144][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:55][9144][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:55][9144][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:55][9144][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:55][9144][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:55][9144][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:55][9144][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:55][9144][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:55][9144][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:55][9144][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:55][9144][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:55][9144][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:55][9144][INFO][MAIN] Duplicate execution. +[28 11:33:58][9150][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:33:58][9150][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:33:58][9150][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:33:58][9150][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:33:58][9150][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:33:58][9150][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:33:58][9150][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:33:58][9150][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:33:58][9150][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:33:58][9150][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:33:58][9150][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:33:58][9150][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:33:58][9150][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:33:58][9150][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:33:58][9150][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:33:58][9150][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:33:58][9150][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:33:58][9150][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:33:58][9150][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:33:58][9150][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:33:58][9150][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:33:58][9150][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:33:58][9150][INFO][MAIN] Duplicate execution. +[28 11:34:01][9156][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:01][9156][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:01][9156][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:01][9156][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:01][9156][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:01][9156][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:01][9156][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:01][9156][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:01][9156][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:01][9156][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:01][9156][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:01][9156][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:01][9156][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:01][9156][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:01][9156][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:01][9156][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:01][9156][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:01][9156][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:01][9156][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:01][9156][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:01][9156][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:01][9156][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:01][9156][INFO][MAIN] Duplicate execution. +[28 11:34:04][9162][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:04][9162][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:04][9162][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:04][9162][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:04][9162][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:04][9162][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:04][9162][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:04][9162][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:04][9162][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:04][9162][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:04][9162][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:04][9162][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:04][9162][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:04][9162][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:04][9162][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:04][9162][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:04][9162][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:04][9162][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:04][9162][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:04][9162][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:04][9162][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:04][9162][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:04][9162][INFO][MAIN] Duplicate execution. +[28 11:34:07][9168][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:07][9168][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:07][9168][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:07][9168][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:07][9168][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:07][9168][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:07][9168][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:07][9168][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:07][9168][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:07][9168][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:07][9168][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:07][9168][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:07][9168][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:07][9168][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:07][9168][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:07][9168][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:07][9168][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:07][9168][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:07][9168][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:07][9168][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:07][9168][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:07][9168][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:07][9168][INFO][MAIN] Duplicate execution. +[28 11:34:10][9174][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:10][9174][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:10][9174][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:10][9174][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:10][9174][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:10][9174][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:10][9174][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:10][9174][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:10][9174][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:10][9174][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:10][9174][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:10][9174][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:10][9174][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:10][9174][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:10][9174][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:10][9174][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:10][9174][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:10][9174][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:10][9174][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:10][9174][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:10][9174][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:10][9174][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:10][9174][INFO][MAIN] Duplicate execution. +[28 11:34:14][9180][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:14][9180][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:14][9180][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:14][9180][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:14][9180][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:14][9180][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:14][9180][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:14][9180][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:14][9180][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:14][9180][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:14][9180][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:14][9180][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:14][9180][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:14][9180][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:14][9180][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:14][9180][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:14][9180][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:14][9180][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:14][9180][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:14][9180][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:14][9180][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:14][9180][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:14][9180][INFO][MAIN] Duplicate execution. +[28 11:34:16][9186][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:16][9186][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:16][9186][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:16][9186][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:16][9186][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:16][9186][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:16][9186][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:16][9186][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:16][9186][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:16][9186][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:16][9186][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:16][9186][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:16][9186][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:16][9186][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:16][9186][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:16][9186][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:16][9186][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:16][9186][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:16][9186][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:16][9186][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:16][9186][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:16][9186][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:16][9186][INFO][MAIN] Duplicate execution. +[28 11:34:19][9192][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:19][9192][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:19][9192][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:19][9192][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:19][9192][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:19][9192][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:19][9192][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:19][9192][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:19][9192][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:19][9192][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:19][9192][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:19][9192][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:19][9192][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:19][9192][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:19][9192][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:19][9192][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:19][9192][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:19][9192][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:19][9192][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:19][9192][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:19][9192][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:19][9192][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:19][9192][INFO][MAIN] Duplicate execution. +[28 11:34:22][9198][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:22][9198][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:22][9198][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:22][9198][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:22][9198][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:22][9198][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:22][9198][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:22][9198][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:22][9198][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:22][9198][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:22][9198][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:22][9198][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:22][9198][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:22][9198][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:22][9198][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:22][9198][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:22][9198][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:22][9198][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:22][9198][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:22][9198][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:22][9198][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:22][9198][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:22][9198][INFO][MAIN] Duplicate execution. +[28 11:34:27][9204][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:27][9204][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:27][9204][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:27][9204][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:27][9204][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:27][9204][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:27][9204][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:27][9204][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:27][9204][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:27][9204][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:27][9204][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:27][9204][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:27][9204][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:27][9204][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:27][9204][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:27][9204][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:27][9204][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:27][9204][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:27][9204][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:27][9204][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:27][9204][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:27][9204][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:27][9204][INFO][MAIN] Duplicate execution. +[28 11:34:29][9210][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:29][9210][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:29][9210][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:29][9210][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:29][9210][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:29][9210][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:29][9210][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:29][9210][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:29][9210][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:29][9210][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:29][9210][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:29][9210][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:29][9210][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:29][9210][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:29][9210][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:29][9210][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:29][9210][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:29][9210][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:29][9210][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:29][9210][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:29][9210][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:29][9210][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:29][9210][INFO][MAIN] Duplicate execution. +[28 11:34:31][9216][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:31][9216][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:31][9216][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:31][9216][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:31][9216][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:31][9216][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:31][9216][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:31][9216][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:31][9216][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:31][9216][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:31][9216][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:31][9216][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:31][9216][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:31][9216][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:31][9216][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:31][9216][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:31][9216][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:31][9216][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:31][9216][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:31][9216][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:31][9216][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:31][9216][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:31][9216][INFO][MAIN] Duplicate execution. +[28 11:34:34][9222][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:34][9222][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:34][9222][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:34][9222][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:34][9222][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:34][9222][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:34][9222][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:34][9222][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:34][9222][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:34][9222][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:34][9222][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:34][9222][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:34][9222][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:34][9222][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:34][9222][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:34][9222][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:34][9222][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:34][9222][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:34][9222][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:34][9222][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:34][9222][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:34][9222][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:34][9222][INFO][MAIN] Duplicate execution. +[28 11:34:37][9228][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:37][9228][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:37][9228][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:37][9228][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:37][9228][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:37][9228][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:37][9228][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:37][9228][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:37][9228][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:37][9228][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:37][9228][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:37][9228][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:37][9228][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:37][9228][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:37][9228][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:37][9228][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:37][9228][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:37][9228][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:37][9228][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:37][9228][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:37][9228][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:37][9228][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:37][9228][INFO][MAIN] Duplicate execution. +[28 11:34:40][9234][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:40][9234][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:40][9234][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:40][9234][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:40][9234][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:40][9234][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:40][9234][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:40][9234][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:40][9234][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:40][9234][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:40][9234][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:40][9234][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:40][9234][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:40][9234][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:40][9234][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:40][9234][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:40][9234][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:40][9234][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:40][9234][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:40][9234][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:40][9234][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:40][9234][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:40][9234][INFO][MAIN] Duplicate execution. +[28 11:34:43][9240][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:43][9240][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:43][9240][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:43][9240][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:43][9240][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:43][9240][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:43][9240][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:43][9240][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:43][9240][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:43][9240][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:43][9240][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:43][9240][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:43][9240][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:43][9240][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:43][9240][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:43][9240][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:43][9240][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:43][9240][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:43][9240][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:43][9240][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:43][9240][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:43][9240][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:43][9240][INFO][MAIN] Duplicate execution. +[28 11:34:46][9246][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:46][9246][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:46][9246][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:46][9246][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:46][9246][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:46][9246][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:46][9246][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:46][9246][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:46][9246][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:46][9246][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:46][9246][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:46][9246][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:46][9246][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:46][9246][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:46][9246][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:46][9246][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:46][9246][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:46][9246][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:46][9246][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:46][9246][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:46][9246][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:46][9246][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:46][9246][INFO][MAIN] Duplicate execution. +[28 11:34:49][9252][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:49][9252][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:49][9252][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:49][9252][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:49][9252][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:49][9252][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:49][9252][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:49][9252][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:49][9252][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:49][9252][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:49][9252][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:49][9252][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:49][9252][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:49][9252][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:49][9252][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:49][9252][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:49][9252][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:49][9252][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:49][9252][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:49][9252][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:49][9252][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:49][9252][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:49][9252][INFO][MAIN] Duplicate execution. +[28 11:34:52][9258][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:52][9258][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:52][9258][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:52][9258][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:52][9258][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:52][9258][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:52][9258][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:52][9258][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:52][9258][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:52][9258][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:52][9258][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:52][9258][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:52][9258][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:52][9258][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:52][9258][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:52][9258][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:52][9258][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:52][9258][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:52][9258][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:52][9258][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:52][9258][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:52][9258][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:52][9258][INFO][MAIN] Duplicate execution. +[28 11:34:55][9264][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:55][9264][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:55][9264][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:55][9264][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:55][9264][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:55][9264][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:55][9264][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:55][9264][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:55][9264][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:55][9264][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:55][9264][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:55][9264][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:55][9264][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:55][9264][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:55][9264][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:55][9264][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:55][9264][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:55][9264][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:55][9264][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:55][9264][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:55][9264][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:55][9264][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:55][9264][INFO][MAIN] Duplicate execution. +[28 11:34:58][9270][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:34:58][9270][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:34:58][9270][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:34:58][9270][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:34:58][9270][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:34:58][9270][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:34:58][9270][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:34:58][9270][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:34:58][9270][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:34:58][9270][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:34:58][9270][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:34:58][9270][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:34:58][9270][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:34:58][9270][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:34:58][9270][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:34:58][9270][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:34:58][9270][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:34:58][9270][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:34:58][9270][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:34:58][9270][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:34:58][9270][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:34:58][9270][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:34:58][9270][INFO][MAIN] Duplicate execution. +[28 11:35:01][9276][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:01][9276][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:01][9276][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:01][9276][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:01][9276][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:01][9276][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:01][9276][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:01][9276][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:01][9276][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:01][9276][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:01][9276][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:01][9276][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:01][9276][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:01][9276][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:01][9276][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:01][9276][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:01][9276][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:01][9276][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:01][9276][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:01][9276][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:01][9276][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:01][9276][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:01][9276][INFO][MAIN] Duplicate execution. +[28 11:35:04][9282][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:04][9282][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:04][9282][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:04][9282][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:04][9282][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:04][9282][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:04][9282][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:04][9282][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:04][9282][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:04][9282][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:04][9282][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:04][9282][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:04][9282][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:04][9282][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:04][9282][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:04][9282][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:04][9282][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:04][9282][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:04][9282][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:04][9282][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:04][9282][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:04][9282][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:04][9282][INFO][MAIN] Duplicate execution. +[28 11:35:07][9288][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:07][9288][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:07][9288][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:07][9288][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:07][9288][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:07][9288][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:07][9288][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:07][9288][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:07][9288][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:07][9288][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:07][9288][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:07][9288][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:07][9288][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:07][9288][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:07][9288][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:07][9288][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:07][9288][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:07][9288][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:07][9288][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:07][9288][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:07][9288][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:07][9288][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:07][9288][INFO][MAIN] Duplicate execution. +[28 11:35:10][9294][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:10][9294][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:10][9294][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:10][9294][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:10][9294][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:10][9294][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:10][9294][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:10][9294][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:10][9294][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:10][9294][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:10][9294][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:10][9294][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:10][9294][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:10][9294][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:10][9294][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:10][9294][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:10][9294][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:10][9294][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:10][9294][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:10][9294][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:10][9294][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:10][9294][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:10][9294][INFO][MAIN] Duplicate execution. +[28 11:35:13][9300][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:13][9300][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:13][9300][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:13][9300][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:13][9300][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:13][9300][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:13][9300][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:13][9300][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:13][9300][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:13][9300][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:13][9300][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:13][9300][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:13][9300][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:13][9300][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:13][9300][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:13][9300][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:13][9300][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:13][9300][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:13][9300][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:13][9300][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:13][9300][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:13][9300][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:13][9300][INFO][MAIN] Duplicate execution. +[28 11:35:16][9306][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:16][9306][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:16][9306][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:16][9306][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:16][9306][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:16][9306][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:16][9306][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:16][9306][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:16][9306][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:16][9306][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:16][9306][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:16][9306][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:16][9306][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:16][9306][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:16][9306][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:16][9306][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:16][9306][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:16][9306][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:16][9306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:16][9306][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:16][9306][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:16][9306][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:16][9306][INFO][MAIN] Duplicate execution. +[28 11:35:19][9312][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:19][9312][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:19][9312][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:19][9312][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:19][9312][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:19][9312][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:19][9312][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:19][9312][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:19][9312][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:19][9312][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:19][9312][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:19][9312][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:19][9312][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:19][9312][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:19][9312][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:19][9312][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:19][9312][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:19][9312][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:19][9312][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:19][9312][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:19][9312][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:19][9312][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:19][9312][INFO][MAIN] Duplicate execution. +[28 11:35:22][9318][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:22][9318][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:22][9318][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:22][9318][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:22][9318][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:22][9318][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:22][9318][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:22][9318][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:22][9318][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:22][9318][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:22][9318][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:22][9318][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:22][9318][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:22][9318][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:22][9318][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:22][9318][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:22][9318][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:22][9318][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:22][9318][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:22][9318][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:22][9318][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:22][9318][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:22][9318][INFO][MAIN] Duplicate execution. +[28 11:35:25][9324][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:25][9324][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:25][9324][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:25][9324][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:25][9324][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:25][9324][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:25][9324][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:25][9324][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:25][9324][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:25][9324][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:25][9324][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:25][9324][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:25][9324][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:25][9324][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:25][9324][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:25][9324][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:25][9324][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:25][9324][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:25][9324][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:25][9324][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:25][9324][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:25][9324][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:25][9324][INFO][MAIN] Duplicate execution. +[28 11:35:28][9330][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:28][9330][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:28][9330][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:28][9330][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:28][9330][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:28][9330][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:28][9330][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:28][9330][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:28][9330][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:28][9330][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:28][9330][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:28][9330][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:28][9330][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:28][9330][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:28][9330][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:28][9330][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:28][9330][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:28][9330][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:28][9330][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:28][9330][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:28][9330][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:28][9330][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:28][9330][INFO][MAIN] Duplicate execution. +[28 11:35:31][9336][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:31][9336][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:31][9336][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:31][9336][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:31][9336][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:31][9336][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:31][9336][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:31][9336][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:31][9336][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:31][9336][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:31][9336][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:31][9336][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:31][9336][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:31][9336][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:31][9336][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:31][9336][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:31][9336][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:31][9336][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:31][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:31][9336][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:31][9336][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:31][9336][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:31][9336][INFO][MAIN] Duplicate execution. +[28 11:35:34][9342][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:34][9342][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:34][9342][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:34][9342][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:34][9342][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:34][9342][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:34][9342][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:34][9342][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:34][9342][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:34][9342][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:34][9342][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:34][9342][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:34][9342][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:34][9342][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:34][9342][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:34][9342][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:34][9342][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:34][9342][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:34][9342][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:34][9342][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:34][9342][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:34][9342][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:34][9342][INFO][MAIN] Duplicate execution. +[28 11:35:37][9348][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:37][9348][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:37][9348][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:37][9348][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:37][9348][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:37][9348][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:37][9348][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:37][9348][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:37][9348][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:37][9348][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:37][9348][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:37][9348][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:37][9348][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:37][9348][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:37][9348][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:37][9348][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:37][9348][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:37][9348][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:37][9348][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:37][9348][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:37][9348][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:37][9348][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:37][9348][INFO][MAIN] Duplicate execution. +[28 11:35:40][9354][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:40][9354][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:40][9354][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:40][9354][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:40][9354][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:40][9354][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:40][9354][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:40][9354][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:40][9354][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:40][9354][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:40][9354][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:40][9354][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:40][9354][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:40][9354][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:40][9354][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:40][9354][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:40][9354][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:40][9354][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:40][9354][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:40][9354][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:40][9354][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:40][9354][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:40][9354][INFO][MAIN] Duplicate execution. +[28 11:35:43][9360][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:43][9360][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:43][9360][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:43][9360][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:43][9360][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:43][9360][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:43][9360][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:43][9360][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:43][9360][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:43][9360][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:43][9360][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:43][9360][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:43][9360][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:43][9360][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:43][9360][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:43][9360][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:43][9360][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:43][9360][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:43][9360][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:43][9360][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:43][9360][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:43][9360][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:43][9360][INFO][MAIN] Duplicate execution. +[28 11:35:46][9366][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:46][9366][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:46][9366][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:46][9366][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:46][9366][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:46][9366][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:46][9366][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:46][9366][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:46][9366][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:46][9366][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:46][9366][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:46][9366][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:46][9366][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:46][9366][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:46][9366][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:46][9366][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:46][9366][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:46][9366][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:46][9366][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:46][9366][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:46][9366][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:46][9366][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:46][9366][INFO][MAIN] Duplicate execution. +[28 11:35:49][9372][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:49][9372][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:49][9372][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:49][9372][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:49][9372][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:49][9372][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:49][9372][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:49][9372][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:49][9372][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:49][9372][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:49][9372][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:49][9372][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:49][9372][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:49][9372][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:49][9372][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:49][9372][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:49][9372][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:49][9372][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:49][9372][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:49][9372][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:49][9372][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:49][9372][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:49][9372][INFO][MAIN] Duplicate execution. +[28 11:35:52][9378][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:52][9378][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:52][9378][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:52][9378][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:52][9378][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:52][9378][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:52][9378][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:52][9378][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:52][9378][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:52][9378][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:52][9378][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:52][9378][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:52][9378][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:52][9378][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:52][9378][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:52][9378][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:52][9378][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:52][9378][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:52][9378][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:52][9378][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:52][9378][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:52][9378][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:52][9378][INFO][MAIN] Duplicate execution. +[28 11:35:55][9384][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:55][9384][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:55][9384][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:55][9384][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:55][9384][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:55][9384][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:55][9384][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:55][9384][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:55][9384][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:55][9384][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:55][9384][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:55][9384][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:55][9384][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:55][9384][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:55][9384][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:55][9384][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:55][9384][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:55][9384][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:55][9384][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:55][9384][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:55][9384][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:55][9384][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:55][9384][INFO][MAIN] Duplicate execution. +[28 11:35:58][9390][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:35:58][9390][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:35:58][9390][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:35:58][9390][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:35:58][9390][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:35:58][9390][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:35:58][9390][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:35:58][9390][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:35:58][9390][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:35:58][9390][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:35:58][9390][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:35:58][9390][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:35:58][9390][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:35:58][9390][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:35:58][9390][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:35:58][9390][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:35:58][9390][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:35:58][9390][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:35:58][9390][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:35:58][9390][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:35:58][9390][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:35:58][9390][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:35:58][9390][INFO][MAIN] Duplicate execution. +[28 11:36:01][9396][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:01][9396][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:01][9396][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:01][9396][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:01][9396][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:01][9396][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:01][9396][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:01][9396][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:01][9396][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:01][9396][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:01][9396][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:01][9396][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:01][9396][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:01][9396][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:01][9396][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:01][9396][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:01][9396][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:01][9396][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:01][9396][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:01][9396][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:01][9396][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:01][9396][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:01][9396][INFO][MAIN] Duplicate execution. +[28 11:36:04][9402][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:04][9402][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:04][9402][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:04][9402][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:04][9402][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:04][9402][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:04][9402][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:04][9402][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:04][9402][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:04][9402][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:04][9402][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:04][9402][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:04][9402][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:04][9402][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:04][9402][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:04][9402][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:04][9402][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:04][9402][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:04][9402][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:04][9402][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:04][9402][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:04][9402][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:04][9402][INFO][MAIN] Duplicate execution. +[28 11:36:07][9408][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:07][9408][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:07][9408][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:07][9408][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:07][9408][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:07][9408][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:07][9408][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:07][9408][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:07][9408][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:07][9408][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:07][9408][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:07][9408][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:07][9408][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:07][9408][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:07][9408][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:07][9408][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:07][9408][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:07][9408][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:07][9408][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:07][9408][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:07][9408][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:07][9408][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:07][9408][INFO][MAIN] Duplicate execution. +[28 11:36:10][9414][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:10][9414][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:10][9414][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:10][9414][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:10][9414][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:10][9414][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:10][9414][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:10][9414][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:10][9414][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:10][9414][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:10][9414][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:10][9414][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:10][9414][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:10][9414][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:10][9414][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:10][9414][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:10][9414][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:10][9414][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:10][9414][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:10][9414][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:10][9414][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:10][9414][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:10][9414][INFO][MAIN] Duplicate execution. +[28 11:36:13][9420][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:13][9420][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:13][9420][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:13][9420][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:13][9420][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:13][9420][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:13][9420][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:13][9420][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:13][9420][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:13][9420][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:13][9420][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:13][9420][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:13][9420][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:13][9420][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:13][9420][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:13][9420][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:13][9420][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:13][9420][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:13][9420][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:13][9420][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:13][9420][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:13][9420][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:13][9420][INFO][MAIN] Duplicate execution. +[28 11:36:16][9426][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:16][9426][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:16][9426][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:16][9426][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:16][9426][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:16][9426][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:16][9426][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:16][9426][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:16][9426][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:16][9426][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:16][9426][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:16][9426][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:16][9426][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:16][9426][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:16][9426][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:16][9426][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:16][9426][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:16][9426][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:16][9426][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:16][9426][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:16][9426][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:16][9426][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:16][9426][INFO][MAIN] Duplicate execution. +[28 11:36:19][9432][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:19][9432][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:19][9432][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:19][9432][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:19][9432][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:19][9432][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:19][9432][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:19][9432][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:19][9432][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:19][9432][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:19][9432][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:19][9432][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:19][9432][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:19][9432][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:19][9432][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:19][9432][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:19][9432][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:19][9432][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:19][9432][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:19][9432][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:19][9432][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:19][9432][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:19][9432][INFO][MAIN] Duplicate execution. +[28 11:36:22][9438][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:22][9438][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:22][9438][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:22][9438][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:22][9438][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:22][9438][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:22][9438][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:22][9438][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:22][9438][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:22][9438][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:22][9438][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:22][9438][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:22][9438][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:22][9438][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:22][9438][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:22][9438][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:22][9438][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:22][9438][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:22][9438][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:22][9438][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:22][9438][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:22][9438][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:22][9438][INFO][MAIN] Duplicate execution. +[28 11:36:25][9444][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:25][9444][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:25][9444][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:25][9444][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:25][9444][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:25][9444][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:25][9444][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:25][9444][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:25][9444][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:25][9444][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:25][9444][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:25][9444][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:25][9444][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:25][9444][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:25][9444][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:25][9444][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:25][9444][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:25][9444][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:25][9444][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:25][9444][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:25][9444][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:25][9444][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:25][9444][INFO][MAIN] Duplicate execution. +[28 11:36:28][9450][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:28][9450][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:28][9450][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:28][9450][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:28][9450][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:28][9450][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:28][9450][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:28][9450][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:28][9450][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:28][9450][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:28][9450][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:28][9450][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:28][9450][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:28][9450][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:28][9450][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:28][9450][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:28][9450][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:28][9450][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:28][9450][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:28][9450][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:28][9450][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:28][9450][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:28][9450][INFO][MAIN] Duplicate execution. +[28 11:36:31][9456][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:31][9456][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:31][9456][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:31][9456][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:31][9456][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:31][9456][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:31][9456][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:31][9456][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:31][9456][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:31][9456][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:31][9456][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:31][9456][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:31][9456][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:31][9456][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:31][9456][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:31][9456][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:31][9456][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:31][9456][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:31][9456][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:31][9456][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:31][9456][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:31][9456][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:31][9456][INFO][MAIN] Duplicate execution. +[28 11:36:34][9462][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:34][9462][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:34][9462][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:34][9462][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:34][9462][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:34][9462][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:34][9462][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:34][9462][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:34][9462][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:34][9462][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:34][9462][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:34][9462][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:34][9462][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:34][9462][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:34][9462][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:34][9462][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:34][9462][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:34][9462][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:34][9462][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:34][9462][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:34][9462][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:34][9462][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:34][9462][INFO][MAIN] Duplicate execution. +[28 11:36:37][9468][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:37][9468][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:37][9468][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:37][9468][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:37][9468][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:37][9468][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:37][9468][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:37][9468][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:37][9468][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:37][9468][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:37][9468][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:37][9468][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:37][9468][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:37][9468][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:37][9468][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:37][9468][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:37][9468][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:37][9468][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:37][9468][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:37][9468][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:37][9468][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:37][9468][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:37][9468][INFO][MAIN] Duplicate execution. +[28 11:36:40][9474][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:40][9474][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:40][9474][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:40][9474][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:40][9474][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:40][9474][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:40][9474][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:40][9474][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:40][9474][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:40][9474][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:40][9474][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:40][9474][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:40][9474][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:40][9474][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:40][9474][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:40][9474][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:40][9474][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:40][9474][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:40][9474][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:40][9474][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:40][9474][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:40][9474][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:40][9474][INFO][MAIN] Duplicate execution. +[28 11:36:43][9480][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:43][9480][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:43][9480][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:43][9480][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:43][9480][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:43][9480][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:43][9480][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:43][9480][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:43][9480][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:43][9480][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:43][9480][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:43][9480][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:43][9480][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:43][9480][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:43][9480][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:43][9480][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:43][9480][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:43][9480][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:43][9480][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:43][9480][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:43][9480][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:43][9480][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:43][9480][INFO][MAIN] Duplicate execution. +[28 11:36:46][9486][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:46][9486][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:46][9486][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:46][9486][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:46][9486][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:46][9486][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:46][9486][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:46][9486][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:46][9486][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:46][9486][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:46][9486][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:46][9486][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:46][9486][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:46][9486][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:46][9486][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:46][9486][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:46][9486][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:46][9486][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:46][9486][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:46][9486][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:46][9486][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:46][9486][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:46][9486][INFO][MAIN] Duplicate execution. +[28 11:36:49][9492][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:49][9492][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:49][9492][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:49][9492][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:49][9492][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:49][9492][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:49][9492][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:49][9492][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:49][9492][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:49][9492][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:49][9492][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:49][9492][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:49][9492][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:49][9492][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:49][9492][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:49][9492][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:49][9492][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:49][9492][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:49][9492][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:49][9492][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:49][9492][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:49][9492][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:49][9492][INFO][MAIN] Duplicate execution. +[28 11:36:52][9498][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:52][9498][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:52][9498][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:52][9498][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:52][9498][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:52][9498][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:52][9498][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:52][9498][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:52][9498][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:52][9498][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:52][9498][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:52][9498][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:52][9498][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:52][9498][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:52][9498][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:52][9498][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:52][9498][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:52][9498][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:52][9498][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:52][9498][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:52][9498][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:52][9498][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:52][9498][INFO][MAIN] Duplicate execution. +[28 11:36:55][9504][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:55][9504][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:55][9504][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:55][9504][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:55][9504][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:55][9504][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:55][9504][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:55][9504][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:55][9504][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:55][9504][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:55][9504][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:55][9504][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:55][9504][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:55][9504][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:55][9504][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:55][9504][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:55][9504][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:55][9504][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:55][9504][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:55][9504][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:55][9504][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:55][9504][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:55][9504][INFO][MAIN] Duplicate execution. +[28 11:36:58][9510][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:36:58][9510][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:36:58][9510][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:36:58][9510][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:36:58][9510][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:36:58][9510][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:36:58][9510][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:36:58][9510][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:36:58][9510][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:36:58][9510][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:36:58][9510][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:36:58][9510][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:36:58][9510][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:36:58][9510][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:36:58][9510][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:36:58][9510][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:36:58][9510][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:36:58][9510][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:36:58][9510][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:36:58][9510][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:36:58][9510][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:36:58][9510][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:36:58][9510][INFO][MAIN] Duplicate execution. +[28 11:37:01][9516][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:01][9516][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:01][9516][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:01][9516][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:01][9516][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:01][9516][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:01][9516][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:01][9516][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:01][9516][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:01][9516][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:01][9516][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:01][9516][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:01][9516][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:01][9516][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:01][9516][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:01][9516][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:01][9516][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:01][9516][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:01][9516][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:01][9516][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:01][9516][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:01][9516][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:01][9516][INFO][MAIN] Duplicate execution. +[28 11:37:04][9522][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:04][9522][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:04][9522][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:04][9522][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:04][9522][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:04][9522][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:04][9522][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:04][9522][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:04][9522][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:04][9522][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:04][9522][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:04][9522][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:04][9522][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:04][9522][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:04][9522][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:04][9522][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:04][9522][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:04][9522][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:04][9522][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:04][9522][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:04][9522][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:04][9522][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:04][9522][INFO][MAIN] Duplicate execution. +[28 11:37:07][9528][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:07][9528][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:07][9528][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:07][9528][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:07][9528][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:07][9528][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:07][9528][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:07][9528][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:07][9528][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:07][9528][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:07][9528][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:07][9528][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:07][9528][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:07][9528][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:07][9528][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:07][9528][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:07][9528][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:07][9528][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:07][9528][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:07][9528][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:07][9528][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:07][9528][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:07][9528][INFO][MAIN] Duplicate execution. +[28 11:37:10][9534][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:10][9534][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:10][9534][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:10][9534][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:10][9534][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:10][9534][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:10][9534][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:10][9534][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:10][9534][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:10][9534][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:10][9534][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:10][9534][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:10][9534][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:10][9534][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:10][9534][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:10][9534][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:10][9534][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:10][9534][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:10][9534][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:10][9534][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:10][9534][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:10][9534][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:10][9534][INFO][MAIN] Duplicate execution. +[28 11:37:13][9540][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:13][9540][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:13][9540][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:13][9540][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:13][9540][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:13][9540][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:13][9540][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:13][9540][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:13][9540][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:13][9540][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:13][9540][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:13][9540][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:13][9540][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:13][9540][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:13][9540][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:13][9540][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:13][9540][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:13][9540][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:13][9540][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:13][9540][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:13][9540][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:13][9540][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:13][9540][INFO][MAIN] Duplicate execution. +[28 11:37:16][9546][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:16][9546][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:16][9546][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:16][9546][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:16][9546][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:16][9546][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:16][9546][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:16][9546][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:16][9546][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:16][9546][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:16][9546][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:16][9546][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:16][9546][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:16][9546][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:16][9546][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:16][9546][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:16][9546][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:16][9546][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:16][9546][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:16][9546][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:16][9546][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:16][9546][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:16][9546][INFO][MAIN] Duplicate execution. +[28 11:37:19][9552][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:19][9552][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:19][9552][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:19][9552][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:19][9552][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:19][9552][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:19][9552][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:19][9552][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:19][9552][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:19][9552][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:19][9552][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:19][9552][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:19][9552][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:19][9552][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:19][9552][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:19][9552][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:19][9552][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:19][9552][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:19][9552][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:19][9552][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:19][9552][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:19][9552][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:19][9552][INFO][MAIN] Duplicate execution. +[28 11:37:22][9558][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:22][9558][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:22][9558][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:22][9558][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:22][9558][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:22][9558][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:22][9558][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:22][9558][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:22][9558][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:22][9558][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:22][9558][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:22][9558][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:22][9558][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:22][9558][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:22][9558][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:22][9558][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:22][9558][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:22][9558][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:22][9558][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:22][9558][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:22][9558][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:22][9558][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:22][9558][INFO][MAIN] Duplicate execution. +[28 11:37:25][9564][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:25][9564][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:25][9564][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:25][9564][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:25][9564][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:25][9564][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:25][9564][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:25][9564][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:25][9564][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:25][9564][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:25][9564][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:25][9564][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:25][9564][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:25][9564][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:25][9564][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:25][9564][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:25][9564][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:25][9564][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:25][9564][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:25][9564][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:25][9564][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:25][9564][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:25][9564][INFO][MAIN] Duplicate execution. +[28 11:37:28][9570][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:28][9570][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:28][9570][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:28][9570][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:28][9570][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:28][9570][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:28][9570][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:28][9570][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:28][9570][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:28][9570][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:28][9570][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:28][9570][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:28][9570][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:28][9570][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:28][9570][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:28][9570][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:28][9570][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:28][9570][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:28][9570][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:28][9570][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:28][9570][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:28][9570][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:28][9570][INFO][MAIN] Duplicate execution. +[28 11:37:31][9576][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:31][9576][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:31][9576][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:31][9576][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:31][9576][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:31][9576][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:31][9576][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:31][9576][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:31][9576][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:31][9576][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:31][9576][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:31][9576][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:31][9576][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:31][9576][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:31][9576][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:31][9576][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:31][9576][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:31][9576][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:31][9576][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:31][9576][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:31][9576][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:31][9576][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:31][9576][INFO][MAIN] Duplicate execution. +[28 11:37:34][9582][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:34][9582][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:34][9582][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:34][9582][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:34][9582][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:34][9582][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:34][9582][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:34][9582][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:34][9582][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:34][9582][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:34][9582][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:34][9582][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:34][9582][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:34][9582][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:34][9582][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:34][9582][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:34][9582][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:34][9582][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:34][9582][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:34][9582][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:34][9582][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:34][9582][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:34][9582][INFO][MAIN] Duplicate execution. +[28 11:37:37][9588][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:37][9588][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:37][9588][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:37][9588][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:37][9588][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:37][9588][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:37][9588][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:37][9588][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:37][9588][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:37][9588][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:37][9588][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:37][9588][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:37][9588][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:37][9588][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:37][9588][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:37][9588][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:37][9588][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:37][9588][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:37][9588][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:37][9588][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:37][9588][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:37][9588][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:37][9588][INFO][MAIN] Duplicate execution. +[28 11:37:40][9594][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:40][9594][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:40][9594][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:40][9594][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:40][9594][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:40][9594][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:40][9594][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:40][9594][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:40][9594][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:40][9594][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:40][9594][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:40][9594][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:40][9594][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:40][9594][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:40][9594][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:40][9594][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:40][9594][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:40][9594][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:40][9594][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:40][9594][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:40][9594][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:40][9594][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:40][9594][INFO][MAIN] Duplicate execution. +[28 11:37:43][9600][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:43][9600][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:43][9600][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:43][9600][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:43][9600][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:43][9600][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:43][9600][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:43][9600][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:43][9600][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:43][9600][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:43][9600][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:43][9600][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:43][9600][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:43][9600][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:43][9600][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:43][9600][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:43][9600][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:43][9600][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:43][9600][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:43][9600][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:43][9600][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:43][9600][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:43][9600][INFO][MAIN] Duplicate execution. +[28 11:37:46][9606][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:46][9606][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:46][9606][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:46][9606][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:46][9606][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:46][9606][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:46][9606][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:46][9606][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:46][9606][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:46][9606][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:46][9606][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:46][9606][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:46][9606][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:46][9606][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:46][9606][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:46][9606][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:46][9606][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:46][9606][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:46][9606][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:46][9606][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:46][9606][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:46][9606][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:46][9606][INFO][MAIN] Duplicate execution. +[28 11:37:49][9612][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:49][9612][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:49][9612][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:49][9612][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:49][9612][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:49][9612][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:49][9612][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:49][9612][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:49][9612][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:49][9612][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:49][9612][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:49][9612][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:49][9612][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:49][9612][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:49][9612][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:49][9612][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:49][9612][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:49][9612][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:49][9612][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:49][9612][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:49][9612][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:49][9612][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:49][9612][INFO][MAIN] Duplicate execution. +[28 11:37:52][9618][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:52][9618][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:52][9618][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:52][9618][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:52][9618][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:52][9618][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:52][9618][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:52][9618][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:52][9618][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:52][9618][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:52][9618][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:52][9618][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:52][9618][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:52][9618][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:52][9618][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:52][9618][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:52][9618][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:52][9618][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:52][9618][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:52][9618][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:52][9618][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:52][9618][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:52][9618][INFO][MAIN] Duplicate execution. +[28 11:37:55][9624][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:55][9624][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:55][9624][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:55][9624][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:55][9624][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:55][9624][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:55][9624][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:55][9624][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:55][9624][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:55][9624][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:55][9624][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:55][9624][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:55][9624][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:55][9624][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:55][9624][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:55][9624][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:55][9624][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:55][9624][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:55][9624][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:55][9624][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:55][9624][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:55][9624][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:55][9624][INFO][MAIN] Duplicate execution. +[28 11:37:58][9630][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:37:58][9630][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:37:58][9630][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:37:58][9630][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:37:58][9630][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:37:58][9630][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:37:58][9630][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:37:58][9630][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:37:58][9630][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:37:58][9630][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:37:58][9630][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:37:58][9630][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:37:58][9630][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:37:58][9630][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:37:58][9630][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:37:58][9630][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:37:58][9630][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:37:58][9630][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:37:58][9630][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:37:58][9630][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:37:58][9630][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:37:58][9630][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:37:58][9630][INFO][MAIN] Duplicate execution. +[28 11:38:01][9636][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:01][9636][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:01][9636][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:01][9636][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:01][9636][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:01][9636][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:01][9636][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:01][9636][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:01][9636][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:01][9636][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:01][9636][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:01][9636][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:01][9636][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:01][9636][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:01][9636][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:01][9636][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:01][9636][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:01][9636][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:01][9636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:01][9636][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:01][9636][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:01][9636][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:01][9636][INFO][MAIN] Duplicate execution. +[28 11:38:04][9642][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:04][9642][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:04][9642][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:04][9642][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:04][9642][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:04][9642][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:04][9642][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:04][9642][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:04][9642][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:04][9642][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:04][9642][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:04][9642][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:04][9642][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:04][9642][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:04][9642][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:04][9642][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:04][9642][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:04][9642][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:04][9642][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:04][9642][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:04][9642][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:04][9642][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:04][9642][INFO][MAIN] Duplicate execution. +[28 11:38:07][9648][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:07][9648][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:07][9648][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:07][9648][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:07][9648][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:07][9648][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:07][9648][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:07][9648][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:07][9648][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:07][9648][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:07][9648][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:07][9648][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:07][9648][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:07][9648][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:07][9648][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:07][9648][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:07][9648][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:07][9648][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:07][9648][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:07][9648][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:07][9648][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:07][9648][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:07][9648][INFO][MAIN] Duplicate execution. +[28 11:38:10][9654][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:10][9654][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:10][9654][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:10][9654][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:10][9654][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:10][9654][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:10][9654][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:10][9654][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:10][9654][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:10][9654][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:10][9654][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:10][9654][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:10][9654][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:10][9654][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:10][9654][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:10][9654][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:10][9654][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:10][9654][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:10][9654][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:10][9654][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:10][9654][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:10][9654][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:10][9654][INFO][MAIN] Duplicate execution. +[28 11:38:13][9660][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:13][9660][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:13][9660][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:13][9660][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:13][9660][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:13][9660][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:13][9660][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:13][9660][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:13][9660][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:13][9660][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:13][9660][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:13][9660][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:13][9660][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:13][9660][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:13][9660][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:13][9660][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:13][9660][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:13][9660][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:13][9660][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:13][9660][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:13][9660][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:13][9660][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:13][9660][INFO][MAIN] Duplicate execution. +[28 11:38:16][9666][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:16][9666][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:16][9666][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:16][9666][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:16][9666][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:16][9666][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:16][9666][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:16][9666][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:16][9666][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:16][9666][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:16][9666][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:16][9666][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:16][9666][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:16][9666][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:16][9666][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:16][9666][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:16][9666][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:16][9666][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:16][9666][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:16][9666][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:16][9666][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:16][9666][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:16][9666][INFO][MAIN] Duplicate execution. +[28 11:38:19][9672][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:19][9672][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:19][9672][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:19][9672][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:19][9672][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:19][9672][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:19][9672][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:19][9672][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:19][9672][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:19][9672][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:19][9672][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:19][9672][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:19][9672][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:19][9672][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:19][9672][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:19][9672][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:19][9672][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:19][9672][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:19][9672][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:19][9672][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:19][9672][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:19][9672][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:19][9672][INFO][MAIN] Duplicate execution. +[28 11:38:22][9678][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:22][9678][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:22][9678][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:22][9678][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:22][9678][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:22][9678][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:22][9678][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:22][9678][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:22][9678][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:22][9678][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:22][9678][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:22][9678][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:22][9678][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:22][9678][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:22][9678][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:22][9678][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:22][9678][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:22][9678][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:22][9678][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:22][9678][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:22][9678][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:22][9678][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:22][9678][INFO][MAIN] Duplicate execution. +[28 11:38:25][9684][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:25][9684][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:25][9684][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:25][9684][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:25][9684][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:25][9684][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:25][9684][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:25][9684][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:25][9684][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:25][9684][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:25][9684][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:25][9684][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:25][9684][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:25][9684][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:25][9684][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:25][9684][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:25][9684][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:25][9684][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:25][9684][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:25][9684][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:25][9684][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:25][9684][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:25][9684][INFO][MAIN] Duplicate execution. +[28 11:38:28][9690][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:28][9690][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:28][9690][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:28][9690][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:28][9690][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:28][9690][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:28][9690][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:28][9690][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:28][9690][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:28][9690][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:28][9690][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:28][9690][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:28][9690][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:28][9690][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:28][9690][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:28][9690][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:28][9690][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:28][9690][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:28][9690][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:28][9690][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:28][9690][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:28][9690][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:28][9690][INFO][MAIN] Duplicate execution. +[28 11:38:31][9696][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:31][9696][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:31][9696][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:31][9696][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:31][9696][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:31][9696][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:31][9696][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:31][9696][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:31][9696][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:31][9696][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:31][9696][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:31][9696][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:31][9696][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:31][9696][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:31][9696][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:31][9696][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:31][9696][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:31][9696][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:31][9696][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:31][9696][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:31][9696][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:31][9696][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:31][9696][INFO][MAIN] Duplicate execution. +[28 11:38:34][9702][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:34][9702][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:34][9702][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:34][9702][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:34][9702][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:34][9702][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:34][9702][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:34][9702][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:34][9702][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:34][9702][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:34][9702][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:34][9702][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:34][9702][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:34][9702][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:34][9702][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:34][9702][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:34][9702][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:34][9702][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:34][9702][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:34][9702][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:34][9702][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:34][9702][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:34][9702][INFO][MAIN] Duplicate execution. +[28 11:38:37][9708][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:37][9708][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:37][9708][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:37][9708][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:37][9708][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:37][9708][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:37][9708][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:37][9708][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:37][9708][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:37][9708][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:37][9708][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:37][9708][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:37][9708][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:37][9708][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:37][9708][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:37][9708][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:37][9708][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:37][9708][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:37][9708][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:37][9708][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:37][9708][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:37][9708][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:37][9708][INFO][MAIN] Duplicate execution. +[28 11:38:40][9714][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:40][9714][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:40][9714][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:40][9714][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:40][9714][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:40][9714][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:40][9714][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:40][9714][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:40][9714][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:40][9714][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:40][9714][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:40][9714][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:40][9714][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:40][9714][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:40][9714][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:40][9714][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:40][9714][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:40][9714][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:40][9714][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:40][9714][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:40][9714][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:40][9714][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:40][9714][INFO][MAIN] Duplicate execution. +[28 11:38:43][9720][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:43][9720][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:43][9720][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:43][9720][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:43][9720][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:43][9720][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:43][9720][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:43][9720][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:43][9720][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:43][9720][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:43][9720][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:43][9720][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:43][9720][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:43][9720][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:43][9720][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:43][9720][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:43][9720][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:43][9720][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:43][9720][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:43][9720][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:43][9720][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:43][9720][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:43][9720][INFO][MAIN] Duplicate execution. +[28 11:38:46][9726][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:46][9726][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:46][9726][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:46][9726][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:46][9726][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:46][9726][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:46][9726][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:46][9726][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:46][9726][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:46][9726][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:46][9726][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:46][9726][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:46][9726][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:46][9726][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:46][9726][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:46][9726][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:46][9726][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:46][9726][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:46][9726][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:46][9726][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:46][9726][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:46][9726][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:46][9726][INFO][MAIN] Duplicate execution. +[28 11:38:49][9732][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:49][9732][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:49][9732][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:49][9732][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:49][9732][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:49][9732][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:49][9732][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:49][9732][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:49][9732][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:49][9732][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:49][9732][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:49][9732][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:49][9732][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:49][9732][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:49][9732][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:49][9732][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:49][9732][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:49][9732][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:49][9732][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:49][9732][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:49][9732][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:49][9732][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:49][9732][INFO][MAIN] Duplicate execution. +[28 11:38:52][9738][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:52][9738][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:52][9738][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:52][9738][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:52][9738][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:52][9738][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:52][9738][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:52][9738][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:52][9738][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:52][9738][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:52][9738][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:52][9738][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:52][9738][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:52][9738][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:52][9738][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:52][9738][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:52][9738][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:52][9738][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:52][9738][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:52][9738][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:52][9738][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:52][9738][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:52][9738][INFO][MAIN] Duplicate execution. +[28 11:38:55][9744][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:55][9744][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:55][9744][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:55][9744][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:55][9744][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:55][9744][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:55][9744][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:55][9744][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:55][9744][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:55][9744][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:55][9744][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:55][9744][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:55][9744][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:55][9744][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:55][9744][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:55][9744][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:55][9744][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:55][9744][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:55][9744][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:55][9744][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:55][9744][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:55][9744][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:55][9744][INFO][MAIN] Duplicate execution. +[28 11:38:58][9750][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:38:58][9750][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:38:58][9750][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:38:58][9750][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:38:58][9750][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:38:58][9750][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:38:58][9750][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:38:58][9750][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:38:58][9750][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:38:58][9750][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:38:58][9750][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:38:58][9750][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:38:58][9750][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:38:58][9750][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:38:58][9750][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:38:58][9750][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:38:58][9750][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:38:58][9750][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:38:58][9750][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:38:58][9750][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:38:58][9750][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:38:58][9750][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:38:58][9750][INFO][MAIN] Duplicate execution. +[28 11:39:01][9756][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:01][9756][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:01][9756][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:01][9756][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:01][9756][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:01][9756][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:01][9756][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:01][9756][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:01][9756][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:01][9756][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:01][9756][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:01][9756][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:01][9756][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:01][9756][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:01][9756][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:01][9756][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:01][9756][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:01][9756][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:01][9756][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:01][9756][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:01][9756][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:01][9756][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:01][9756][INFO][MAIN] Duplicate execution. +[28 11:39:04][9762][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:04][9762][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:04][9762][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:04][9762][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:04][9762][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:04][9762][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:04][9762][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:04][9762][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:04][9762][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:04][9762][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:04][9762][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:04][9762][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:04][9762][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:04][9762][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:04][9762][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:04][9762][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:04][9762][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:04][9762][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:04][9762][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:04][9762][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:04][9762][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:04][9762][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:04][9762][INFO][MAIN] Duplicate execution. +[28 11:39:07][9768][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:07][9768][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:07][9768][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:07][9768][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:07][9768][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:07][9768][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:07][9768][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:07][9768][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:07][9768][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:07][9768][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:07][9768][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:07][9768][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:07][9768][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:07][9768][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:07][9768][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:07][9768][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:07][9768][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:07][9768][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:07][9768][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:07][9768][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:07][9768][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:07][9768][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:07][9768][INFO][MAIN] Duplicate execution. +[28 11:39:10][9774][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:10][9774][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:10][9774][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:10][9774][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:10][9774][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:10][9774][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:10][9774][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:10][9774][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:10][9774][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:10][9774][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:10][9774][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:10][9774][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:10][9774][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:10][9774][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:10][9774][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:10][9774][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:10][9774][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:10][9774][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:10][9774][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:10][9774][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:10][9774][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:10][9774][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:10][9774][INFO][MAIN] Duplicate execution. +[28 11:39:13][9780][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:13][9780][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:13][9780][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:13][9780][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:13][9780][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:13][9780][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:13][9780][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:13][9780][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:13][9780][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:13][9780][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:13][9780][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:13][9780][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:13][9780][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:13][9780][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:13][9780][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:13][9780][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:13][9780][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:13][9780][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:13][9780][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:13][9780][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:13][9780][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:13][9780][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:13][9780][INFO][MAIN] Duplicate execution. +[28 11:39:16][9786][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:16][9786][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:16][9786][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:16][9786][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:16][9786][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:16][9786][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:16][9786][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:16][9786][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:16][9786][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:16][9786][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:16][9786][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:16][9786][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:16][9786][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:16][9786][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:16][9786][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:16][9786][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:16][9786][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:16][9786][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:16][9786][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:16][9786][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:16][9786][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:16][9786][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:16][9786][INFO][MAIN] Duplicate execution. +[28 11:39:19][9792][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:19][9792][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:19][9792][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:19][9792][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:19][9792][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:19][9792][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:19][9792][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:19][9792][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:19][9792][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:19][9792][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:19][9792][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:19][9792][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:19][9792][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:19][9792][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:19][9792][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:19][9792][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:19][9792][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:19][9792][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:19][9792][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:19][9792][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:19][9792][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:19][9792][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:19][9792][INFO][MAIN] Duplicate execution. +[28 11:39:22][9798][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:22][9798][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:22][9798][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:22][9798][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:22][9798][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:22][9798][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:22][9798][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:22][9798][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:22][9798][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:22][9798][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:22][9798][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:22][9798][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:22][9798][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:22][9798][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:22][9798][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:22][9798][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:22][9798][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:22][9798][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:22][9798][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:22][9798][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:22][9798][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:22][9798][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:22][9798][INFO][MAIN] Duplicate execution. +[28 11:39:25][9804][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:25][9804][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:25][9804][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:25][9804][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:25][9804][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:25][9804][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:25][9804][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:25][9804][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:25][9804][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:25][9804][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:25][9804][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:25][9804][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:25][9804][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:25][9804][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:25][9804][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:25][9804][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:25][9804][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:25][9804][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:25][9804][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:25][9804][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:25][9804][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:25][9804][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:25][9804][INFO][MAIN] Duplicate execution. +[28 11:39:28][9810][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:28][9810][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:28][9810][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:28][9810][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:28][9810][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:28][9810][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:28][9810][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:28][9810][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:28][9810][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:28][9810][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:28][9810][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:28][9810][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:28][9810][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:28][9810][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:28][9810][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:28][9810][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:28][9810][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:28][9810][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:28][9810][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:28][9810][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:28][9810][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:28][9810][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:28][9810][INFO][MAIN] Duplicate execution. +[28 11:39:31][9816][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:31][9816][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:31][9816][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:31][9816][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:31][9816][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:31][9816][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:31][9816][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:31][9816][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:31][9816][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:31][9816][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:31][9816][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:31][9816][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:31][9816][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:31][9816][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:31][9816][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:31][9816][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:31][9816][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:31][9816][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:31][9816][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:31][9816][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:31][9816][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:31][9816][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:31][9816][INFO][MAIN] Duplicate execution. +[28 11:39:34][9822][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:34][9822][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:34][9822][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:34][9822][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:34][9822][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:34][9822][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:34][9822][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:34][9822][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:34][9822][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:34][9822][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:34][9822][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:34][9822][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:34][9822][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:34][9822][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:34][9822][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:34][9822][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:34][9822][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:34][9822][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:34][9822][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:34][9822][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:34][9822][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:34][9822][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:34][9822][INFO][MAIN] Duplicate execution. +[28 11:39:37][9828][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:37][9828][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:37][9828][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:37][9828][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:37][9828][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:37][9828][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:37][9828][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:37][9828][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:37][9828][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:37][9828][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:37][9828][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:37][9828][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:37][9828][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:37][9828][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:37][9828][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:37][9828][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:37][9828][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:37][9828][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:37][9828][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:37][9828][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:37][9828][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:37][9828][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:37][9828][INFO][MAIN] Duplicate execution. +[28 11:39:40][9834][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:40][9834][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:40][9834][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:40][9834][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:40][9834][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:40][9834][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:40][9834][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:40][9834][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:40][9834][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:40][9834][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:40][9834][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:40][9834][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:40][9834][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:40][9834][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:40][9834][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:40][9834][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:40][9834][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:40][9834][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:40][9834][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:40][9834][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:40][9834][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:40][9834][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:40][9834][INFO][MAIN] Duplicate execution. +[28 11:39:43][9840][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:43][9840][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:43][9840][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:43][9840][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:43][9840][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:43][9840][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:43][9840][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:43][9840][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:43][9840][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:43][9840][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:43][9840][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:43][9840][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:43][9840][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:43][9840][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:43][9840][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:43][9840][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:43][9840][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:43][9840][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:43][9840][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:43][9840][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:43][9840][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:43][9840][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:43][9840][INFO][MAIN] Duplicate execution. +[28 11:39:46][9846][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:46][9846][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:46][9846][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:46][9846][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:46][9846][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:46][9846][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:46][9846][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:46][9846][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:46][9846][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:46][9846][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:46][9846][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:46][9846][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:46][9846][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:46][9846][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:46][9846][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:46][9846][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:46][9846][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:46][9846][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:46][9846][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:46][9846][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:46][9846][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:46][9846][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:46][9846][INFO][MAIN] Duplicate execution. +[28 11:39:49][9852][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:49][9852][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:49][9852][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:49][9852][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:49][9852][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:49][9852][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:49][9852][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:49][9852][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:49][9852][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:49][9852][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:49][9852][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:49][9852][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:49][9852][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:49][9852][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:49][9852][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:49][9852][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:49][9852][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:49][9852][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:49][9852][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:49][9852][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:49][9852][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:49][9852][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:49][9852][INFO][MAIN] Duplicate execution. +[28 11:39:52][9858][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:52][9858][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:52][9858][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:52][9858][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:52][9858][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:52][9858][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:52][9858][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:52][9858][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:52][9858][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:52][9858][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:52][9858][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:52][9858][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:52][9858][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:52][9858][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:52][9858][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:52][9858][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:52][9858][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:52][9858][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:52][9858][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:52][9858][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:52][9858][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:52][9858][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:52][9858][INFO][MAIN] Duplicate execution. +[28 11:39:55][9864][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:55][9864][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:55][9864][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:55][9864][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:55][9864][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:55][9864][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:55][9864][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:55][9864][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:55][9864][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:55][9864][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:55][9864][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:55][9864][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:55][9864][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:55][9864][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:55][9864][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:55][9864][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:55][9864][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:55][9864][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:55][9864][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:55][9864][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:55][9864][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:55][9864][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:55][9864][INFO][MAIN] Duplicate execution. +[28 11:39:58][9870][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:39:58][9870][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:39:58][9870][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:39:58][9870][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:39:58][9870][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:39:58][9870][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:39:58][9870][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:39:58][9870][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:39:58][9870][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:39:58][9870][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:39:58][9870][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:39:58][9870][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:39:58][9870][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:39:58][9870][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:39:58][9870][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:39:58][9870][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:39:58][9870][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:39:58][9870][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:39:58][9870][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:39:58][9870][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:39:58][9870][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:39:58][9870][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:39:58][9870][INFO][MAIN] Duplicate execution. +[28 11:40:01][9876][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:01][9876][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:01][9876][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:01][9876][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:01][9876][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:01][9876][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:01][9876][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:01][9876][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:01][9876][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:01][9876][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:01][9876][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:01][9876][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:01][9876][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:01][9876][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:01][9876][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:01][9876][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:01][9876][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:01][9876][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:01][9876][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:01][9876][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:01][9876][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:01][9876][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:01][9876][INFO][MAIN] Duplicate execution. +[28 11:40:04][9882][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:04][9882][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:04][9882][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:04][9882][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:04][9882][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:04][9882][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:04][9882][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:04][9882][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:04][9882][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:04][9882][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:04][9882][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:04][9882][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:04][9882][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:04][9882][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:04][9882][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:04][9882][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:04][9882][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:04][9882][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:04][9882][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:04][9882][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:04][9882][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:04][9882][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:04][9882][INFO][MAIN] Duplicate execution. +[28 11:40:07][9888][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:07][9888][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:07][9888][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:07][9888][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:07][9888][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:07][9888][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:07][9888][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:07][9888][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:07][9888][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:07][9888][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:07][9888][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:07][9888][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:07][9888][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:07][9888][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:07][9888][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:07][9888][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:07][9888][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:07][9888][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:07][9888][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:07][9888][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:07][9888][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:07][9888][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:07][9888][INFO][MAIN] Duplicate execution. +[28 11:40:10][9894][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:10][9894][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:10][9894][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:10][9894][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:10][9894][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:10][9894][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:10][9894][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:10][9894][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:10][9894][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:10][9894][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:10][9894][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:10][9894][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:10][9894][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:10][9894][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:10][9894][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:10][9894][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:10][9894][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:10][9894][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:10][9894][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:10][9894][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:10][9894][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:10][9894][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:10][9894][INFO][MAIN] Duplicate execution. +[28 11:40:13][9900][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:13][9900][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:13][9900][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:13][9900][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:13][9900][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:13][9900][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:13][9900][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:13][9900][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:13][9900][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:13][9900][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:13][9900][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:13][9900][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:13][9900][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:13][9900][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:13][9900][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:13][9900][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:13][9900][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:13][9900][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:13][9900][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:13][9900][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:13][9900][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:13][9900][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:13][9900][INFO][MAIN] Duplicate execution. +[28 11:40:16][9906][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:16][9906][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:16][9906][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:16][9906][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:16][9906][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:16][9906][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:16][9906][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:16][9906][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:16][9906][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:16][9906][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:16][9906][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:16][9906][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:16][9906][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:16][9906][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:16][9906][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:16][9906][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:16][9906][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:16][9906][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:16][9906][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:16][9906][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:16][9906][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:16][9906][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:16][9906][INFO][MAIN] Duplicate execution. +[28 11:40:19][9912][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:19][9912][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:19][9912][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:19][9912][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:19][9912][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:19][9912][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:19][9912][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:19][9912][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:19][9912][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:19][9912][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:19][9912][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:19][9912][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:19][9912][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:19][9912][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:19][9912][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:19][9912][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:19][9912][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:19][9912][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:19][9912][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:19][9912][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:19][9912][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:19][9912][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:19][9912][INFO][MAIN] Duplicate execution. +[28 11:40:22][9918][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:22][9918][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:22][9918][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:22][9918][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:22][9918][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:22][9918][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:22][9918][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:22][9918][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:22][9918][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:22][9918][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:22][9918][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:22][9918][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:22][9918][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:22][9918][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:22][9918][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:22][9918][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:22][9918][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:22][9918][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:22][9918][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:22][9918][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:22][9918][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:22][9918][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:22][9918][INFO][MAIN] Duplicate execution. +[28 11:40:25][9924][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:25][9924][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:25][9924][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:25][9924][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:25][9924][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:25][9924][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:25][9924][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:25][9924][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:25][9924][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:25][9924][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:25][9924][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:25][9924][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:25][9924][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:25][9924][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:25][9924][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:25][9924][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:25][9924][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:25][9924][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:25][9924][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:25][9924][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:25][9924][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:25][9924][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:25][9924][INFO][MAIN] Duplicate execution. +[28 11:40:28][9930][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:28][9930][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:28][9930][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:28][9930][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:28][9930][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:28][9930][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:28][9930][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:28][9930][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:28][9930][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:28][9930][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:28][9930][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:28][9930][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:28][9930][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:28][9930][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:28][9930][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:28][9930][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:28][9930][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:28][9930][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:28][9930][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:28][9930][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:28][9930][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:28][9930][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:28][9930][INFO][MAIN] Duplicate execution. +[28 11:40:31][9936][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:31][9936][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:31][9936][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:31][9936][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:31][9936][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:31][9936][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:31][9936][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:31][9936][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:31][9936][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:31][9936][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:31][9936][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:31][9936][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:31][9936][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:31][9936][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:31][9936][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:31][9936][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:31][9936][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:31][9936][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:31][9936][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:31][9936][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:31][9936][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:31][9936][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:31][9936][INFO][MAIN] Duplicate execution. +[28 11:40:34][9942][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:34][9942][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:34][9942][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:34][9942][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:34][9942][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:34][9942][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:34][9942][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:34][9942][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:34][9942][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:34][9942][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:34][9942][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:34][9942][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:34][9942][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:34][9942][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:34][9942][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:34][9942][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:34][9942][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:34][9942][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:34][9942][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:34][9942][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:34][9942][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:34][9942][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:34][9942][INFO][MAIN] Duplicate execution. +[28 11:40:37][9948][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:37][9948][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:37][9948][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:37][9948][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:37][9948][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:37][9948][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:37][9948][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:37][9948][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:37][9948][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:37][9948][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:37][9948][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:37][9948][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:37][9948][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:37][9948][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:37][9948][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:37][9948][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:37][9948][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:37][9948][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:37][9948][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:37][9948][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:37][9948][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:37][9948][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:37][9948][INFO][MAIN] Duplicate execution. +[28 11:40:40][9954][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:40][9954][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:40][9954][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:40][9954][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:40][9954][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:40][9954][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:40][9954][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:40][9954][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:40][9954][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:40][9954][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:40][9954][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:40][9954][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:40][9954][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:40][9954][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:40][9954][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:40][9954][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:40][9954][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:40][9954][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:40][9954][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:40][9954][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:40][9954][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:40][9954][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:40][9954][INFO][MAIN] Duplicate execution. +[28 11:40:43][9960][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:43][9960][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:43][9960][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:43][9960][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:43][9960][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:43][9960][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:43][9960][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:43][9960][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:43][9960][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:43][9960][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:43][9960][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:43][9960][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:43][9960][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:43][9960][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:43][9960][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:43][9960][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:43][9960][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:43][9960][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:43][9960][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:43][9960][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:43][9960][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:43][9960][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:43][9960][INFO][MAIN] Duplicate execution. +[28 11:40:46][9966][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:46][9966][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:46][9966][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:46][9966][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:46][9966][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:46][9966][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:46][9966][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:46][9966][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:46][9966][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:46][9966][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:46][9966][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:46][9966][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:46][9966][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:46][9966][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:46][9966][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:46][9966][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:46][9966][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:46][9966][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:46][9966][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:46][9966][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:46][9966][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:46][9966][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:46][9966][INFO][MAIN] Duplicate execution. +[28 11:40:49][9972][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:49][9972][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:49][9972][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:49][9972][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:49][9972][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:49][9972][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:49][9972][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:49][9972][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:49][9972][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:49][9972][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:49][9972][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:49][9972][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:49][9972][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:49][9972][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:49][9972][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:49][9972][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:49][9972][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:49][9972][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:49][9972][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:49][9972][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:49][9972][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:49][9972][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:49][9972][INFO][MAIN] Duplicate execution. +[28 11:40:52][9978][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:52][9978][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:52][9978][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:52][9978][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:52][9978][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:52][9978][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:52][9978][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:52][9978][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:52][9978][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:52][9978][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:52][9978][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:52][9978][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:52][9978][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:52][9978][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:52][9978][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:52][9978][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:52][9978][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:52][9978][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:52][9978][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:52][9978][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:52][9978][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:52][9978][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:52][9978][INFO][MAIN] Duplicate execution. +[28 11:40:55][9984][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:55][9984][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:55][9984][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:55][9984][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:55][9984][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:55][9984][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:55][9984][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:55][9984][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:55][9984][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:55][9984][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:55][9984][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:55][9984][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:55][9984][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:55][9984][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:55][9984][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:55][9984][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:55][9984][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:55][9984][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:55][9984][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:55][9984][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:55][9984][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:55][9984][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:55][9984][INFO][MAIN] Duplicate execution. +[28 11:40:58][9990][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:40:58][9990][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:40:58][9990][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:40:58][9990][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:40:58][9990][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:40:58][9990][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:40:58][9990][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:40:58][9990][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:40:58][9990][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:40:58][9990][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:40:58][9990][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:40:58][9990][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:40:58][9990][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:40:58][9990][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:40:58][9990][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:40:58][9990][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:40:58][9990][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:40:58][9990][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:40:58][9990][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:40:58][9990][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:40:58][9990][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:40:58][9990][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:40:58][9990][INFO][MAIN] Duplicate execution. +[28 11:41:01][9996][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:01][9996][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:01][9996][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:01][9996][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:01][9996][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:01][9996][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:01][9996][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:01][9996][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:01][9996][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:01][9996][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:01][9996][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:01][9996][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:01][9996][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:01][9996][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:01][9996][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:01][9996][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:01][9996][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:01][9996][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:01][9996][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:01][9996][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:01][9996][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:01][9996][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:01][9996][INFO][MAIN] Duplicate execution. +[28 11:41:04][10002][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:04][10002][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:04][10002][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:04][10002][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:04][10002][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:04][10002][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:04][10002][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:04][10002][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:04][10002][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:04][10002][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:04][10002][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:04][10002][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:04][10002][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:04][10002][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:04][10002][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:04][10002][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:04][10002][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:04][10002][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:04][10002][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:04][10002][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:04][10002][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:04][10002][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:04][10002][INFO][MAIN] Duplicate execution. +[28 11:41:07][10008][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:07][10008][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:07][10008][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:07][10008][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:07][10008][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:07][10008][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:07][10008][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:07][10008][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:07][10008][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:07][10008][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:07][10008][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:07][10008][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:07][10008][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:07][10008][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:07][10008][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:07][10008][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:07][10008][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:07][10008][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:07][10008][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:07][10008][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:07][10008][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:07][10008][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:07][10008][INFO][MAIN] Duplicate execution. +[28 11:41:10][10014][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:10][10014][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:10][10014][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:10][10014][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:10][10014][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:10][10014][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:10][10014][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:10][10014][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:10][10014][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:10][10014][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:10][10014][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:10][10014][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:10][10014][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:10][10014][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:10][10014][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:10][10014][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:10][10014][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:10][10014][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:10][10014][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:10][10014][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:10][10014][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:10][10014][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:10][10014][INFO][MAIN] Duplicate execution. +[28 11:41:13][10020][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:13][10020][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:13][10020][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:13][10020][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:13][10020][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:13][10020][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:13][10020][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:13][10020][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:13][10020][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:13][10020][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:13][10020][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:13][10020][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:13][10020][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:13][10020][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:13][10020][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:13][10020][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:13][10020][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:13][10020][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:13][10020][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:13][10020][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:13][10020][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:13][10020][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:13][10020][INFO][MAIN] Duplicate execution. +[28 11:41:16][10026][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:16][10026][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:16][10026][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:16][10026][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:16][10026][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:16][10026][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:16][10026][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:16][10026][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:16][10026][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:16][10026][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:16][10026][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:16][10026][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:16][10026][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:16][10026][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:16][10026][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:16][10026][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:16][10026][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:16][10026][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:16][10026][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:16][10026][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:16][10026][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:16][10026][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:16][10026][INFO][MAIN] Duplicate execution. +[28 11:41:19][10032][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:19][10032][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:19][10032][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:19][10032][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:19][10032][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:19][10032][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:19][10032][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:19][10032][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:19][10032][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:19][10032][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:19][10032][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:19][10032][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:19][10032][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:19][10032][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:19][10032][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:19][10032][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:19][10032][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:19][10032][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:19][10032][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:19][10032][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:19][10032][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:19][10032][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:19][10032][INFO][MAIN] Duplicate execution. +[28 11:41:22][10038][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:22][10038][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:22][10038][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:22][10038][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:22][10038][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:22][10038][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:22][10038][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:22][10038][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:22][10038][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:22][10038][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:22][10038][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:22][10038][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:22][10038][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:22][10038][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:22][10038][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:22][10038][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:22][10038][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:22][10038][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:22][10038][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:22][10038][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:22][10038][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:22][10038][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:22][10038][INFO][MAIN] Duplicate execution. +[28 11:41:25][10044][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:25][10044][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:25][10044][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:25][10044][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:25][10044][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:25][10044][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:25][10044][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:25][10044][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:25][10044][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:25][10044][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:25][10044][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:25][10044][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:25][10044][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:25][10044][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:25][10044][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:25][10044][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:25][10044][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:25][10044][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:25][10044][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:25][10044][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:25][10044][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:25][10044][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:25][10044][INFO][MAIN] Duplicate execution. +[28 11:41:28][10050][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:28][10050][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:28][10050][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:28][10050][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:28][10050][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:28][10050][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:28][10050][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:28][10050][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:28][10050][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:28][10050][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:28][10050][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:28][10050][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:28][10050][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:28][10050][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:28][10050][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:28][10050][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:28][10050][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:28][10050][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:28][10050][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:28][10050][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:28][10050][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:28][10050][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:28][10050][INFO][MAIN] Duplicate execution. +[28 11:41:31][10056][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:31][10056][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:31][10056][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:31][10056][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:31][10056][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:31][10056][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:31][10056][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:31][10056][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:31][10056][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:31][10056][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:31][10056][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:31][10056][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:31][10056][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:31][10056][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:31][10056][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:31][10056][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:31][10056][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:31][10056][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:31][10056][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:31][10056][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:31][10056][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:31][10056][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:31][10056][INFO][MAIN] Duplicate execution. +[28 11:41:34][10062][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:34][10062][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:34][10062][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:34][10062][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:34][10062][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:34][10062][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:34][10062][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:34][10062][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:34][10062][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:34][10062][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:34][10062][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:34][10062][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:34][10062][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:34][10062][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:34][10062][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:34][10062][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:34][10062][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:34][10062][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:34][10062][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:34][10062][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:34][10062][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:34][10062][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:34][10062][INFO][MAIN] Duplicate execution. +[28 11:41:37][10068][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:37][10068][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:37][10068][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:37][10068][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:37][10068][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:37][10068][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:37][10068][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:37][10068][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:37][10068][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:37][10068][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:37][10068][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:37][10068][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:37][10068][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:37][10068][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:37][10068][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:37][10068][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:37][10068][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:37][10068][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:37][10068][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:37][10068][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:37][10068][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:37][10068][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:37][10068][INFO][MAIN] Duplicate execution. +[28 11:41:40][10074][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:40][10074][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:40][10074][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:40][10074][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:40][10074][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:40][10074][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:40][10074][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:40][10074][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:40][10074][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:40][10074][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:40][10074][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:40][10074][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:40][10074][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:40][10074][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:40][10074][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:40][10074][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:40][10074][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:40][10074][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:40][10074][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:40][10074][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:40][10074][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:40][10074][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:40][10074][INFO][MAIN] Duplicate execution. +[28 11:41:43][10080][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:43][10080][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:43][10080][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:43][10080][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:43][10080][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:43][10080][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:43][10080][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:43][10080][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:43][10080][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:43][10080][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:43][10080][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:43][10080][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:43][10080][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:43][10080][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:43][10080][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:43][10080][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:43][10080][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:43][10080][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:43][10080][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:43][10080][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:43][10080][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:43][10080][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:43][10080][INFO][MAIN] Duplicate execution. +[28 11:41:46][10086][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:46][10086][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:46][10086][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:46][10086][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:46][10086][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:46][10086][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:46][10086][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:46][10086][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:46][10086][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:46][10086][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:46][10086][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:46][10086][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:46][10086][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:46][10086][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:46][10086][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:46][10086][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:46][10086][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:46][10086][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:46][10086][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:46][10086][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:46][10086][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:46][10086][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:46][10086][INFO][MAIN] Duplicate execution. +[28 11:41:49][10092][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:49][10092][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:49][10092][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:49][10092][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:49][10092][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:49][10092][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:49][10092][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:49][10092][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:49][10092][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:49][10092][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:49][10092][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:49][10092][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:49][10092][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:49][10092][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:49][10092][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:49][10092][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:49][10092][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:49][10092][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:49][10092][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:49][10092][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:49][10092][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:49][10092][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:49][10092][INFO][MAIN] Duplicate execution. +[28 11:41:52][10098][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:52][10098][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:52][10098][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:52][10098][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:52][10098][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:52][10098][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:52][10098][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:52][10098][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:52][10098][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:52][10098][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:52][10098][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:52][10098][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:52][10098][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:52][10098][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:52][10098][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:52][10098][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:52][10098][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:52][10098][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:52][10098][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:52][10098][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:52][10098][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:52][10098][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:52][10098][INFO][MAIN] Duplicate execution. +[28 11:41:55][10104][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:55][10104][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:55][10104][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:55][10104][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:55][10104][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:55][10104][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:55][10104][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:55][10104][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:55][10104][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:55][10104][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:55][10104][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:55][10104][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:55][10104][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:55][10104][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:55][10104][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:55][10104][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:55][10104][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:55][10104][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:55][10104][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:55][10104][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:55][10104][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:55][10104][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:55][10104][INFO][MAIN] Duplicate execution. +[28 11:41:58][10110][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:41:58][10110][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:41:58][10110][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:41:58][10110][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:41:58][10110][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:41:58][10110][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:41:58][10110][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:41:58][10110][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:41:58][10110][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:41:58][10110][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:41:58][10110][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:41:58][10110][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:41:58][10110][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:41:58][10110][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:41:58][10110][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:41:58][10110][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:41:58][10110][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:41:58][10110][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:41:58][10110][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:41:58][10110][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:41:58][10110][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:41:58][10110][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:41:58][10110][INFO][MAIN] Duplicate execution. +[28 11:42:01][10116][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:01][10116][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:01][10116][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:01][10116][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:01][10116][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:01][10116][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:01][10116][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:01][10116][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:01][10116][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:01][10116][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:01][10116][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:01][10116][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:01][10116][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:01][10116][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:01][10116][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:01][10116][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:01][10116][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:01][10116][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:01][10116][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:01][10116][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:01][10116][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:01][10116][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:01][10116][INFO][MAIN] Duplicate execution. +[28 11:42:04][10122][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:04][10122][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:04][10122][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:04][10122][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:04][10122][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:04][10122][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:04][10122][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:04][10122][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:04][10122][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:04][10122][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:04][10122][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:04][10122][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:04][10122][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:04][10122][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:04][10122][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:04][10122][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:04][10122][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:04][10122][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:04][10122][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:04][10122][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:04][10122][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:04][10122][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:04][10122][INFO][MAIN] Duplicate execution. +[28 11:42:07][10128][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:07][10128][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:07][10128][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:07][10128][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:07][10128][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:07][10128][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:07][10128][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:07][10128][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:07][10128][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:07][10128][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:07][10128][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:07][10128][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:07][10128][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:07][10128][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:07][10128][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:07][10128][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:07][10128][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:07][10128][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:07][10128][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:07][10128][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:07][10128][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:07][10128][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:07][10128][INFO][MAIN] Duplicate execution. +[28 11:42:10][10134][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:10][10134][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:10][10134][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:10][10134][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:10][10134][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:10][10134][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:10][10134][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:10][10134][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:10][10134][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:10][10134][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:10][10134][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:10][10134][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:10][10134][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:10][10134][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:10][10134][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:10][10134][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:10][10134][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:10][10134][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:10][10134][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:10][10134][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:10][10134][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:10][10134][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:10][10134][INFO][MAIN] Duplicate execution. +[28 11:42:13][10140][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:13][10140][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:13][10140][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:13][10140][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:13][10140][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:13][10140][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:13][10140][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:13][10140][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:13][10140][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:13][10140][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:13][10140][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:13][10140][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:13][10140][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:13][10140][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:13][10140][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:13][10140][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:13][10140][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:13][10140][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:13][10140][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:13][10140][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:13][10140][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:13][10140][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:13][10140][INFO][MAIN] Duplicate execution. +[28 11:42:16][10146][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:16][10146][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:16][10146][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:16][10146][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:16][10146][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:16][10146][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:16][10146][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:16][10146][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:16][10146][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:16][10146][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:16][10146][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:16][10146][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:16][10146][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:16][10146][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:16][10146][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:16][10146][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:16][10146][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:16][10146][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:16][10146][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:16][10146][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:16][10146][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:16][10146][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:16][10146][INFO][MAIN] Duplicate execution. +[28 11:42:19][10152][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:19][10152][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:19][10152][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:19][10152][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:19][10152][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:19][10152][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:19][10152][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:19][10152][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:19][10152][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:19][10152][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:19][10152][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:19][10152][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:19][10152][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:19][10152][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:19][10152][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:19][10152][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:19][10152][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:19][10152][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:19][10152][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:19][10152][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:19][10152][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:19][10152][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:19][10152][INFO][MAIN] Duplicate execution. +[28 11:42:22][10158][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:22][10158][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:22][10158][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:22][10158][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:22][10158][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:22][10158][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:22][10158][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:22][10158][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:22][10158][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:22][10158][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:22][10158][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:22][10158][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:22][10158][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:22][10158][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:22][10158][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:22][10158][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:22][10158][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:22][10158][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:22][10158][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:22][10158][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:22][10158][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:22][10158][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:22][10158][INFO][MAIN] Duplicate execution. +[28 11:42:25][10164][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:25][10164][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:25][10164][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:25][10164][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:25][10164][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:25][10164][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:25][10164][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:25][10164][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:25][10164][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:25][10164][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:25][10164][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:25][10164][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:25][10164][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:25][10164][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:25][10164][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:25][10164][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:25][10164][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:25][10164][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:25][10164][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:25][10164][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:25][10164][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:25][10164][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:25][10164][INFO][MAIN] Duplicate execution. +[28 11:42:28][10170][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:28][10170][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:28][10170][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:28][10170][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:28][10170][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:28][10170][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:28][10170][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:28][10170][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:28][10170][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:28][10170][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:28][10170][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:28][10170][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:28][10170][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:28][10170][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:28][10170][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:28][10170][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:28][10170][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:28][10170][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:28][10170][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:28][10170][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:28][10170][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:28][10170][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:28][10170][INFO][MAIN] Duplicate execution. +[28 11:42:31][10176][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:31][10176][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:31][10176][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:31][10176][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:31][10176][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:31][10176][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:31][10176][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:31][10176][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:31][10176][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:31][10176][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:31][10176][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:31][10176][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:31][10176][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:31][10176][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:31][10176][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:31][10176][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:31][10176][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:31][10176][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:31][10176][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:31][10176][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:31][10176][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:31][10176][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:31][10176][INFO][MAIN] Duplicate execution. +[28 11:42:34][10182][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:34][10182][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:34][10182][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:34][10182][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:34][10182][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:34][10182][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:34][10182][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:34][10182][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:34][10182][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:34][10182][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:34][10182][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:34][10182][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:34][10182][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:34][10182][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:34][10182][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:34][10182][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:34][10182][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:34][10182][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:34][10182][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:34][10182][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:34][10182][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:34][10182][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:34][10182][INFO][MAIN] Duplicate execution. +[28 11:42:37][10188][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:37][10188][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:37][10188][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:37][10188][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:37][10188][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:37][10188][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:37][10188][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:37][10188][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:37][10188][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:37][10188][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:37][10188][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:37][10188][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:37][10188][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:37][10188][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:37][10188][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:37][10188][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:37][10188][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:37][10188][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:37][10188][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:37][10188][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:37][10188][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:37][10188][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:37][10188][INFO][MAIN] Duplicate execution. +[28 11:42:40][10194][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:40][10194][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:40][10194][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:40][10194][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:40][10194][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:40][10194][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:40][10194][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:40][10194][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:40][10194][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:40][10194][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:40][10194][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:40][10194][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:40][10194][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:40][10194][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:40][10194][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:40][10194][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:40][10194][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:40][10194][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:40][10194][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:40][10194][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:40][10194][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:40][10194][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:40][10194][INFO][MAIN] Duplicate execution. +[28 11:42:43][10200][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:43][10200][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:43][10200][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:43][10200][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:43][10200][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:43][10200][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:43][10200][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:43][10200][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:43][10200][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:43][10200][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:43][10200][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:43][10200][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:43][10200][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:43][10200][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:43][10200][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:43][10200][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:43][10200][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:43][10200][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:43][10200][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:43][10200][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:43][10200][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:43][10200][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:43][10200][INFO][MAIN] Duplicate execution. +[28 11:42:46][10206][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:46][10206][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:46][10206][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:46][10206][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:46][10206][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:46][10206][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:46][10206][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:46][10206][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:46][10206][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:46][10206][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:46][10206][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:46][10206][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:46][10206][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:46][10206][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:46][10206][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:46][10206][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:46][10206][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:46][10206][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:46][10206][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:46][10206][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:46][10206][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:46][10206][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:46][10206][INFO][MAIN] Duplicate execution. +[28 11:42:49][10212][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:49][10212][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:49][10212][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:49][10212][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:49][10212][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:49][10212][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:49][10212][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:49][10212][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:49][10212][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:49][10212][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:49][10212][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:49][10212][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:49][10212][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:49][10212][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:49][10212][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:49][10212][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:49][10212][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:49][10212][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:49][10212][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:49][10212][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:49][10212][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:49][10212][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:49][10212][INFO][MAIN] Duplicate execution. +[28 11:42:52][10218][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:52][10218][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:52][10218][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:52][10218][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:52][10218][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:52][10218][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:52][10218][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:52][10218][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:52][10218][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:52][10218][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:52][10218][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:52][10218][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:52][10218][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:52][10218][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:52][10218][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:52][10218][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:52][10218][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:52][10218][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:52][10218][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:52][10218][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:52][10218][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:52][10218][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:52][10218][INFO][MAIN] Duplicate execution. +[28 11:42:55][10224][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:55][10224][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:55][10224][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:55][10224][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:55][10224][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:55][10224][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:55][10224][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:55][10224][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:55][10224][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:55][10224][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:55][10224][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:55][10224][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:55][10224][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:55][10224][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:55][10224][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:55][10224][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:55][10224][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:55][10224][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:55][10224][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:55][10224][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:55][10224][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:55][10224][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:55][10224][INFO][MAIN] Duplicate execution. +[28 11:42:58][10230][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:42:58][10230][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:42:58][10230][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:42:58][10230][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:42:58][10230][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:42:58][10230][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:42:58][10230][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:42:58][10230][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:42:58][10230][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:42:58][10230][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:42:58][10230][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:42:58][10230][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:42:58][10230][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:42:58][10230][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:42:58][10230][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:42:58][10230][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:42:58][10230][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:42:58][10230][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:42:58][10230][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:42:58][10230][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:42:58][10230][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:42:58][10230][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:42:58][10230][INFO][MAIN] Duplicate execution. +[28 11:43:01][10236][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:01][10236][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:01][10236][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:01][10236][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:01][10236][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:01][10236][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:01][10236][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:01][10236][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:01][10236][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:01][10236][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:01][10236][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:01][10236][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:01][10236][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:01][10236][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:01][10236][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:01][10236][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:01][10236][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:01][10236][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:01][10236][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:01][10236][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:01][10236][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:01][10236][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:01][10236][INFO][MAIN] Duplicate execution. +[28 11:43:04][10242][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:04][10242][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:04][10242][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:04][10242][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:04][10242][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:04][10242][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:04][10242][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:04][10242][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:04][10242][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:04][10242][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:04][10242][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:04][10242][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:04][10242][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:04][10242][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:04][10242][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:04][10242][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:04][10242][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:04][10242][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:04][10242][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:04][10242][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:04][10242][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:04][10242][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:04][10242][INFO][MAIN] Duplicate execution. +[28 11:43:07][10248][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:07][10248][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:07][10248][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:07][10248][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:07][10248][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:07][10248][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:07][10248][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:07][10248][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:07][10248][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:07][10248][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:07][10248][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:07][10248][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:07][10248][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:07][10248][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:07][10248][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:07][10248][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:07][10248][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:07][10248][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:07][10248][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:07][10248][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:07][10248][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:07][10248][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:07][10248][INFO][MAIN] Duplicate execution. +[28 11:43:10][10254][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:10][10254][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:10][10254][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:10][10254][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:10][10254][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:10][10254][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:10][10254][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:10][10254][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:10][10254][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:10][10254][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:10][10254][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:10][10254][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:10][10254][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:10][10254][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:10][10254][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:10][10254][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:10][10254][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:10][10254][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:10][10254][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:10][10254][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:10][10254][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:10][10254][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:10][10254][INFO][MAIN] Duplicate execution. +[28 11:43:13][10260][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:13][10260][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:13][10260][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:13][10260][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:13][10260][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:13][10260][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:13][10260][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:13][10260][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:13][10260][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:13][10260][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:13][10260][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:13][10260][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:13][10260][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:13][10260][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:13][10260][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:13][10260][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:13][10260][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:13][10260][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:13][10260][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:13][10260][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:13][10260][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:13][10260][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:13][10260][INFO][MAIN] Duplicate execution. +[28 11:43:16][10266][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:16][10266][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:16][10266][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:16][10266][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:16][10266][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:16][10266][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:16][10266][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:16][10266][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:16][10266][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:16][10266][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:16][10266][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:16][10266][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:16][10266][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:16][10266][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:16][10266][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:16][10266][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:16][10266][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:16][10266][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:16][10266][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:16][10266][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:16][10266][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:16][10266][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:16][10266][INFO][MAIN] Duplicate execution. +[28 11:43:19][10272][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:19][10272][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:19][10272][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:19][10272][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:19][10272][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:19][10272][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:19][10272][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:19][10272][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:19][10272][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:19][10272][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:19][10272][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:19][10272][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:19][10272][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:19][10272][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:19][10272][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:19][10272][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:19][10272][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:19][10272][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:19][10272][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:19][10272][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:19][10272][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:19][10272][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:19][10272][INFO][MAIN] Duplicate execution. +[28 11:43:22][10278][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:22][10278][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:22][10278][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:22][10278][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:22][10278][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:22][10278][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:22][10278][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:22][10278][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:22][10278][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:22][10278][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:22][10278][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:22][10278][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:22][10278][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:22][10278][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:22][10278][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:22][10278][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:22][10278][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:22][10278][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:22][10278][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:22][10278][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:22][10278][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:22][10278][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:22][10278][INFO][MAIN] Duplicate execution. +[28 11:43:25][10284][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:25][10284][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:25][10284][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:25][10284][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:25][10284][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:25][10284][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:25][10284][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:25][10284][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:25][10284][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:25][10284][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:25][10284][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:25][10284][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:25][10284][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:25][10284][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:25][10284][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:25][10284][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:25][10284][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:25][10284][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:25][10284][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:25][10284][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:25][10284][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:25][10284][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:25][10284][INFO][MAIN] Duplicate execution. +[28 11:43:28][10290][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:28][10290][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:28][10290][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:28][10290][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:28][10290][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:28][10290][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:28][10290][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:28][10290][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:28][10290][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:28][10290][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:28][10290][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:28][10290][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:28][10290][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:28][10290][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:28][10290][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:28][10290][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:28][10290][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:28][10290][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:28][10290][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:28][10290][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:28][10290][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:28][10290][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:28][10290][INFO][MAIN] Duplicate execution. +[28 11:43:31][10296][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:31][10296][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:31][10296][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:31][10296][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:31][10296][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:31][10296][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:31][10296][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:31][10296][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:31][10296][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:31][10296][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:31][10296][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:31][10296][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:31][10296][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:31][10296][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:31][10296][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:31][10296][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:31][10296][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:31][10296][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:31][10296][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:31][10296][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:31][10296][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:31][10296][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:31][10296][INFO][MAIN] Duplicate execution. +[28 11:43:34][10302][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:34][10302][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:34][10302][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:34][10302][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:34][10302][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:34][10302][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:34][10302][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:34][10302][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:34][10302][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:34][10302][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:34][10302][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:34][10302][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:34][10302][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:34][10302][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:34][10302][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:34][10302][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:34][10302][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:34][10302][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:34][10302][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:34][10302][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:34][10302][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:34][10302][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:34][10302][INFO][MAIN] Duplicate execution. +[28 11:43:37][10308][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:37][10308][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:37][10308][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:37][10308][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:37][10308][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:37][10308][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:37][10308][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:37][10308][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:37][10308][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:37][10308][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:37][10308][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:37][10308][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:37][10308][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:37][10308][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:37][10308][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:37][10308][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:37][10308][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:37][10308][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:37][10308][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:37][10308][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:37][10308][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:37][10308][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:37][10308][INFO][MAIN] Duplicate execution. +[28 11:43:40][10314][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:40][10314][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:40][10314][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:40][10314][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:40][10314][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:40][10314][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:40][10314][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:40][10314][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:40][10314][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:40][10314][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:40][10314][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:40][10314][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:40][10314][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:40][10314][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:40][10314][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:40][10314][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:40][10314][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:40][10314][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:40][10314][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:40][10314][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:40][10314][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:40][10314][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:40][10314][INFO][MAIN] Duplicate execution. +[28 11:43:43][10320][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:43][10320][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:43][10320][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:43][10320][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:43][10320][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:43][10320][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:43][10320][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:43][10320][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:43][10320][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:43][10320][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:43][10320][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:43][10320][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:43][10320][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:43][10320][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:43][10320][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:43][10320][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:43][10320][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:43][10320][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:43][10320][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:43][10320][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:43][10320][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:43][10320][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:43][10320][INFO][MAIN] Duplicate execution. +[28 11:43:46][10326][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:46][10326][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:46][10326][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:46][10326][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:46][10326][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:46][10326][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:46][10326][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:46][10326][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:46][10326][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:46][10326][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:46][10326][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:46][10326][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:46][10326][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:46][10326][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:46][10326][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:46][10326][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:46][10326][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:46][10326][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:46][10326][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:46][10326][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:46][10326][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:46][10326][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:46][10326][INFO][MAIN] Duplicate execution. +[28 11:43:49][10332][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:49][10332][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:49][10332][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:49][10332][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:49][10332][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:49][10332][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:49][10332][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:49][10332][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:49][10332][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:49][10332][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:49][10332][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:49][10332][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:49][10332][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:49][10332][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:49][10332][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:49][10332][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:49][10332][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:49][10332][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:49][10332][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:49][10332][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:49][10332][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:49][10332][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:49][10332][INFO][MAIN] Duplicate execution. +[28 11:43:52][10338][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:52][10338][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:52][10338][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:52][10338][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:52][10338][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:52][10338][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:52][10338][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:52][10338][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:52][10338][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:52][10338][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:52][10338][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:52][10338][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:52][10338][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:52][10338][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:52][10338][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:52][10338][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:52][10338][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:52][10338][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:52][10338][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:52][10338][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:52][10338][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:52][10338][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:52][10338][INFO][MAIN] Duplicate execution. +[28 11:43:55][10344][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:55][10344][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:55][10344][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:55][10344][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:55][10344][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:55][10344][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:55][10344][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:55][10344][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:55][10344][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:55][10344][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:55][10344][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:55][10344][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:55][10344][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:55][10344][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:55][10344][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:55][10344][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:55][10344][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:55][10344][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:55][10344][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:55][10344][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:55][10344][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:55][10344][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:55][10344][INFO][MAIN] Duplicate execution. +[28 11:43:58][10350][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:43:58][10350][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:43:58][10350][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:43:58][10350][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:43:58][10350][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:43:58][10350][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:43:58][10350][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:43:58][10350][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:43:58][10350][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:43:58][10350][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:43:58][10350][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:43:58][10350][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:43:58][10350][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:43:58][10350][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:43:58][10350][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:43:58][10350][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:43:58][10350][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:43:58][10350][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:43:58][10350][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:43:58][10350][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:43:58][10350][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:43:58][10350][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:43:58][10350][INFO][MAIN] Duplicate execution. +[28 11:44:01][10356][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:01][10356][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:01][10356][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:01][10356][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:01][10356][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:01][10356][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:01][10356][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:01][10356][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:01][10356][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:01][10356][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:01][10356][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:01][10356][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:01][10356][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:01][10356][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:01][10356][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:01][10356][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:01][10356][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:01][10356][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:01][10356][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:01][10356][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:01][10356][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:01][10356][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:01][10356][INFO][MAIN] Duplicate execution. +[28 11:44:04][10362][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:04][10362][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:04][10362][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:04][10362][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:04][10362][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:04][10362][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:04][10362][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:04][10362][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:04][10362][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:04][10362][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:04][10362][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:04][10362][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:04][10362][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:04][10362][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:04][10362][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:04][10362][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:04][10362][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:04][10362][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:04][10362][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:04][10362][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:04][10362][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:04][10362][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:04][10362][INFO][MAIN] Duplicate execution. +[28 11:44:07][10368][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:07][10368][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:07][10368][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:07][10368][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:07][10368][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:07][10368][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:07][10368][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:07][10368][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:07][10368][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:07][10368][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:07][10368][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:07][10368][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:07][10368][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:07][10368][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:07][10368][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:07][10368][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:07][10368][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:07][10368][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:07][10368][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:07][10368][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:07][10368][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:07][10368][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:07][10368][INFO][MAIN] Duplicate execution. +[28 11:44:10][10374][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:10][10374][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:10][10374][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:10][10374][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:10][10374][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:10][10374][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:10][10374][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:10][10374][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:10][10374][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:10][10374][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:10][10374][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:10][10374][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:10][10374][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:10][10374][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:10][10374][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:10][10374][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:10][10374][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:10][10374][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:10][10374][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:10][10374][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:10][10374][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:10][10374][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:10][10374][INFO][MAIN] Duplicate execution. +[28 11:44:13][10380][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:13][10380][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:13][10380][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:13][10380][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:13][10380][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:13][10380][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:13][10380][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:13][10380][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:13][10380][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:13][10380][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:13][10380][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:13][10380][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:13][10380][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:13][10380][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:13][10380][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:13][10380][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:13][10380][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:13][10380][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:13][10380][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:13][10380][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:13][10380][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:13][10380][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:13][10380][INFO][MAIN] Duplicate execution. +[28 11:44:16][10386][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:16][10386][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:16][10386][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:16][10386][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:16][10386][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:16][10386][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:16][10386][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:16][10386][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:16][10386][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:16][10386][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:16][10386][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:16][10386][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:16][10386][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:16][10386][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:16][10386][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:16][10386][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:16][10386][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:16][10386][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:16][10386][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:16][10386][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:16][10386][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:16][10386][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:16][10386][INFO][MAIN] Duplicate execution. +[28 11:44:19][10392][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:19][10392][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:19][10392][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:19][10392][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:19][10392][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:19][10392][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:19][10392][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:19][10392][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:19][10392][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:19][10392][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:19][10392][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:19][10392][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:19][10392][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:19][10392][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:19][10392][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:19][10392][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:19][10392][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:19][10392][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:19][10392][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:19][10392][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:19][10392][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:19][10392][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:19][10392][INFO][MAIN] Duplicate execution. +[28 11:44:22][10398][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:22][10398][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:22][10398][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:22][10398][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:22][10398][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:22][10398][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:22][10398][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:22][10398][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:22][10398][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:22][10398][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:22][10398][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:22][10398][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:22][10398][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:22][10398][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:22][10398][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:22][10398][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:22][10398][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:22][10398][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:22][10398][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:22][10398][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:22][10398][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:22][10398][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:22][10398][INFO][MAIN] Duplicate execution. +[28 11:44:25][10404][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:25][10404][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:25][10404][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:25][10404][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:25][10404][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:25][10404][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:25][10404][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:25][10404][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:25][10404][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:25][10404][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:25][10404][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:25][10404][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:25][10404][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:25][10404][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:25][10404][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:25][10404][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:25][10404][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:25][10404][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:25][10404][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:25][10404][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:25][10404][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:25][10404][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:25][10404][INFO][MAIN] Duplicate execution. +[28 11:44:28][10410][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:28][10410][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:28][10410][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:28][10410][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:28][10410][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:28][10410][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:28][10410][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:28][10410][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:28][10410][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:28][10410][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:28][10410][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:28][10410][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:28][10410][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:28][10410][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:28][10410][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:28][10410][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:28][10410][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:28][10410][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:28][10410][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:28][10410][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:28][10410][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:28][10410][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:28][10410][INFO][MAIN] Duplicate execution. +[28 11:44:31][10416][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:31][10416][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:31][10416][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:31][10416][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:31][10416][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:31][10416][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:31][10416][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:31][10416][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:31][10416][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:31][10416][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:31][10416][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:31][10416][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:31][10416][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:31][10416][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:31][10416][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:31][10416][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:31][10416][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:31][10416][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:31][10416][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:31][10416][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:31][10416][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:31][10416][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:31][10416][INFO][MAIN] Duplicate execution. +[28 11:44:34][10422][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:34][10422][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:34][10422][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:34][10422][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:34][10422][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:34][10422][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:34][10422][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:34][10422][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:34][10422][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:34][10422][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:34][10422][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:34][10422][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:34][10422][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:34][10422][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:34][10422][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:34][10422][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:34][10422][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:34][10422][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:34][10422][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:34][10422][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:34][10422][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:34][10422][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:34][10422][INFO][MAIN] Duplicate execution. +[28 11:44:37][10428][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:37][10428][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:37][10428][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:37][10428][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:37][10428][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:37][10428][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:37][10428][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:37][10428][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:37][10428][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:37][10428][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:37][10428][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:37][10428][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:37][10428][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:37][10428][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:37][10428][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:37][10428][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:37][10428][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:37][10428][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:37][10428][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:37][10428][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:37][10428][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:37][10428][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:37][10428][INFO][MAIN] Duplicate execution. +[28 11:44:40][10434][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:40][10434][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:40][10434][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:40][10434][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:40][10434][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:40][10434][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:40][10434][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:40][10434][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:40][10434][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:40][10434][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:40][10434][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:40][10434][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:40][10434][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:40][10434][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:40][10434][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:40][10434][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:40][10434][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:40][10434][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:40][10434][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:40][10434][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:40][10434][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:40][10434][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:40][10434][INFO][MAIN] Duplicate execution. +[28 11:44:43][10440][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:43][10440][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:43][10440][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:43][10440][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:43][10440][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:43][10440][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:43][10440][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:43][10440][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:43][10440][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:43][10440][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:43][10440][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:43][10440][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:43][10440][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:43][10440][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:43][10440][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:43][10440][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:43][10440][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:43][10440][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:43][10440][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:43][10440][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:43][10440][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:43][10440][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:43][10440][INFO][MAIN] Duplicate execution. +[28 11:44:46][10446][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:46][10446][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:46][10446][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:46][10446][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:46][10446][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:46][10446][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:46][10446][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:46][10446][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:46][10446][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:46][10446][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:46][10446][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:46][10446][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:46][10446][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:46][10446][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:46][10446][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:46][10446][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:46][10446][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:46][10446][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:46][10446][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:46][10446][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:46][10446][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:46][10446][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:46][10446][INFO][MAIN] Duplicate execution. +[28 11:44:49][10452][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:49][10452][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:49][10452][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:49][10452][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:49][10452][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:49][10452][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:49][10452][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:49][10452][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:49][10452][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:49][10452][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:49][10452][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:49][10452][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:49][10452][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:49][10452][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:49][10452][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:49][10452][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:49][10452][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:49][10452][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:49][10452][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:49][10452][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:49][10452][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:49][10452][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:49][10452][INFO][MAIN] Duplicate execution. +[28 11:44:52][10458][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:52][10458][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:52][10458][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:52][10458][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:52][10458][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:52][10458][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:52][10458][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:52][10458][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:52][10458][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:52][10458][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:52][10458][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:52][10458][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:52][10458][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:52][10458][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:52][10458][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:52][10458][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:52][10458][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:52][10458][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:52][10458][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:52][10458][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:52][10458][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:52][10458][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:52][10458][INFO][MAIN] Duplicate execution. +[28 11:44:55][10464][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:55][10464][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:55][10464][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:55][10464][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:55][10464][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:55][10464][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:55][10464][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:55][10464][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:55][10464][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:55][10464][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:55][10464][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:55][10464][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:55][10464][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:55][10464][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:55][10464][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:55][10464][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:55][10464][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:55][10464][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:55][10464][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:55][10464][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:55][10464][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:55][10464][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:55][10464][INFO][MAIN] Duplicate execution. +[28 11:44:58][10470][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:44:58][10470][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:44:58][10470][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:44:58][10470][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:44:58][10470][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:44:58][10470][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:44:58][10470][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:44:58][10470][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:44:58][10470][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:44:58][10470][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:44:58][10470][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:44:58][10470][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:44:58][10470][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:44:58][10470][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:44:58][10470][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:44:58][10470][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:44:58][10470][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:44:58][10470][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:44:58][10470][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:44:58][10470][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:44:58][10470][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:44:58][10470][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:44:58][10470][INFO][MAIN] Duplicate execution. +[28 11:45:01][10476][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:01][10476][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:01][10476][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:01][10476][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:01][10476][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:01][10476][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:01][10476][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:01][10476][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:01][10476][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:01][10476][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:01][10476][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:01][10476][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:01][10476][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:01][10476][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:01][10476][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:01][10476][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:01][10476][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:01][10476][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:01][10476][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:01][10476][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:01][10476][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:01][10476][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:01][10476][INFO][MAIN] Duplicate execution. +[28 11:45:04][10482][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:04][10482][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:04][10482][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:04][10482][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:04][10482][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:04][10482][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:04][10482][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:04][10482][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:04][10482][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:04][10482][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:04][10482][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:04][10482][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:04][10482][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:04][10482][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:04][10482][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:04][10482][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:04][10482][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:04][10482][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:04][10482][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:04][10482][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:04][10482][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:04][10482][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:04][10482][INFO][MAIN] Duplicate execution. +[28 11:45:07][10488][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:07][10488][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:07][10488][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:07][10488][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:07][10488][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:07][10488][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:07][10488][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:07][10488][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:07][10488][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:07][10488][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:07][10488][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:07][10488][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:07][10488][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:07][10488][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:07][10488][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:07][10488][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:07][10488][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:07][10488][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:07][10488][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:07][10488][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:07][10488][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:07][10488][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:07][10488][INFO][MAIN] Duplicate execution. +[28 11:45:10][10494][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:10][10494][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:10][10494][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:10][10494][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:10][10494][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:10][10494][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:10][10494][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:10][10494][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:10][10494][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:10][10494][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:10][10494][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:10][10494][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:10][10494][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:10][10494][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:10][10494][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:10][10494][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:10][10494][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:10][10494][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:10][10494][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:10][10494][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:10][10494][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:10][10494][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:10][10494][INFO][MAIN] Duplicate execution. +[28 11:45:13][10500][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:13][10500][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:13][10500][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:13][10500][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:13][10500][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:13][10500][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:13][10500][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:13][10500][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:13][10500][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:13][10500][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:13][10500][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:13][10500][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:13][10500][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:13][10500][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:13][10500][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:13][10500][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:13][10500][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:13][10500][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:13][10500][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:13][10500][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:13][10500][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:13][10500][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:13][10500][INFO][MAIN] Duplicate execution. +[28 11:45:16][10506][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:16][10506][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:16][10506][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:16][10506][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:16][10506][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:16][10506][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:16][10506][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:16][10506][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:16][10506][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:16][10506][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:16][10506][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:16][10506][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:16][10506][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:16][10506][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:16][10506][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:16][10506][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:16][10506][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:16][10506][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:16][10506][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:16][10506][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:16][10506][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:16][10506][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:16][10506][INFO][MAIN] Duplicate execution. +[28 11:45:19][10512][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:19][10512][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:19][10512][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:19][10512][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:19][10512][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:19][10512][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:19][10512][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:19][10512][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:19][10512][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:19][10512][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:19][10512][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:19][10512][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:19][10512][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:19][10512][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:19][10512][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:19][10512][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:19][10512][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:19][10512][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:19][10512][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:19][10512][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:19][10512][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:19][10512][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:19][10512][INFO][MAIN] Duplicate execution. +[28 11:45:22][10518][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:22][10518][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:22][10518][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:22][10518][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:22][10518][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:22][10518][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:22][10518][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:22][10518][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:22][10518][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:22][10518][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:22][10518][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:22][10518][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:22][10518][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:22][10518][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:22][10518][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:22][10518][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:22][10518][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:22][10518][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:22][10518][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:22][10518][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:22][10518][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:22][10518][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:22][10518][INFO][MAIN] Duplicate execution. +[28 11:45:25][10524][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:25][10524][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:25][10524][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:25][10524][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:25][10524][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:25][10524][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:25][10524][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:25][10524][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:25][10524][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:25][10524][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:25][10524][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:25][10524][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:25][10524][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:25][10524][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:25][10524][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:25][10524][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:25][10524][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:25][10524][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:25][10524][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:25][10524][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:25][10524][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:25][10524][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:25][10524][INFO][MAIN] Duplicate execution. +[28 11:45:28][10530][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:28][10530][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:28][10530][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:28][10530][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:28][10530][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:28][10530][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:28][10530][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:28][10530][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:28][10530][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:28][10530][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:28][10530][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:28][10530][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:28][10530][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:28][10530][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:28][10530][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:28][10530][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:28][10530][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:28][10530][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:28][10530][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:28][10530][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:28][10530][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:28][10530][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:28][10530][INFO][MAIN] Duplicate execution. +[28 11:45:31][10536][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:31][10536][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:31][10536][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:31][10536][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:31][10536][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:31][10536][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:31][10536][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:31][10536][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:31][10536][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:31][10536][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:31][10536][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:31][10536][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:31][10536][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:31][10536][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:31][10536][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:31][10536][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:31][10536][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:31][10536][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:31][10536][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:31][10536][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:31][10536][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:31][10536][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:31][10536][INFO][MAIN] Duplicate execution. +[28 11:45:34][10542][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:34][10542][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:34][10542][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:34][10542][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:34][10542][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:34][10542][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:34][10542][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:34][10542][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:34][10542][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:34][10542][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:34][10542][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:34][10542][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:34][10542][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:34][10542][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:34][10542][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:34][10542][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:34][10542][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:34][10542][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:34][10542][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:34][10542][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:34][10542][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:34][10542][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:34][10542][INFO][MAIN] Duplicate execution. +[28 11:45:37][10548][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:37][10548][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:37][10548][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:37][10548][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:37][10548][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:37][10548][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:37][10548][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:37][10548][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:37][10548][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:37][10548][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:37][10548][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:37][10548][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:37][10548][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:37][10548][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:37][10548][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:37][10548][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:37][10548][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:37][10548][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:37][10548][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:37][10548][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:37][10548][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:37][10548][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:37][10548][INFO][MAIN] Duplicate execution. +[28 11:45:40][10554][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:40][10554][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:40][10554][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:40][10554][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:40][10554][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:40][10554][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:40][10554][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:40][10554][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:40][10554][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:40][10554][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:40][10554][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:40][10554][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:40][10554][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:40][10554][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:40][10554][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:40][10554][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:40][10554][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:40][10554][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:40][10554][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:40][10554][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:40][10554][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:40][10554][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:40][10554][INFO][MAIN] Duplicate execution. +[28 11:45:43][10560][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:43][10560][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:43][10560][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:43][10560][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:43][10560][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:43][10560][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:43][10560][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:43][10560][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:43][10560][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:43][10560][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:43][10560][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:43][10560][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:43][10560][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:43][10560][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:43][10560][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:43][10560][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:43][10560][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:43][10560][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:43][10560][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:43][10560][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:43][10560][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:43][10560][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:43][10560][INFO][MAIN] Duplicate execution. +[28 11:45:46][10566][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:46][10566][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:46][10566][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:46][10566][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:46][10566][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:46][10566][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:46][10566][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:46][10566][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:46][10566][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:46][10566][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:46][10566][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:46][10566][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:46][10566][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:46][10566][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:46][10566][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:46][10566][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:46][10566][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:46][10566][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:46][10566][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:46][10566][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:46][10566][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:46][10566][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:46][10566][INFO][MAIN] Duplicate execution. +[28 11:45:49][10572][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:49][10572][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:49][10572][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:49][10572][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:49][10572][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:49][10572][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:49][10572][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:49][10572][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:49][10572][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:49][10572][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:49][10572][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:49][10572][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:49][10572][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:49][10572][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:49][10572][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:49][10572][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:49][10572][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:49][10572][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:49][10572][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:49][10572][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:49][10572][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:49][10572][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:49][10572][INFO][MAIN] Duplicate execution. +[28 11:45:52][10578][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:52][10578][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:52][10578][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:52][10578][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:52][10578][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:52][10578][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:52][10578][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:52][10578][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:52][10578][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:52][10578][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:52][10578][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:52][10578][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:52][10578][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:52][10578][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:52][10578][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:52][10578][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:52][10578][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:52][10578][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:52][10578][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:52][10578][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:52][10578][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:52][10578][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:52][10578][INFO][MAIN] Duplicate execution. +[28 11:45:55][10584][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:55][10584][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:55][10584][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:55][10584][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:55][10584][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:55][10584][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:55][10584][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:55][10584][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:55][10584][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:55][10584][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:55][10584][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:55][10584][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:55][10584][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:55][10584][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:55][10584][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:55][10584][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:55][10584][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:55][10584][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:55][10584][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:55][10584][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:55][10584][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:55][10584][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:55][10584][INFO][MAIN] Duplicate execution. +[28 11:45:58][10590][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:45:58][10590][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:45:58][10590][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:45:58][10590][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:45:58][10590][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:45:58][10590][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:45:58][10590][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:45:58][10590][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:45:58][10590][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:45:58][10590][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:45:58][10590][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:45:58][10590][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:45:58][10590][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:45:58][10590][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:45:58][10590][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:45:58][10590][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:45:58][10590][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:45:58][10590][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:45:58][10590][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:45:58][10590][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:45:58][10590][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:45:58][10590][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:45:58][10590][INFO][MAIN] Duplicate execution. +[28 11:46:01][10596][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:01][10596][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:01][10596][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:01][10596][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:01][10596][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:01][10596][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:01][10596][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:01][10596][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:01][10596][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:01][10596][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:01][10596][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:01][10596][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:01][10596][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:01][10596][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:01][10596][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:01][10596][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:01][10596][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:01][10596][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:01][10596][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:01][10596][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:01][10596][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:01][10596][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:01][10596][INFO][MAIN] Duplicate execution. +[28 11:46:04][10602][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:04][10602][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:04][10602][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:04][10602][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:04][10602][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:04][10602][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:04][10602][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:04][10602][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:04][10602][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:04][10602][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:04][10602][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:04][10602][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:04][10602][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:04][10602][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:04][10602][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:04][10602][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:04][10602][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:04][10602][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:04][10602][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:04][10602][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:04][10602][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:04][10602][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:04][10602][INFO][MAIN] Duplicate execution. +[28 11:46:07][10608][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:07][10608][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:07][10608][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:07][10608][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:07][10608][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:07][10608][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:07][10608][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:07][10608][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:07][10608][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:07][10608][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:07][10608][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:07][10608][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:07][10608][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:07][10608][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:07][10608][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:07][10608][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:07][10608][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:07][10608][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:07][10608][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:07][10608][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:07][10608][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:07][10608][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:07][10608][INFO][MAIN] Duplicate execution. +[28 11:46:10][10614][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:10][10614][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:10][10614][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:10][10614][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:10][10614][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:10][10614][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:10][10614][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:10][10614][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:10][10614][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:10][10614][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:10][10614][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:10][10614][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:10][10614][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:10][10614][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:10][10614][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:10][10614][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:10][10614][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:10][10614][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:10][10614][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:10][10614][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:10][10614][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:10][10614][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:10][10614][INFO][MAIN] Duplicate execution. +[28 11:46:13][10620][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:13][10620][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:13][10620][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:13][10620][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:13][10620][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:13][10620][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:13][10620][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:13][10620][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:13][10620][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:13][10620][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:13][10620][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:13][10620][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:13][10620][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:13][10620][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:13][10620][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:13][10620][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:13][10620][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:13][10620][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:13][10620][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:13][10620][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:13][10620][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:13][10620][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:13][10620][INFO][MAIN] Duplicate execution. +[28 11:46:16][10626][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:16][10626][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:16][10626][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:16][10626][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:16][10626][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:16][10626][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:16][10626][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:16][10626][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:16][10626][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:16][10626][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:16][10626][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:16][10626][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:16][10626][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:16][10626][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:16][10626][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:16][10626][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:16][10626][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:16][10626][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:16][10626][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:16][10626][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:16][10626][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:16][10626][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:16][10626][INFO][MAIN] Duplicate execution. +[28 11:46:19][10632][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:19][10632][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:19][10632][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:19][10632][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:19][10632][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:19][10632][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:19][10632][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:19][10632][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:19][10632][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:19][10632][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:19][10632][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:19][10632][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:19][10632][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:19][10632][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:19][10632][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:19][10632][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:19][10632][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:19][10632][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:19][10632][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:19][10632][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:19][10632][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:19][10632][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:19][10632][INFO][MAIN] Duplicate execution. +[28 11:46:22][10638][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:22][10638][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:22][10638][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:22][10638][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:22][10638][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:22][10638][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:22][10638][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:22][10638][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:22][10638][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:22][10638][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:22][10638][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:22][10638][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:22][10638][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:22][10638][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:22][10638][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:22][10638][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:22][10638][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:22][10638][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:22][10638][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:22][10638][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:22][10638][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:22][10638][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:22][10638][INFO][MAIN] Duplicate execution. +[28 11:46:25][10644][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:25][10644][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:25][10644][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:25][10644][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:25][10644][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:25][10644][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:25][10644][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:25][10644][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:25][10644][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:25][10644][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:25][10644][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:25][10644][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:25][10644][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:25][10644][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:25][10644][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:25][10644][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:25][10644][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:25][10644][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:25][10644][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:25][10644][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:25][10644][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:25][10644][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:25][10644][INFO][MAIN] Duplicate execution. +[28 11:46:28][10650][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:28][10650][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:28][10650][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:28][10650][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:28][10650][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:28][10650][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:28][10650][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:28][10650][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:28][10650][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:28][10650][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:28][10650][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:28][10650][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:28][10650][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:28][10650][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:28][10650][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:28][10650][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:28][10650][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:28][10650][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:28][10650][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:28][10650][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:28][10650][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:28][10650][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:28][10650][INFO][MAIN] Duplicate execution. +[28 11:46:31][10656][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:31][10656][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:31][10656][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:31][10656][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:31][10656][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:31][10656][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:31][10656][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:31][10656][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:31][10656][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:31][10656][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:31][10656][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:31][10656][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:31][10656][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:31][10656][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:31][10656][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:31][10656][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:31][10656][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:31][10656][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:31][10656][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:31][10656][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:31][10656][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:31][10656][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:31][10656][INFO][MAIN] Duplicate execution. +[28 11:46:34][10662][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:34][10662][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:34][10662][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:34][10662][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:34][10662][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:34][10662][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:34][10662][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:34][10662][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:34][10662][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:34][10662][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:34][10662][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:34][10662][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:34][10662][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:34][10662][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:34][10662][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:34][10662][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:34][10662][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:34][10662][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:34][10662][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:34][10662][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:34][10662][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:34][10662][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:34][10662][INFO][MAIN] Duplicate execution. +[28 11:46:37][10668][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:37][10668][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:37][10668][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:37][10668][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:37][10668][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:37][10668][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:37][10668][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:37][10668][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:37][10668][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:37][10668][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:37][10668][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:37][10668][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:37][10668][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:37][10668][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:37][10668][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:37][10668][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:37][10668][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:37][10668][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:37][10668][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:37][10668][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:37][10668][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:37][10668][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:37][10668][INFO][MAIN] Duplicate execution. +[28 11:46:40][10674][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:40][10674][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:40][10674][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:40][10674][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:40][10674][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:40][10674][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:40][10674][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:40][10674][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:40][10674][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:40][10674][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:40][10674][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:40][10674][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:40][10674][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:40][10674][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:40][10674][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:40][10674][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:40][10674][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:40][10674][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:40][10674][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:40][10674][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:40][10674][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:40][10674][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:40][10674][INFO][MAIN] Duplicate execution. +[28 11:46:43][10680][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:43][10680][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:43][10680][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:43][10680][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:43][10680][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:43][10680][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:43][10680][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:43][10680][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:43][10680][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:43][10680][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:43][10680][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:43][10680][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:43][10680][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:43][10680][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:43][10680][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:43][10680][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:43][10680][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:43][10680][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:43][10680][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:43][10680][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:43][10680][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:43][10680][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:43][10680][INFO][MAIN] Duplicate execution. +[28 11:46:46][10686][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:46][10686][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:46][10686][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:46][10686][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:46][10686][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:46][10686][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:46][10686][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:46][10686][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:46][10686][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:46][10686][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:46][10686][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:46][10686][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:46][10686][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:46][10686][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:46][10686][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:46][10686][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:46][10686][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:46][10686][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:46][10686][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:46][10686][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:46][10686][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:46][10686][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:46][10686][INFO][MAIN] Duplicate execution. +[28 11:46:49][10692][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:49][10692][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:49][10692][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:49][10692][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:49][10692][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:49][10692][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:49][10692][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:49][10692][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:49][10692][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:49][10692][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:49][10692][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:49][10692][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:49][10692][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:49][10692][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:49][10692][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:49][10692][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:49][10692][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:49][10692][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:49][10692][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:49][10692][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:49][10692][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:49][10692][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:49][10692][INFO][MAIN] Duplicate execution. +[28 11:46:52][10698][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:52][10698][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:52][10698][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:52][10698][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:52][10698][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:52][10698][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:52][10698][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:52][10698][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:52][10698][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:52][10698][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:52][10698][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:52][10698][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:52][10698][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:52][10698][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:52][10698][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:52][10698][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:52][10698][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:52][10698][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:52][10698][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:52][10698][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:52][10698][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:52][10698][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:52][10698][INFO][MAIN] Duplicate execution. +[28 11:46:55][10704][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:55][10704][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:55][10704][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:55][10704][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:55][10704][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:55][10704][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:55][10704][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:55][10704][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:55][10704][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:55][10704][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:55][10704][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:55][10704][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:55][10704][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:55][10704][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:55][10704][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:55][10704][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:55][10704][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:55][10704][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:55][10704][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:55][10704][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:55][10704][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:55][10704][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:55][10704][INFO][MAIN] Duplicate execution. +[28 11:46:58][10710][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:46:58][10710][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:46:58][10710][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:46:58][10710][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:46:58][10710][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:46:58][10710][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:46:58][10710][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:46:58][10710][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:46:58][10710][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:46:58][10710][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:46:58][10710][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:46:58][10710][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:46:58][10710][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:46:58][10710][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:46:58][10710][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:46:58][10710][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:46:58][10710][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:46:58][10710][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:46:58][10710][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:46:58][10710][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:46:58][10710][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:46:58][10710][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:46:58][10710][INFO][MAIN] Duplicate execution. +[28 11:47:01][10716][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:01][10716][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:01][10716][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:01][10716][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:01][10716][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:01][10716][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:01][10716][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:01][10716][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:01][10716][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:01][10716][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:01][10716][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:01][10716][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:01][10716][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:01][10716][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:01][10716][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:01][10716][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:01][10716][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:01][10716][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:01][10716][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:01][10716][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:01][10716][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:01][10716][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:01][10716][INFO][MAIN] Duplicate execution. +[28 11:47:04][10722][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:04][10722][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:04][10722][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:04][10722][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:04][10722][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:04][10722][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:04][10722][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:04][10722][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:04][10722][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:04][10722][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:04][10722][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:04][10722][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:04][10722][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:04][10722][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:04][10722][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:04][10722][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:04][10722][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:04][10722][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:04][10722][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:04][10722][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:04][10722][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:04][10722][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:04][10722][INFO][MAIN] Duplicate execution. +[28 11:47:07][10728][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:07][10728][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:07][10728][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:07][10728][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:07][10728][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:07][10728][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:07][10728][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:07][10728][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:07][10728][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:07][10728][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:07][10728][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:07][10728][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:07][10728][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:07][10728][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:07][10728][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:07][10728][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:07][10728][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:07][10728][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:07][10728][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:07][10728][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:07][10728][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:07][10728][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:07][10728][INFO][MAIN] Duplicate execution. +[28 11:47:10][10734][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:10][10734][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:10][10734][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:10][10734][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:10][10734][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:10][10734][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:10][10734][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:10][10734][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:10][10734][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:10][10734][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:10][10734][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:10][10734][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:10][10734][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:10][10734][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:10][10734][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:10][10734][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:10][10734][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:10][10734][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:10][10734][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:10][10734][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:10][10734][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:10][10734][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:10][10734][INFO][MAIN] Duplicate execution. +[28 11:47:13][10740][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:13][10740][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:13][10740][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:13][10740][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:13][10740][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:13][10740][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:13][10740][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:13][10740][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:13][10740][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:13][10740][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:13][10740][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:13][10740][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:13][10740][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:13][10740][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:13][10740][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:13][10740][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:13][10740][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:13][10740][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:13][10740][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:13][10740][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:13][10740][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:13][10740][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:13][10740][INFO][MAIN] Duplicate execution. +[28 11:47:16][10746][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:16][10746][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:16][10746][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:16][10746][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:16][10746][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:16][10746][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:16][10746][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:16][10746][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:16][10746][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:16][10746][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:16][10746][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:16][10746][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:16][10746][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:16][10746][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:16][10746][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:16][10746][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:16][10746][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:16][10746][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:16][10746][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:16][10746][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:16][10746][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:16][10746][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:16][10746][INFO][MAIN] Duplicate execution. +[28 11:47:19][10752][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:19][10752][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:19][10752][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:19][10752][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:19][10752][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:19][10752][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:19][10752][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:19][10752][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:19][10752][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:19][10752][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:19][10752][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:19][10752][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:19][10752][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:19][10752][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:19][10752][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:19][10752][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:19][10752][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:19][10752][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:19][10752][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:19][10752][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:19][10752][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:19][10752][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:19][10752][INFO][MAIN] Duplicate execution. +[28 11:47:22][10758][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:22][10758][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:22][10758][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:22][10758][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:22][10758][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:22][10758][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:22][10758][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:22][10758][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:22][10758][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:22][10758][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:22][10758][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:22][10758][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:22][10758][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:22][10758][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:22][10758][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:22][10758][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:22][10758][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:22][10758][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:22][10758][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:22][10758][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:22][10758][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:22][10758][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:22][10758][INFO][MAIN] Duplicate execution. +[28 11:47:25][10764][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:25][10764][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:25][10764][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:25][10764][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:25][10764][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:25][10764][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:25][10764][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:25][10764][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:25][10764][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:25][10764][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:25][10764][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:25][10764][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:25][10764][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:25][10764][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:25][10764][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:25][10764][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:25][10764][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:25][10764][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:25][10764][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:25][10764][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:25][10764][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:25][10764][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:25][10764][INFO][MAIN] Duplicate execution. +[28 11:47:28][10770][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:28][10770][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:28][10770][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:28][10770][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:28][10770][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:28][10770][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:28][10770][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:28][10770][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:28][10770][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:28][10770][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:28][10770][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:28][10770][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:28][10770][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:28][10770][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:28][10770][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:28][10770][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:28][10770][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:28][10770][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:28][10770][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:28][10770][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:28][10770][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:28][10770][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:28][10770][INFO][MAIN] Duplicate execution. +[28 11:47:31][10776][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:31][10776][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:31][10776][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:31][10776][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:31][10776][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:31][10776][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:31][10776][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:31][10776][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:31][10776][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:31][10776][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:31][10776][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:31][10776][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:31][10776][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:31][10776][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:31][10776][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:31][10776][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:31][10776][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:31][10776][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:31][10776][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:31][10776][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:31][10776][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:31][10776][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:31][10776][INFO][MAIN] Duplicate execution. +[28 11:47:34][10782][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:34][10782][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:34][10782][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:34][10782][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:34][10782][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:34][10782][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:34][10782][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:34][10782][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:34][10782][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:34][10782][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:34][10782][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:34][10782][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:34][10782][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:34][10782][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:34][10782][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:34][10782][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:34][10782][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:34][10782][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:34][10782][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:34][10782][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:34][10782][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:34][10782][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:34][10782][INFO][MAIN] Duplicate execution. +[28 11:47:37][10788][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:37][10788][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:37][10788][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:37][10788][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:37][10788][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:37][10788][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:37][10788][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:37][10788][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:37][10788][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:37][10788][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:37][10788][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:37][10788][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:37][10788][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:37][10788][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:37][10788][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:37][10788][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:37][10788][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:37][10788][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:37][10788][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:37][10788][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:37][10788][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:37][10788][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:37][10788][INFO][MAIN] Duplicate execution. +[28 11:47:40][10794][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:40][10794][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:40][10794][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:40][10794][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:40][10794][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:40][10794][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:40][10794][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:40][10794][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:40][10794][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:40][10794][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:40][10794][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:40][10794][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:40][10794][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:40][10794][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:40][10794][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:40][10794][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:40][10794][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:40][10794][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:40][10794][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:40][10794][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:40][10794][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:40][10794][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:40][10794][INFO][MAIN] Duplicate execution. +[28 11:47:43][10800][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:43][10800][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:43][10800][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:43][10800][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:43][10800][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:43][10800][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:43][10800][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:43][10800][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:43][10800][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:43][10800][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:43][10800][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:43][10800][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:43][10800][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:43][10800][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:43][10800][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:43][10800][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:43][10800][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:43][10800][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:43][10800][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:43][10800][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:43][10800][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:43][10800][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:43][10800][INFO][MAIN] Duplicate execution. +[28 11:47:46][10806][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:46][10806][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:46][10806][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:46][10806][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:46][10806][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:46][10806][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:46][10806][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:46][10806][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:46][10806][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:46][10806][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:46][10806][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:46][10806][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:46][10806][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:46][10806][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:46][10806][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:46][10806][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:46][10806][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:46][10806][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:46][10806][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:46][10806][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:46][10806][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:46][10806][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:46][10806][INFO][MAIN] Duplicate execution. +[28 11:47:49][10812][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:49][10812][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:49][10812][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:49][10812][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:49][10812][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:49][10812][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:49][10812][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:49][10812][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:49][10812][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:49][10812][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:49][10812][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:49][10812][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:49][10812][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:49][10812][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:49][10812][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:49][10812][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:49][10812][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:49][10812][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:49][10812][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:49][10812][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:49][10812][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:49][10812][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:49][10812][INFO][MAIN] Duplicate execution. +[28 11:47:52][10818][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:52][10818][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:52][10818][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:52][10818][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:52][10818][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:52][10818][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:52][10818][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:52][10818][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:52][10818][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:52][10818][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:52][10818][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:52][10818][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:52][10818][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:52][10818][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:52][10818][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:52][10818][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:52][10818][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:52][10818][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:52][10818][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:52][10818][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:52][10818][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:52][10818][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:52][10818][INFO][MAIN] Duplicate execution. +[28 11:47:55][10824][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:55][10824][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:55][10824][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:55][10824][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:55][10824][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:55][10824][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:55][10824][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:55][10824][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:55][10824][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:55][10824][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:55][10824][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:55][10824][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:55][10824][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:55][10824][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:55][10824][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:55][10824][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:55][10824][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:55][10824][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:55][10824][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:55][10824][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:55][10824][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:55][10824][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:55][10824][INFO][MAIN] Duplicate execution. +[28 11:47:58][10830][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:47:58][10830][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:47:58][10830][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:47:58][10830][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:47:58][10830][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:47:58][10830][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:47:58][10830][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:47:58][10830][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:47:58][10830][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:47:58][10830][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:47:58][10830][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:47:58][10830][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:47:58][10830][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:47:58][10830][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:47:58][10830][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:47:58][10830][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:47:58][10830][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:47:58][10830][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:47:58][10830][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:47:58][10830][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:47:58][10830][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:47:58][10830][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:47:58][10830][INFO][MAIN] Duplicate execution. +[28 11:48:01][10836][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:01][10836][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:01][10836][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:01][10836][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:01][10836][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:01][10836][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:01][10836][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:01][10836][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:01][10836][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:01][10836][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:01][10836][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:01][10836][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:01][10836][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:01][10836][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:01][10836][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:01][10836][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:01][10836][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:01][10836][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:01][10836][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:01][10836][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:01][10836][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:01][10836][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:01][10836][INFO][MAIN] Duplicate execution. +[28 11:48:04][10842][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:04][10842][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:04][10842][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:04][10842][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:04][10842][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:04][10842][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:04][10842][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:04][10842][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:04][10842][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:04][10842][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:04][10842][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:04][10842][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:04][10842][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:04][10842][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:04][10842][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:04][10842][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:04][10842][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:04][10842][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:04][10842][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:04][10842][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:04][10842][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:04][10842][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:04][10842][INFO][MAIN] Duplicate execution. +[28 11:48:07][10848][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:07][10848][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:07][10848][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:07][10848][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:07][10848][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:07][10848][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:07][10848][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:07][10848][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:07][10848][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:07][10848][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:07][10848][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:07][10848][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:07][10848][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:07][10848][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:07][10848][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:07][10848][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:07][10848][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:07][10848][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:07][10848][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:07][10848][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:07][10848][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:07][10848][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:07][10848][INFO][MAIN] Duplicate execution. +[28 11:48:10][10854][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:10][10854][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:10][10854][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:10][10854][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:10][10854][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:10][10854][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:10][10854][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:10][10854][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:10][10854][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:10][10854][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:10][10854][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:10][10854][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:10][10854][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:10][10854][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:10][10854][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:10][10854][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:10][10854][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:10][10854][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:10][10854][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:10][10854][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:10][10854][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:10][10854][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:10][10854][INFO][MAIN] Duplicate execution. +[28 11:48:13][10860][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:13][10860][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:13][10860][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:13][10860][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:13][10860][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:13][10860][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:13][10860][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:13][10860][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:13][10860][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:13][10860][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:13][10860][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:13][10860][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:13][10860][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:13][10860][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:13][10860][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:13][10860][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:13][10860][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:13][10860][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:13][10860][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:13][10860][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:13][10860][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:13][10860][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:13][10860][INFO][MAIN] Duplicate execution. +[28 11:48:16][10866][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:16][10866][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:16][10866][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:16][10866][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:16][10866][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:16][10866][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:16][10866][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:16][10866][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:16][10866][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:16][10866][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:16][10866][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:16][10866][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:16][10866][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:16][10866][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:16][10866][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:16][10866][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:16][10866][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:16][10866][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:16][10866][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:16][10866][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:16][10866][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:16][10866][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:16][10866][INFO][MAIN] Duplicate execution. +[28 11:48:19][10872][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:19][10872][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:19][10872][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:19][10872][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:19][10872][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:19][10872][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:19][10872][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:19][10872][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:19][10872][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:19][10872][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:19][10872][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:19][10872][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:19][10872][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:19][10872][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:19][10872][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:19][10872][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:19][10872][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:19][10872][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:19][10872][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:19][10872][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:19][10872][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:19][10872][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:19][10872][INFO][MAIN] Duplicate execution. +[28 11:48:22][10878][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:22][10878][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:22][10878][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:22][10878][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:22][10878][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:22][10878][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:22][10878][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:22][10878][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:22][10878][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:22][10878][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:22][10878][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:22][10878][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:22][10878][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:22][10878][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:22][10878][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:22][10878][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:22][10878][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:22][10878][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:22][10878][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:22][10878][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:22][10878][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:22][10878][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:22][10878][INFO][MAIN] Duplicate execution. +[28 11:48:25][10884][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:25][10884][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:25][10884][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:25][10884][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:25][10884][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:25][10884][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:25][10884][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:25][10884][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:25][10884][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:25][10884][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:25][10884][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:25][10884][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:25][10884][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:25][10884][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:25][10884][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:25][10884][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:25][10884][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:25][10884][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:25][10884][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:25][10884][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:25][10884][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:25][10884][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:25][10884][INFO][MAIN] Duplicate execution. +[28 11:48:28][10890][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:28][10890][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:28][10890][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:28][10890][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:28][10890][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:28][10890][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:28][10890][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:28][10890][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:28][10890][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:28][10890][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:28][10890][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:28][10890][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:28][10890][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:28][10890][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:28][10890][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:28][10890][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:28][10890][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:28][10890][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:28][10890][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:28][10890][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:28][10890][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:28][10890][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:28][10890][INFO][MAIN] Duplicate execution. +[28 11:48:31][10896][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:31][10896][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:31][10896][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:31][10896][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:31][10896][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:31][10896][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:31][10896][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:31][10896][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:31][10896][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:31][10896][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:31][10896][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:31][10896][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:31][10896][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:31][10896][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:31][10896][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:31][10896][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:31][10896][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:31][10896][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:31][10896][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:31][10896][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:31][10896][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:31][10896][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:31][10896][INFO][MAIN] Duplicate execution. +[28 11:48:34][10902][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:34][10902][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:34][10902][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:34][10902][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:34][10902][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:34][10902][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:34][10902][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:34][10902][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:34][10902][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:34][10902][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:34][10902][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:34][10902][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:34][10902][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:34][10902][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:34][10902][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:34][10902][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:34][10902][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:34][10902][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:34][10902][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:34][10902][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:34][10902][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:34][10902][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:34][10902][INFO][MAIN] Duplicate execution. +[28 11:48:37][10908][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:37][10908][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:37][10908][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:37][10908][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:37][10908][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:37][10908][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:37][10908][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:37][10908][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:37][10908][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:37][10908][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:37][10908][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:37][10908][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:37][10908][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:37][10908][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:37][10908][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:37][10908][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:37][10908][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:37][10908][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:37][10908][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:37][10908][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:37][10908][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:37][10908][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:37][10908][INFO][MAIN] Duplicate execution. +[28 11:48:40][10914][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:40][10914][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:40][10914][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:40][10914][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:40][10914][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:40][10914][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:40][10914][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:40][10914][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:40][10914][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:40][10914][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:40][10914][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:40][10914][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:40][10914][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:40][10914][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:40][10914][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:40][10914][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:40][10914][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:40][10914][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:40][10914][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:40][10914][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:40][10914][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:40][10914][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:40][10914][INFO][MAIN] Duplicate execution. +[28 11:48:43][10920][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:43][10920][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:43][10920][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:43][10920][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:43][10920][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:43][10920][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:43][10920][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:43][10920][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:43][10920][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:43][10920][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:43][10920][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:43][10920][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:43][10920][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:43][10920][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:43][10920][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:43][10920][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:43][10920][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:43][10920][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:43][10920][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:43][10920][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:43][10920][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:43][10920][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:43][10920][INFO][MAIN] Duplicate execution. +[28 11:48:46][10926][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:46][10926][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:46][10926][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:46][10926][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:46][10926][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:46][10926][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:46][10926][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:46][10926][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:46][10926][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:46][10926][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:46][10926][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:46][10926][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:46][10926][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:46][10926][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:46][10926][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:46][10926][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:46][10926][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:46][10926][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:46][10926][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:46][10926][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:46][10926][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:46][10926][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:46][10926][INFO][MAIN] Duplicate execution. +[28 11:48:49][10932][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:49][10932][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:49][10932][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:49][10932][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:49][10932][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:49][10932][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:49][10932][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:49][10932][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:49][10932][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:49][10932][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:49][10932][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:49][10932][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:49][10932][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:49][10932][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:49][10932][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:49][10932][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:49][10932][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:49][10932][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:49][10932][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:49][10932][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:49][10932][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:49][10932][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:49][10932][INFO][MAIN] Duplicate execution. +[28 11:48:52][10938][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:52][10938][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:52][10938][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:52][10938][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:52][10938][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:52][10938][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:52][10938][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:52][10938][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:52][10938][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:52][10938][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:52][10938][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:52][10938][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:52][10938][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:52][10938][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:52][10938][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:52][10938][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:52][10938][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:52][10938][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:52][10938][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:52][10938][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:52][10938][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:52][10938][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:52][10938][INFO][MAIN] Duplicate execution. +[28 11:48:55][10944][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:55][10944][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:55][10944][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:55][10944][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:55][10944][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:55][10944][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:55][10944][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:55][10944][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:55][10944][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:55][10944][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:55][10944][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:55][10944][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:55][10944][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:55][10944][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:55][10944][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:55][10944][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:55][10944][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:55][10944][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:55][10944][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:55][10944][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:55][10944][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:55][10944][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:55][10944][INFO][MAIN] Duplicate execution. +[28 11:48:58][10950][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:48:58][10950][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:48:58][10950][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:48:58][10950][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:48:58][10950][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:48:58][10950][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:48:58][10950][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:48:58][10950][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:48:58][10950][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:48:58][10950][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:48:58][10950][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:48:58][10950][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:48:58][10950][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:48:58][10950][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:48:58][10950][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:48:58][10950][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:48:58][10950][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:48:58][10950][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:48:58][10950][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:48:58][10950][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:48:58][10950][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:48:58][10950][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:48:58][10950][INFO][MAIN] Duplicate execution. +[28 11:49:01][10956][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:01][10956][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:01][10956][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:01][10956][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:01][10956][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:01][10956][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:01][10956][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:01][10956][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:01][10956][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:01][10956][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:01][10956][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:01][10956][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:01][10956][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:01][10956][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:01][10956][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:01][10956][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:01][10956][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:01][10956][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:01][10956][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:01][10956][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:01][10956][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:01][10956][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:01][10956][INFO][MAIN] Duplicate execution. +[28 11:49:04][10962][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:04][10962][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:04][10962][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:04][10962][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:04][10962][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:04][10962][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:04][10962][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:04][10962][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:04][10962][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:04][10962][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:04][10962][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:04][10962][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:04][10962][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:04][10962][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:04][10962][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:04][10962][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:04][10962][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:04][10962][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:04][10962][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:04][10962][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:04][10962][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:04][10962][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:04][10962][INFO][MAIN] Duplicate execution. +[28 11:49:07][10968][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:07][10968][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:07][10968][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:07][10968][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:07][10968][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:07][10968][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:07][10968][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:07][10968][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:07][10968][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:07][10968][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:07][10968][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:07][10968][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:07][10968][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:07][10968][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:07][10968][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:07][10968][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:07][10968][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:07][10968][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:07][10968][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:07][10968][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:07][10968][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:07][10968][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:07][10968][INFO][MAIN] Duplicate execution. +[28 11:49:10][10974][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:10][10974][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:10][10974][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:10][10974][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:10][10974][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:10][10974][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:10][10974][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:10][10974][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:10][10974][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:10][10974][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:10][10974][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:10][10974][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:10][10974][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:10][10974][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:10][10974][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:10][10974][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:10][10974][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:10][10974][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:10][10974][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:10][10974][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:10][10974][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:10][10974][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:10][10974][INFO][MAIN] Duplicate execution. +[28 11:49:13][10980][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:13][10980][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:13][10980][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:13][10980][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:13][10980][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:13][10980][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:13][10980][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:13][10980][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:13][10980][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:13][10980][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:13][10980][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:13][10980][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:13][10980][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:13][10980][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:13][10980][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:13][10980][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:13][10980][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:13][10980][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:13][10980][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:13][10980][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:13][10980][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:13][10980][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:13][10980][INFO][MAIN] Duplicate execution. +[28 11:49:16][10986][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:16][10986][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:16][10986][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:16][10986][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:16][10986][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:16][10986][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:16][10986][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:16][10986][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:16][10986][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:16][10986][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:16][10986][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:16][10986][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:16][10986][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:16][10986][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:16][10986][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:16][10986][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:16][10986][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:16][10986][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:16][10986][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:16][10986][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:16][10986][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:16][10986][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:16][10986][INFO][MAIN] Duplicate execution. +[28 11:49:19][10992][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:19][10992][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:19][10992][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:19][10992][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:19][10992][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:19][10992][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:19][10992][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:19][10992][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:19][10992][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:19][10992][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:19][10992][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:19][10992][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:19][10992][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:19][10992][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:19][10992][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:19][10992][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:19][10992][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:19][10992][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:19][10992][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:19][10992][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:19][10992][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:19][10992][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:19][10992][INFO][MAIN] Duplicate execution. +[28 11:49:22][10998][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:22][10998][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:22][10998][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:22][10998][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:22][10998][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:22][10998][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:22][10998][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:22][10998][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:22][10998][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:22][10998][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:22][10998][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:22][10998][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:22][10998][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:22][10998][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:22][10998][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:22][10998][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:22][10998][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:22][10998][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:22][10998][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:22][10998][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:22][10998][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:22][10998][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:22][10998][INFO][MAIN] Duplicate execution. +[28 11:49:25][11004][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:25][11004][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:25][11004][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:25][11004][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:25][11004][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:25][11004][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:25][11004][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:25][11004][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:25][11004][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:25][11004][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:25][11004][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:25][11004][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:25][11004][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:25][11004][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:25][11004][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:25][11004][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:25][11004][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:25][11004][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:25][11004][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:25][11004][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:25][11004][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:25][11004][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:25][11004][INFO][MAIN] Duplicate execution. +[28 11:49:28][11010][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:28][11010][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:28][11010][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:28][11010][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:28][11010][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:28][11010][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:28][11010][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:28][11010][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:28][11010][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:28][11010][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:28][11010][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:28][11010][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:28][11010][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:28][11010][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:28][11010][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:28][11010][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:28][11010][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:28][11010][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:28][11010][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:28][11010][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:28][11010][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:28][11010][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:28][11010][INFO][MAIN] Duplicate execution. +[28 11:49:31][11016][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:31][11016][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:31][11016][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:31][11016][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:31][11016][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:31][11016][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:31][11016][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:31][11016][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:31][11016][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:31][11016][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:31][11016][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:31][11016][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:31][11016][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:31][11016][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:31][11016][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:31][11016][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:31][11016][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:31][11016][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:31][11016][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:31][11016][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:31][11016][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:31][11016][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:31][11016][INFO][MAIN] Duplicate execution. +[28 11:49:34][11022][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:34][11022][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:34][11022][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:34][11022][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:34][11022][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:34][11022][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:34][11022][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:34][11022][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:34][11022][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:34][11022][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:34][11022][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:34][11022][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:34][11022][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:34][11022][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:34][11022][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:34][11022][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:34][11022][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:34][11022][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:34][11022][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:34][11022][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:34][11022][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:34][11022][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:34][11022][INFO][MAIN] Duplicate execution. +[28 11:49:37][11028][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:37][11028][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:37][11028][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:37][11028][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:37][11028][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:37][11028][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:37][11028][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:37][11028][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:37][11028][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:37][11028][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:37][11028][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:37][11028][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:37][11028][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:37][11028][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:37][11028][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:37][11028][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:37][11028][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:37][11028][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:37][11028][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:37][11028][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:37][11028][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:37][11028][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:37][11028][INFO][MAIN] Duplicate execution. +[28 11:49:40][11034][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:40][11034][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:40][11034][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:40][11034][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:40][11034][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:40][11034][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:40][11034][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:40][11034][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:40][11034][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:40][11034][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:40][11034][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:40][11034][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:40][11034][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:40][11034][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:40][11034][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:40][11034][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:40][11034][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:40][11034][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:40][11034][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:40][11034][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:40][11034][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:40][11034][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:40][11034][INFO][MAIN] Duplicate execution. +[28 11:49:43][11040][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:43][11040][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:43][11040][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:43][11040][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:43][11040][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:43][11040][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:43][11040][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:43][11040][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:43][11040][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:43][11040][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:43][11040][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:43][11040][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:43][11040][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:43][11040][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:43][11040][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:43][11040][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:43][11040][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:43][11040][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:43][11040][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:43][11040][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:43][11040][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:43][11040][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:43][11040][INFO][MAIN] Duplicate execution. +[28 11:49:46][11046][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:46][11046][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:46][11046][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:46][11046][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:46][11046][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:46][11046][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:46][11046][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:46][11046][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:46][11046][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:46][11046][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:46][11046][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:46][11046][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:46][11046][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:46][11046][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:46][11046][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:46][11046][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:46][11046][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:46][11046][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:46][11046][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:46][11046][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:46][11046][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:46][11046][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:46][11046][INFO][MAIN] Duplicate execution. +[28 11:49:49][11052][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:49][11052][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:49][11052][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:49][11052][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:49][11052][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:49][11052][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:49][11052][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:49][11052][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:49][11052][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:49][11052][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:49][11052][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:49][11052][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:49][11052][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:49][11052][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:49][11052][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:49][11052][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:49][11052][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:49][11052][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:49][11052][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:49][11052][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:49][11052][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:49][11052][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:49][11052][INFO][MAIN] Duplicate execution. +[28 11:49:52][11058][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:52][11058][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:52][11058][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:52][11058][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:52][11058][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:52][11058][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:52][11058][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:52][11058][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:52][11058][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:52][11058][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:52][11058][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:52][11058][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:52][11058][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:52][11058][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:52][11058][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:52][11058][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:52][11058][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:52][11058][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:52][11058][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:52][11058][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:52][11058][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:52][11058][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:52][11058][INFO][MAIN] Duplicate execution. +[28 11:49:55][11064][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:55][11064][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:55][11064][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:55][11064][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:55][11064][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:55][11064][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:55][11064][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:55][11064][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:55][11064][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:55][11064][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:55][11064][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:55][11064][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:55][11064][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:55][11064][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:55][11064][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:55][11064][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:55][11064][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:55][11064][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:55][11064][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:55][11064][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:55][11064][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:55][11064][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:55][11064][INFO][MAIN] Duplicate execution. +[28 11:49:58][11070][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:49:58][11070][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:49:58][11070][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:49:58][11070][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:49:58][11070][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:49:58][11070][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:49:58][11070][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:49:58][11070][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:49:58][11070][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:49:58][11070][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:49:58][11070][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:49:58][11070][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:49:58][11070][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:49:58][11070][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:49:58][11070][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:49:58][11070][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:49:58][11070][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:49:58][11070][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:49:58][11070][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:49:58][11070][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:49:58][11070][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:49:58][11070][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:49:58][11070][INFO][MAIN] Duplicate execution. +[28 11:50:01][11076][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:01][11076][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:01][11076][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:01][11076][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:01][11076][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:01][11076][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:01][11076][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:01][11076][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:01][11076][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:01][11076][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:01][11076][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:01][11076][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:01][11076][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:01][11076][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:01][11076][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:01][11076][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:01][11076][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:01][11076][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:01][11076][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:01][11076][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:01][11076][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:01][11076][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:01][11076][INFO][MAIN] Duplicate execution. +[28 11:50:04][11082][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:04][11082][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:04][11082][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:04][11082][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:04][11082][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:04][11082][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:04][11082][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:04][11082][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:04][11082][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:04][11082][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:04][11082][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:04][11082][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:04][11082][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:04][11082][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:04][11082][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:04][11082][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:04][11082][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:04][11082][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:04][11082][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:04][11082][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:04][11082][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:04][11082][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:04][11082][INFO][MAIN] Duplicate execution. +[28 11:50:07][11088][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:07][11088][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:07][11088][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:07][11088][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:07][11088][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:07][11088][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:07][11088][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:07][11088][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:07][11088][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:07][11088][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:07][11088][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:07][11088][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:07][11088][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:07][11088][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:07][11088][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:07][11088][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:07][11088][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:07][11088][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:07][11088][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:07][11088][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:07][11088][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:07][11088][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:07][11088][INFO][MAIN] Duplicate execution. +[28 11:50:10][11094][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:10][11094][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:10][11094][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:10][11094][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:10][11094][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:10][11094][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:10][11094][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:10][11094][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:10][11094][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:10][11094][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:10][11094][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:10][11094][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:10][11094][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:10][11094][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:10][11094][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:10][11094][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:10][11094][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:10][11094][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:10][11094][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:10][11094][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:10][11094][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:10][11094][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:10][11094][INFO][MAIN] Duplicate execution. +[28 11:50:13][11100][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:13][11100][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:13][11100][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:13][11100][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:13][11100][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:13][11100][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:13][11100][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:13][11100][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:13][11100][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:13][11100][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:13][11100][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:13][11100][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:13][11100][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:13][11100][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:13][11100][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:13][11100][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:13][11100][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:13][11100][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:13][11100][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:13][11100][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:13][11100][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:13][11100][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:13][11100][INFO][MAIN] Duplicate execution. +[28 11:50:16][11106][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:16][11106][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:16][11106][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:16][11106][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:16][11106][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:16][11106][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:16][11106][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:16][11106][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:16][11106][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:16][11106][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:16][11106][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:16][11106][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:16][11106][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:16][11106][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:16][11106][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:16][11106][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:16][11106][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:16][11106][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:16][11106][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:16][11106][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:16][11106][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:16][11106][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:16][11106][INFO][MAIN] Duplicate execution. +[28 11:50:19][11112][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:19][11112][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:19][11112][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:19][11112][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:19][11112][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:19][11112][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:19][11112][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:19][11112][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:19][11112][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:19][11112][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:19][11112][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:19][11112][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:19][11112][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:19][11112][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:19][11112][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:19][11112][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:19][11112][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:19][11112][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:19][11112][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:19][11112][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:19][11112][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:19][11112][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:19][11112][INFO][MAIN] Duplicate execution. +[28 11:50:22][11118][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:22][11118][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:22][11118][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:22][11118][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:22][11118][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:22][11118][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:22][11118][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:22][11118][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:22][11118][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:22][11118][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:22][11118][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:22][11118][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:22][11118][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:22][11118][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:22][11118][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:22][11118][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:22][11118][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:22][11118][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:22][11118][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:22][11118][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:22][11118][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:22][11118][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:22][11118][INFO][MAIN] Duplicate execution. +[28 11:50:25][11124][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:25][11124][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:25][11124][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:25][11124][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:25][11124][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:25][11124][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:25][11124][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:25][11124][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:25][11124][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:25][11124][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:25][11124][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:25][11124][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:25][11124][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:25][11124][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:25][11124][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:25][11124][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:25][11124][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:25][11124][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:25][11124][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:25][11124][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:25][11124][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:25][11124][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:25][11124][INFO][MAIN] Duplicate execution. +[28 11:50:28][11130][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:28][11130][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:28][11130][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:28][11130][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:28][11130][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:28][11130][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:28][11130][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:28][11130][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:28][11130][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:28][11130][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:28][11130][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:28][11130][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:28][11130][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:28][11130][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:28][11130][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:28][11130][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:28][11130][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:28][11130][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:28][11130][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:28][11130][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:28][11130][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:28][11130][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:28][11130][INFO][MAIN] Duplicate execution. +[28 11:50:31][11136][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:31][11136][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:31][11136][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:31][11136][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:31][11136][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:31][11136][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:31][11136][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:31][11136][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:31][11136][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:31][11136][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:31][11136][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:31][11136][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:31][11136][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:31][11136][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:31][11136][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:31][11136][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:31][11136][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:31][11136][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:31][11136][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:31][11136][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:31][11136][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:31][11136][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:31][11136][INFO][MAIN] Duplicate execution. +[28 11:50:34][11142][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:34][11142][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:34][11142][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:34][11142][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:34][11142][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:34][11142][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:34][11142][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:34][11142][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:34][11142][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:34][11142][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:34][11142][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:34][11142][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:34][11142][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:34][11142][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:34][11142][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:34][11142][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:34][11142][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:34][11142][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:34][11142][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:34][11142][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:34][11142][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:34][11142][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:34][11142][INFO][MAIN] Duplicate execution. +[28 11:50:37][11148][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:37][11148][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:37][11148][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:37][11148][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:37][11148][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:37][11148][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:37][11148][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:37][11148][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:37][11148][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:37][11148][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:37][11148][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:37][11148][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:37][11148][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:37][11148][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:37][11148][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:37][11148][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:37][11148][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:37][11148][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:37][11148][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:37][11148][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:37][11148][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:37][11148][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:37][11148][INFO][MAIN] Duplicate execution. +[28 11:50:40][11154][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:40][11154][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:40][11154][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:40][11154][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:40][11154][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:40][11154][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:40][11154][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:40][11154][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:40][11154][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:40][11154][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:40][11154][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:40][11154][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:40][11154][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:40][11154][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:40][11154][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:40][11154][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:40][11154][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:40][11154][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:40][11154][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:40][11154][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:40][11154][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:40][11154][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:40][11154][INFO][MAIN] Duplicate execution. +[28 11:50:43][11160][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:43][11160][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:43][11160][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:43][11160][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:43][11160][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:43][11160][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:43][11160][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:43][11160][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:43][11160][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:43][11160][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:43][11160][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:43][11160][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:43][11160][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:43][11160][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:43][11160][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:43][11160][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:43][11160][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:43][11160][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:43][11160][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:43][11160][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:43][11160][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:43][11160][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:43][11160][INFO][MAIN] Duplicate execution. +[28 11:50:46][11166][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:46][11166][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:46][11166][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:46][11166][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:46][11166][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:46][11166][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:46][11166][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:46][11166][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:46][11166][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:46][11166][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:46][11166][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:46][11166][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:46][11166][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:46][11166][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:46][11166][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:46][11166][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:46][11166][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:46][11166][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:46][11166][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:46][11166][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:46][11166][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:46][11166][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:46][11166][INFO][MAIN] Duplicate execution. +[28 11:50:49][11172][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:49][11172][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:49][11172][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:49][11172][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:49][11172][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:49][11172][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:49][11172][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:49][11172][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:49][11172][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:49][11172][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:49][11172][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:49][11172][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:49][11172][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:49][11172][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:49][11172][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:49][11172][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:49][11172][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:49][11172][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:49][11172][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:49][11172][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:49][11172][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:49][11172][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:49][11172][INFO][MAIN] Duplicate execution. +[28 11:50:52][11178][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:52][11178][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:52][11178][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:52][11178][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:52][11178][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:52][11178][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:52][11178][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:52][11178][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:52][11178][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:52][11178][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:52][11178][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:52][11178][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:52][11178][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:52][11178][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:52][11178][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:52][11178][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:52][11178][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:52][11178][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:52][11178][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:52][11178][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:52][11178][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:52][11178][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:52][11178][INFO][MAIN] Duplicate execution. +[28 11:50:55][11184][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:55][11184][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:55][11184][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:55][11184][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:55][11184][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:55][11184][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:55][11184][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:55][11184][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:55][11184][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:55][11184][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:55][11184][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:55][11184][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:55][11184][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:55][11184][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:55][11184][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:55][11184][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:55][11184][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:55][11184][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:55][11184][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:55][11184][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:55][11184][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:55][11184][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:55][11184][INFO][MAIN] Duplicate execution. +[28 11:50:58][11190][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:50:58][11190][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:50:58][11190][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:50:58][11190][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:50:58][11190][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:50:58][11190][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:50:58][11190][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:50:58][11190][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:50:58][11190][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:50:58][11190][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:50:58][11190][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:50:58][11190][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:50:58][11190][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:50:58][11190][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:50:58][11190][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:50:58][11190][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:50:58][11190][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:50:58][11190][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:50:58][11190][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:50:58][11190][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:50:58][11190][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:50:58][11190][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:50:58][11190][INFO][MAIN] Duplicate execution. +[28 11:51:01][11196][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:01][11196][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:01][11196][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:01][11196][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:01][11196][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:01][11196][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:01][11196][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:01][11196][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:01][11196][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:01][11196][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:01][11196][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:01][11196][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:01][11196][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:01][11196][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:01][11196][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:01][11196][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:01][11196][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:01][11196][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:01][11196][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:01][11196][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:01][11196][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:01][11196][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:01][11196][INFO][MAIN] Duplicate execution. +[28 11:51:04][11202][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:04][11202][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:04][11202][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:04][11202][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:04][11202][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:04][11202][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:04][11202][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:04][11202][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:04][11202][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:04][11202][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:04][11202][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:04][11202][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:04][11202][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:04][11202][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:04][11202][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:04][11202][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:04][11202][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:04][11202][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:04][11202][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:04][11202][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:04][11202][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:04][11202][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:04][11202][INFO][MAIN] Duplicate execution. +[28 11:51:07][11208][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:07][11208][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:07][11208][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:07][11208][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:07][11208][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:07][11208][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:07][11208][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:07][11208][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:07][11208][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:07][11208][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:07][11208][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:07][11208][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:07][11208][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:07][11208][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:07][11208][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:07][11208][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:07][11208][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:07][11208][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:07][11208][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:07][11208][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:07][11208][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:07][11208][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:07][11208][INFO][MAIN] Duplicate execution. +[28 11:51:10][11214][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:10][11214][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:10][11214][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:10][11214][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:10][11214][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:10][11214][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:10][11214][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:10][11214][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:10][11214][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:10][11214][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:10][11214][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:10][11214][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:10][11214][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:10][11214][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:10][11214][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:10][11214][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:10][11214][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:10][11214][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:10][11214][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:10][11214][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:10][11214][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:10][11214][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:10][11214][INFO][MAIN] Duplicate execution. +[28 11:51:13][11220][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:13][11220][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:13][11220][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:13][11220][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:13][11220][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:13][11220][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:13][11220][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:13][11220][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:13][11220][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:13][11220][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:13][11220][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:13][11220][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:13][11220][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:13][11220][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:13][11220][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:13][11220][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:13][11220][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:13][11220][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:13][11220][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:13][11220][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:13][11220][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:13][11220][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:13][11220][INFO][MAIN] Duplicate execution. +[28 11:51:16][11226][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:16][11226][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:16][11226][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:16][11226][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:16][11226][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:16][11226][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:16][11226][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:16][11226][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:16][11226][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:16][11226][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:16][11226][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:16][11226][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:16][11226][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:16][11226][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:16][11226][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:16][11226][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:16][11226][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:16][11226][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:16][11226][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:16][11226][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:16][11226][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:16][11226][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:16][11226][INFO][MAIN] Duplicate execution. +[28 11:51:19][11232][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:19][11232][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:19][11232][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:19][11232][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:19][11232][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:19][11232][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:19][11232][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:19][11232][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:19][11232][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:19][11232][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:19][11232][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:19][11232][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:19][11232][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:19][11232][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:19][11232][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:19][11232][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:19][11232][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:19][11232][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:19][11232][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:19][11232][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:19][11232][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:19][11232][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:19][11232][INFO][MAIN] Duplicate execution. +[28 11:51:22][11238][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:22][11238][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:22][11238][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:22][11238][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:22][11238][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:22][11238][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:22][11238][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:22][11238][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:22][11238][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:22][11238][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:22][11238][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:22][11238][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:22][11238][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:22][11238][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:22][11238][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:22][11238][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:22][11238][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:22][11238][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:22][11238][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:22][11238][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:22][11238][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:22][11238][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:22][11238][INFO][MAIN] Duplicate execution. +[28 11:51:25][11244][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:25][11244][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:25][11244][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:25][11244][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:25][11244][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:25][11244][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:25][11244][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:25][11244][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:25][11244][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:25][11244][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:25][11244][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:25][11244][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:25][11244][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:25][11244][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:25][11244][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:25][11244][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:25][11244][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:25][11244][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:25][11244][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:25][11244][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:25][11244][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:25][11244][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:25][11244][INFO][MAIN] Duplicate execution. +[28 11:51:28][11250][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:28][11250][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:28][11250][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:28][11250][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:28][11250][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:28][11250][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:28][11250][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:28][11250][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:28][11250][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:28][11250][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:28][11250][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:28][11250][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:28][11250][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:28][11250][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:28][11250][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:28][11250][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:28][11250][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:28][11250][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:28][11250][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:28][11250][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:28][11250][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:28][11250][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:28][11250][INFO][MAIN] Duplicate execution. +[28 11:51:31][11256][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:31][11256][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:31][11256][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:31][11256][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:31][11256][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:31][11256][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:31][11256][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:31][11256][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:31][11256][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:31][11256][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:31][11256][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:31][11256][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:31][11256][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:31][11256][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:31][11256][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:31][11256][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:31][11256][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:31][11256][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:31][11256][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:31][11256][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:31][11256][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:31][11256][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:31][11256][INFO][MAIN] Duplicate execution. +[28 11:51:34][11262][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:34][11262][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:34][11262][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:34][11262][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:34][11262][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:34][11262][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:34][11262][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:34][11262][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:34][11262][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:34][11262][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:34][11262][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:34][11262][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:34][11262][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:34][11262][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:34][11262][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:34][11262][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:34][11262][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:34][11262][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:34][11262][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:34][11262][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:34][11262][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:34][11262][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:34][11262][INFO][MAIN] Duplicate execution. +[28 11:51:37][11268][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:37][11268][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:37][11268][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:37][11268][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:37][11268][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:37][11268][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:37][11268][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:37][11268][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:37][11268][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:37][11268][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:37][11268][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:37][11268][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:37][11268][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:37][11268][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:37][11268][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:37][11268][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:37][11268][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:37][11268][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:37][11268][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:37][11268][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:37][11268][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:37][11268][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:37][11268][INFO][MAIN] Duplicate execution. +[28 11:51:40][11274][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:40][11274][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:40][11274][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:40][11274][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:40][11274][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:40][11274][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:40][11274][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:40][11274][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:40][11274][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:40][11274][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:40][11274][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:40][11274][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:40][11274][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:40][11274][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:40][11274][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:40][11274][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:40][11274][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:40][11274][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:40][11274][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:40][11274][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:40][11274][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:40][11274][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:40][11274][INFO][MAIN] Duplicate execution. +[28 11:51:43][11280][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:43][11280][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:43][11280][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:43][11280][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:43][11280][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:43][11280][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:43][11280][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:43][11280][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:43][11280][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:43][11280][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:43][11280][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:43][11280][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:43][11280][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:43][11280][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:43][11280][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:43][11280][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:43][11280][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:43][11280][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:43][11280][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:43][11280][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:43][11280][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:43][11280][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:43][11280][INFO][MAIN] Duplicate execution. +[28 11:51:46][11286][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:46][11286][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:46][11286][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:46][11286][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:46][11286][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:46][11286][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:46][11286][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:46][11286][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:46][11286][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:46][11286][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:46][11286][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:46][11286][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:46][11286][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:46][11286][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:46][11286][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:46][11286][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:46][11286][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:46][11286][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:46][11286][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:46][11286][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:46][11286][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:46][11286][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:46][11286][INFO][MAIN] Duplicate execution. +[28 11:51:49][11292][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:49][11292][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:49][11292][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:49][11292][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:49][11292][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:49][11292][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:49][11292][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:49][11292][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:49][11292][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:49][11292][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:49][11292][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:49][11292][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:49][11292][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:49][11292][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:49][11292][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:49][11292][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:49][11292][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:49][11292][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:49][11292][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:49][11292][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:49][11292][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:49][11292][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:49][11292][INFO][MAIN] Duplicate execution. +[28 11:51:52][11298][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:52][11298][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:52][11298][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:52][11298][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:52][11298][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:52][11298][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:52][11298][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:52][11298][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:52][11298][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:52][11298][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:52][11298][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:52][11298][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:52][11298][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:52][11298][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:52][11298][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:52][11298][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:52][11298][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:52][11298][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:52][11298][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:52][11298][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:52][11298][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:52][11298][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:52][11298][INFO][MAIN] Duplicate execution. +[28 11:51:55][11304][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:55][11304][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:55][11304][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:55][11304][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:55][11304][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:55][11304][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:55][11304][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:55][11304][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:55][11304][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:55][11304][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:55][11304][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:55][11304][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:55][11304][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:55][11304][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:55][11304][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:55][11304][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:55][11304][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:55][11304][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:55][11304][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:55][11304][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:55][11304][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:55][11304][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:55][11304][INFO][MAIN] Duplicate execution. +[28 11:51:58][11310][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:51:58][11310][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:51:58][11310][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:51:58][11310][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:51:58][11310][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:51:58][11310][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:51:58][11310][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:51:58][11310][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:51:58][11310][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:51:58][11310][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:51:58][11310][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:51:58][11310][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:51:58][11310][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:51:58][11310][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:51:58][11310][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:51:58][11310][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:51:58][11310][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:51:58][11310][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:51:58][11310][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:51:58][11310][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:51:58][11310][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:51:58][11310][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:51:58][11310][INFO][MAIN] Duplicate execution. +[28 11:52:01][11316][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:01][11316][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:01][11316][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:01][11316][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:01][11316][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:01][11316][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:01][11316][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:01][11316][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:01][11316][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:01][11316][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:01][11316][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:01][11316][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:01][11316][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:01][11316][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:01][11316][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:01][11316][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:01][11316][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:01][11316][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:01][11316][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:01][11316][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:01][11316][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:01][11316][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:01][11316][INFO][MAIN] Duplicate execution. +[28 11:52:04][11322][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:04][11322][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:04][11322][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:04][11322][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:04][11322][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:04][11322][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:04][11322][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:04][11322][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:04][11322][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:04][11322][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:04][11322][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:04][11322][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:04][11322][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:04][11322][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:04][11322][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:04][11322][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:04][11322][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:04][11322][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:04][11322][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:04][11322][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:04][11322][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:04][11322][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:04][11322][INFO][MAIN] Duplicate execution. +[28 11:52:07][11328][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:07][11328][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:07][11328][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:07][11328][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:07][11328][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:07][11328][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:07][11328][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:07][11328][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:07][11328][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:07][11328][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:07][11328][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:07][11328][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:07][11328][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:07][11328][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:07][11328][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:07][11328][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:07][11328][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:07][11328][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:07][11328][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:07][11328][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:07][11328][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:07][11328][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:07][11328][INFO][MAIN] Duplicate execution. +[28 11:52:10][11334][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:10][11334][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:10][11334][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:10][11334][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:10][11334][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:10][11334][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:10][11334][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:10][11334][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:10][11334][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:10][11334][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:10][11334][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:10][11334][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:10][11334][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:10][11334][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:10][11334][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:10][11334][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:10][11334][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:10][11334][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:10][11334][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:10][11334][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:10][11334][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:10][11334][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:10][11334][INFO][MAIN] Duplicate execution. +[28 11:52:13][11340][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:13][11340][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:13][11340][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:13][11340][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:13][11340][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:13][11340][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:13][11340][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:13][11340][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:13][11340][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:13][11340][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:13][11340][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:13][11340][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:13][11340][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:13][11340][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:13][11340][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:13][11340][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:13][11340][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:13][11340][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:13][11340][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:13][11340][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:13][11340][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:13][11340][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:13][11340][INFO][MAIN] Duplicate execution. +[28 11:52:16][11346][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:16][11346][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:16][11346][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:16][11346][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:16][11346][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:16][11346][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:16][11346][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:16][11346][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:16][11346][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:16][11346][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:16][11346][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:16][11346][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:16][11346][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:16][11346][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:16][11346][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:16][11346][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:16][11346][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:16][11346][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:16][11346][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:16][11346][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:16][11346][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:16][11346][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:16][11346][INFO][MAIN] Duplicate execution. +[28 11:52:19][11352][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:19][11352][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:19][11352][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:19][11352][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:19][11352][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:19][11352][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:19][11352][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:19][11352][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:19][11352][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:19][11352][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:19][11352][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:19][11352][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:19][11352][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:19][11352][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:19][11352][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:19][11352][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:19][11352][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:19][11352][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:19][11352][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:19][11352][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:19][11352][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:19][11352][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:19][11352][INFO][MAIN] Duplicate execution. +[28 11:52:22][11358][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:22][11358][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:22][11358][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:22][11358][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:22][11358][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:22][11358][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:22][11358][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:22][11358][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:22][11358][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:22][11358][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:22][11358][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:22][11358][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:22][11358][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:22][11358][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:22][11358][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:22][11358][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:22][11358][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:22][11358][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:22][11358][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:22][11358][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:22][11358][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:22][11358][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:22][11358][INFO][MAIN] Duplicate execution. +[28 11:52:25][11364][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:25][11364][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:25][11364][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:25][11364][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:25][11364][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:25][11364][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:25][11364][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:25][11364][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:25][11364][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:25][11364][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:25][11364][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:25][11364][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:25][11364][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:25][11364][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:25][11364][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:25][11364][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:25][11364][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:25][11364][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:25][11364][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:25][11364][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:25][11364][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:25][11364][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:25][11364][INFO][MAIN] Duplicate execution. +[28 11:52:28][11370][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:28][11370][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:28][11370][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:28][11370][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:28][11370][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:28][11370][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:28][11370][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:28][11370][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:28][11370][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:28][11370][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:28][11370][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:28][11370][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:28][11370][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:28][11370][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:28][11370][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:28][11370][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:28][11370][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:28][11370][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:28][11370][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:28][11370][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:28][11370][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:28][11370][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:28][11370][INFO][MAIN] Duplicate execution. +[28 11:52:31][11376][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:31][11376][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:31][11376][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:31][11376][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:31][11376][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:31][11376][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:31][11376][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:31][11376][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:31][11376][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:31][11376][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:31][11376][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:31][11376][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:31][11376][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:31][11376][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:31][11376][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:31][11376][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:31][11376][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:31][11376][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:31][11376][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:31][11376][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:31][11376][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:31][11376][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:31][11376][INFO][MAIN] Duplicate execution. +[28 11:52:34][11382][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:34][11382][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:34][11382][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:34][11382][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:34][11382][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:34][11382][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:34][11382][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:34][11382][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:34][11382][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:34][11382][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:34][11382][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:34][11382][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:34][11382][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:34][11382][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:34][11382][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:34][11382][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:34][11382][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:34][11382][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:34][11382][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:34][11382][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:34][11382][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:34][11382][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:34][11382][INFO][MAIN] Duplicate execution. +[28 11:52:37][11388][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:37][11388][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:37][11388][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:37][11388][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:37][11388][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:37][11388][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:37][11388][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:37][11388][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:37][11388][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:37][11388][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:37][11388][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:37][11388][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:37][11388][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:37][11388][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:37][11388][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:37][11388][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:37][11388][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:37][11388][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:37][11388][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:37][11388][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:37][11388][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:37][11388][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:37][11388][INFO][MAIN] Duplicate execution. +[28 11:52:40][11394][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:40][11394][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:40][11394][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:40][11394][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:40][11394][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:40][11394][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:40][11394][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:40][11394][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:40][11394][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:40][11394][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:40][11394][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:40][11394][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:40][11394][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:40][11394][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:40][11394][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:40][11394][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:40][11394][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:40][11394][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:40][11394][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:40][11394][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:40][11394][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:40][11394][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:40][11394][INFO][MAIN] Duplicate execution. +[28 11:52:43][11400][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:43][11400][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:43][11400][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:43][11400][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:43][11400][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:43][11400][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:43][11400][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:43][11400][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:43][11400][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:43][11400][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:43][11400][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:43][11400][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:43][11400][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:43][11400][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:43][11400][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:43][11400][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:43][11400][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:43][11400][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:43][11400][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:43][11400][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:43][11400][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:43][11400][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:43][11400][INFO][MAIN] Duplicate execution. +[28 11:52:46][11406][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:46][11406][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:46][11406][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:46][11406][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:46][11406][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:46][11406][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:46][11406][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:46][11406][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:46][11406][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:46][11406][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:46][11406][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:46][11406][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:46][11406][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:46][11406][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:46][11406][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:46][11406][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:46][11406][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:46][11406][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:46][11406][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:46][11406][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:46][11406][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:46][11406][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:46][11406][INFO][MAIN] Duplicate execution. +[28 11:52:49][11412][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:49][11412][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:49][11412][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:49][11412][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:49][11412][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:49][11412][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:49][11412][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:49][11412][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:49][11412][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:49][11412][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:49][11412][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:49][11412][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:49][11412][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:49][11412][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:49][11412][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:49][11412][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:49][11412][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:49][11412][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:49][11412][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:49][11412][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:49][11412][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:49][11412][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:49][11412][INFO][MAIN] Duplicate execution. +[28 11:52:52][11418][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:52][11418][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:52][11418][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:52][11418][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:52][11418][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:52][11418][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:52][11418][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:52][11418][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:52][11418][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:52][11418][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:52][11418][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:52][11418][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:52][11418][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:52][11418][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:52][11418][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:52][11418][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:52][11418][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:52][11418][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:52][11418][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:52][11418][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:52][11418][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:52][11418][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:52][11418][INFO][MAIN] Duplicate execution. +[28 11:52:55][11424][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:55][11424][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:55][11424][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:55][11424][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:55][11424][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:55][11424][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:55][11424][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:55][11424][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:55][11424][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:55][11424][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:55][11424][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:55][11424][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:55][11424][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:55][11424][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:55][11424][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:55][11424][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:55][11424][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:55][11424][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:55][11424][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:55][11424][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:55][11424][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:55][11424][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:55][11424][INFO][MAIN] Duplicate execution. +[28 11:52:58][11430][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:52:58][11430][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:52:58][11430][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:52:58][11430][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:52:58][11430][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:52:58][11430][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:52:58][11430][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:52:58][11430][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:52:58][11430][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:52:58][11430][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:52:58][11430][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:52:58][11430][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:52:58][11430][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:52:58][11430][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:52:58][11430][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:52:58][11430][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:52:58][11430][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:52:58][11430][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:52:58][11430][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:52:58][11430][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:52:58][11430][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:52:58][11430][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:52:58][11430][INFO][MAIN] Duplicate execution. +[28 11:53:01][11436][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:01][11436][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:01][11436][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:01][11436][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:01][11436][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:01][11436][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:01][11436][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:01][11436][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:01][11436][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:01][11436][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:01][11436][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:01][11436][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:01][11436][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:01][11436][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:01][11436][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:01][11436][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:01][11436][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:01][11436][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:01][11436][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:01][11436][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:01][11436][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:01][11436][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:01][11436][INFO][MAIN] Duplicate execution. +[28 11:53:04][11442][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:04][11442][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:04][11442][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:04][11442][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:04][11442][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:04][11442][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:04][11442][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:04][11442][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:04][11442][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:04][11442][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:04][11442][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:04][11442][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:04][11442][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:04][11442][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:04][11442][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:04][11442][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:04][11442][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:04][11442][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:04][11442][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:04][11442][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:04][11442][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:04][11442][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:04][11442][INFO][MAIN] Duplicate execution. +[28 11:53:07][11448][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:07][11448][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:07][11448][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:07][11448][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:07][11448][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:07][11448][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:07][11448][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:07][11448][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:07][11448][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:07][11448][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:07][11448][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:07][11448][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:07][11448][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:07][11448][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:07][11448][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:07][11448][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:07][11448][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:07][11448][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:07][11448][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:07][11448][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:07][11448][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:07][11448][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:07][11448][INFO][MAIN] Duplicate execution. +[28 11:53:10][11454][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:10][11454][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:10][11454][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:10][11454][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:10][11454][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:10][11454][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:10][11454][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:10][11454][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:10][11454][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:10][11454][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:10][11454][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:10][11454][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:10][11454][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:10][11454][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:10][11454][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:10][11454][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:10][11454][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:10][11454][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:10][11454][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:10][11454][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:10][11454][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:10][11454][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:10][11454][INFO][MAIN] Duplicate execution. +[28 11:53:13][11460][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:13][11460][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:13][11460][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:13][11460][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:13][11460][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:13][11460][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:13][11460][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:13][11460][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:13][11460][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:13][11460][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:13][11460][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:13][11460][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:13][11460][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:13][11460][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:13][11460][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:13][11460][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:13][11460][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:13][11460][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:13][11460][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:13][11460][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:13][11460][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:13][11460][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:13][11460][INFO][MAIN] Duplicate execution. +[28 11:53:16][11466][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:16][11466][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:16][11466][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:16][11466][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:16][11466][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:16][11466][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:16][11466][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:16][11466][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:16][11466][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:16][11466][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:16][11466][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:16][11466][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:16][11466][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:16][11466][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:16][11466][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:16][11466][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:16][11466][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:16][11466][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:16][11466][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:16][11466][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:16][11466][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:16][11466][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:16][11466][INFO][MAIN] Duplicate execution. +[28 11:53:19][11472][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:19][11472][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:19][11472][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:19][11472][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:19][11472][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:19][11472][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:19][11472][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:19][11472][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:19][11472][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:19][11472][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:19][11472][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:19][11472][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:19][11472][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:19][11472][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:19][11472][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:19][11472][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:19][11472][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:19][11472][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:19][11472][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:19][11472][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:19][11472][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:19][11472][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:19][11472][INFO][MAIN] Duplicate execution. +[28 11:53:22][11478][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:22][11478][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:22][11478][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:22][11478][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:22][11478][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:22][11478][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:22][11478][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:22][11478][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:22][11478][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:22][11478][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:22][11478][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:22][11478][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:22][11478][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:22][11478][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:22][11478][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:22][11478][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:22][11478][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:22][11478][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:22][11478][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:22][11478][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:22][11478][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:22][11478][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:22][11478][INFO][MAIN] Duplicate execution. +[28 11:53:25][11484][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:25][11484][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:25][11484][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:25][11484][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:25][11484][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:25][11484][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:25][11484][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:25][11484][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:25][11484][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:25][11484][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:25][11484][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:25][11484][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:25][11484][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:25][11484][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:25][11484][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:25][11484][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:25][11484][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:25][11484][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:25][11484][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:25][11484][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:25][11484][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:25][11484][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:25][11484][INFO][MAIN] Duplicate execution. +[28 11:53:28][11490][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:28][11490][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:28][11490][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:28][11490][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:28][11490][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:28][11490][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:28][11490][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:28][11490][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:28][11490][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:28][11490][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:28][11490][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:28][11490][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:28][11490][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:28][11490][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:28][11490][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:28][11490][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:28][11490][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:28][11490][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:28][11490][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:28][11490][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:28][11490][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:28][11490][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:28][11490][INFO][MAIN] Duplicate execution. +[28 11:53:31][11496][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:31][11496][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:31][11496][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:31][11496][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:31][11496][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:31][11496][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:31][11496][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:31][11496][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:31][11496][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:31][11496][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:31][11496][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:31][11496][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:31][11496][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:31][11496][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:31][11496][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:31][11496][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:31][11496][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:31][11496][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:31][11496][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:31][11496][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:31][11496][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:31][11496][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:31][11496][INFO][MAIN] Duplicate execution. +[28 11:53:34][11502][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:34][11502][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:34][11502][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:34][11502][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:34][11502][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:34][11502][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:34][11502][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:34][11502][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:34][11502][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:34][11502][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:34][11502][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:34][11502][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:34][11502][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:34][11502][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:34][11502][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:34][11502][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:34][11502][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:34][11502][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:34][11502][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:34][11502][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:34][11502][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:34][11502][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:34][11502][INFO][MAIN] Duplicate execution. +[28 11:53:37][11508][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:37][11508][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:37][11508][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:37][11508][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:37][11508][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:37][11508][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:37][11508][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:37][11508][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:37][11508][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:37][11508][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:37][11508][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:37][11508][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:37][11508][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:37][11508][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:37][11508][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:37][11508][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:37][11508][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:37][11508][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:37][11508][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:37][11508][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:37][11508][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:37][11508][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:37][11508][INFO][MAIN] Duplicate execution. +[28 11:53:40][11514][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:40][11514][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:40][11514][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:40][11514][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:40][11514][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:40][11514][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:40][11514][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:40][11514][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:40][11514][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:40][11514][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:40][11514][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:40][11514][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:40][11514][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:40][11514][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:40][11514][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:40][11514][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:40][11514][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:40][11514][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:40][11514][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:40][11514][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:40][11514][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:40][11514][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:40][11514][INFO][MAIN] Duplicate execution. +[28 11:53:43][11520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:43][11520][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:43][11520][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:43][11520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:43][11520][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:43][11520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:43][11520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:43][11520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:43][11520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:43][11520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:43][11520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:43][11520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:43][11520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:43][11520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:43][11520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:43][11520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:43][11520][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:43][11520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:43][11520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:43][11520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:43][11520][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:43][11520][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:43][11520][INFO][MAIN] Duplicate execution. +[28 11:53:46][11526][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:46][11526][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:46][11526][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:46][11526][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:46][11526][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:46][11526][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:46][11526][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:46][11526][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:46][11526][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:46][11526][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:46][11526][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:46][11526][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:46][11526][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:46][11526][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:46][11526][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:46][11526][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:46][11526][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:46][11526][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:46][11526][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:46][11526][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:46][11526][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:46][11526][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:46][11526][INFO][MAIN] Duplicate execution. +[28 11:53:49][11532][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:49][11532][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:49][11532][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:49][11532][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:49][11532][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:49][11532][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:49][11532][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:49][11532][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:49][11532][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:49][11532][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:49][11532][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:49][11532][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:49][11532][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:49][11532][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:49][11532][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:49][11532][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:49][11532][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:49][11532][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:49][11532][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:49][11532][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:49][11532][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:49][11532][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:49][11532][INFO][MAIN] Duplicate execution. +[28 11:53:52][11538][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:52][11538][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:52][11538][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:52][11538][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:52][11538][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:52][11538][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:52][11538][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:52][11538][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:52][11538][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:52][11538][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:52][11538][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:52][11538][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:52][11538][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:52][11538][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:52][11538][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:52][11538][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:52][11538][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:52][11538][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:52][11538][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:52][11538][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:52][11538][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:52][11538][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:52][11538][INFO][MAIN] Duplicate execution. +[28 11:53:55][11544][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:55][11544][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:55][11544][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:55][11544][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:55][11544][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:55][11544][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:55][11544][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:55][11544][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:55][11544][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:55][11544][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:55][11544][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:55][11544][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:55][11544][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:55][11544][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:55][11544][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:55][11544][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:55][11544][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:55][11544][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:55][11544][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:55][11544][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:55][11544][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:55][11544][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:55][11544][INFO][MAIN] Duplicate execution. +[28 11:53:58][11550][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:53:58][11550][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:53:58][11550][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:53:58][11550][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:53:58][11550][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:53:58][11550][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:53:58][11550][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:53:58][11550][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:53:58][11550][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:53:58][11550][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:53:58][11550][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:53:58][11550][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:53:58][11550][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:53:58][11550][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:53:58][11550][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:53:58][11550][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:53:58][11550][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:53:58][11550][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:53:58][11550][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:53:58][11550][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:53:58][11550][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:53:58][11550][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:53:58][11550][INFO][MAIN] Duplicate execution. +[28 11:54:01][11556][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:01][11556][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:01][11556][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:01][11556][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:01][11556][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:01][11556][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:01][11556][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:01][11556][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:01][11556][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:01][11556][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:01][11556][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:01][11556][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:01][11556][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:01][11556][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:01][11556][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:01][11556][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:01][11556][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:01][11556][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:01][11556][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:01][11556][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:01][11556][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:01][11556][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:01][11556][INFO][MAIN] Duplicate execution. +[28 11:54:04][11562][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:04][11562][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:04][11562][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:04][11562][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:04][11562][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:04][11562][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:04][11562][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:04][11562][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:04][11562][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:04][11562][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:04][11562][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:04][11562][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:04][11562][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:04][11562][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:04][11562][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:04][11562][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:04][11562][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:04][11562][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:04][11562][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:04][11562][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:04][11562][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:04][11562][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:04][11562][INFO][MAIN] Duplicate execution. +[28 11:54:07][11568][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:07][11568][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:07][11568][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:07][11568][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:07][11568][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:07][11568][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:07][11568][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:07][11568][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:07][11568][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:07][11568][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:07][11568][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:07][11568][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:07][11568][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:07][11568][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:07][11568][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:07][11568][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:07][11568][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:07][11568][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:07][11568][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:07][11568][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:07][11568][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:07][11568][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:07][11568][INFO][MAIN] Duplicate execution. +[28 11:54:10][11574][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:10][11574][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:10][11574][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:10][11574][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:10][11574][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:10][11574][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:10][11574][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:10][11574][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:10][11574][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:10][11574][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:10][11574][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:10][11574][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:10][11574][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:10][11574][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:10][11574][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:10][11574][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:10][11574][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:10][11574][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:10][11574][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:10][11574][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:10][11574][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:10][11574][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:10][11574][INFO][MAIN] Duplicate execution. +[28 11:54:13][11580][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:13][11580][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:13][11580][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:13][11580][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:13][11580][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:13][11580][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:13][11580][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:13][11580][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:13][11580][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:13][11580][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:13][11580][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:13][11580][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:13][11580][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:13][11580][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:13][11580][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:13][11580][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:13][11580][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:13][11580][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:13][11580][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:13][11580][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:13][11580][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:13][11580][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:13][11580][INFO][MAIN] Duplicate execution. +[28 11:54:16][11586][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:16][11586][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:16][11586][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:16][11586][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:16][11586][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:16][11586][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:16][11586][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:16][11586][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:16][11586][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:16][11586][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:16][11586][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:16][11586][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:16][11586][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:16][11586][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:16][11586][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:16][11586][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:16][11586][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:16][11586][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:16][11586][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:16][11586][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:16][11586][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:16][11586][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:16][11586][INFO][MAIN] Duplicate execution. +[28 11:54:19][11592][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:19][11592][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:19][11592][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:19][11592][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:19][11592][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:19][11592][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:19][11592][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:19][11592][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:19][11592][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:19][11592][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:19][11592][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:19][11592][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:19][11592][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:19][11592][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:19][11592][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:19][11592][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:19][11592][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:19][11592][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:19][11592][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:19][11592][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:19][11592][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:19][11592][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:19][11592][INFO][MAIN] Duplicate execution. +[28 11:54:22][11598][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:22][11598][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:22][11598][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:22][11598][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:22][11598][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:22][11598][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:22][11598][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:22][11598][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:22][11598][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:22][11598][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:22][11598][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:22][11598][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:22][11598][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:22][11598][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:22][11598][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:22][11598][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:22][11598][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:22][11598][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:22][11598][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:22][11598][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:22][11598][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:22][11598][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:22][11598][INFO][MAIN] Duplicate execution. +[28 11:54:25][11604][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:25][11604][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:25][11604][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:25][11604][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:25][11604][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:25][11604][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:25][11604][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:25][11604][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:25][11604][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:25][11604][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:25][11604][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:25][11604][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:25][11604][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:25][11604][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:25][11604][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:25][11604][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:25][11604][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:25][11604][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:25][11604][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:25][11604][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:25][11604][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:25][11604][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:25][11604][INFO][MAIN] Duplicate execution. +[28 11:54:28][11610][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:28][11610][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:28][11610][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:28][11610][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:28][11610][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:28][11610][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:28][11610][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:28][11610][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:28][11610][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:28][11610][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:28][11610][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:28][11610][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:28][11610][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:28][11610][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:28][11610][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:28][11610][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:28][11610][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:28][11610][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:28][11610][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:28][11610][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:28][11610][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:28][11610][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:28][11610][INFO][MAIN] Duplicate execution. +[28 11:54:31][11616][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:31][11616][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:31][11616][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:31][11616][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:31][11616][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:31][11616][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:31][11616][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:31][11616][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:31][11616][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:31][11616][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:31][11616][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:31][11616][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:31][11616][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:31][11616][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:31][11616][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:31][11616][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:31][11616][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:31][11616][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:31][11616][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:31][11616][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:31][11616][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:31][11616][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:31][11616][INFO][MAIN] Duplicate execution. +[28 11:54:34][11622][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:34][11622][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:34][11622][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:34][11622][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:34][11622][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:34][11622][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:34][11622][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:34][11622][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:34][11622][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:34][11622][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:34][11622][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:34][11622][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:34][11622][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:34][11622][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:34][11622][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:34][11622][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:34][11622][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:34][11622][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:34][11622][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:34][11622][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:34][11622][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:34][11622][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:34][11622][INFO][MAIN] Duplicate execution. +[28 11:54:37][11628][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:37][11628][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:37][11628][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:37][11628][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:37][11628][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:37][11628][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:37][11628][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:37][11628][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:37][11628][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:37][11628][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:37][11628][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:37][11628][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:37][11628][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:37][11628][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:37][11628][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:37][11628][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:37][11628][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:37][11628][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:37][11628][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:37][11628][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:37][11628][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:37][11628][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:37][11628][INFO][MAIN] Duplicate execution. +[28 11:54:40][11634][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:40][11634][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:40][11634][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:40][11634][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:40][11634][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:40][11634][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:40][11634][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:40][11634][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:40][11634][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:40][11634][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:40][11634][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:40][11634][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:40][11634][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:40][11634][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:40][11634][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:40][11634][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:40][11634][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:40][11634][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:40][11634][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:40][11634][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:40][11634][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:40][11634][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:40][11634][INFO][MAIN] Duplicate execution. +[28 11:54:43][11640][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:43][11640][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:43][11640][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:43][11640][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:43][11640][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:43][11640][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:43][11640][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:43][11640][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:43][11640][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:43][11640][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:43][11640][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:43][11640][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:43][11640][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:43][11640][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:43][11640][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:43][11640][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:43][11640][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:43][11640][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:43][11640][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:43][11640][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:43][11640][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:43][11640][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:43][11640][INFO][MAIN] Duplicate execution. +[28 11:54:46][11646][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:46][11646][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:46][11646][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:46][11646][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:46][11646][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:46][11646][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:46][11646][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:46][11646][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:46][11646][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:46][11646][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:46][11646][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:46][11646][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:46][11646][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:46][11646][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:46][11646][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:46][11646][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:46][11646][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:46][11646][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:46][11646][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:46][11646][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:46][11646][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:46][11646][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:46][11646][INFO][MAIN] Duplicate execution. +[28 11:54:49][11652][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:49][11652][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:49][11652][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:49][11652][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:49][11652][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:49][11652][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:49][11652][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:49][11652][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:49][11652][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:49][11652][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:49][11652][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:49][11652][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:49][11652][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:49][11652][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:49][11652][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:49][11652][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:49][11652][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:49][11652][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:49][11652][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:49][11652][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:49][11652][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:49][11652][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:49][11652][INFO][MAIN] Duplicate execution. +[28 11:54:52][11658][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:52][11658][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:52][11658][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:52][11658][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:52][11658][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:52][11658][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:52][11658][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:52][11658][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:52][11658][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:52][11658][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:52][11658][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:52][11658][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:52][11658][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:52][11658][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:52][11658][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:52][11658][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:52][11658][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:52][11658][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:52][11658][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:52][11658][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:52][11658][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:52][11658][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:52][11658][INFO][MAIN] Duplicate execution. +[28 11:54:55][11664][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:55][11664][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:55][11664][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:55][11664][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:55][11664][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:55][11664][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:55][11664][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:55][11664][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:55][11664][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:55][11664][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:55][11664][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:55][11664][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:55][11664][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:55][11664][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:55][11664][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:55][11664][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:55][11664][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:55][11664][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:55][11664][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:55][11664][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:55][11664][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:55][11664][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:55][11664][INFO][MAIN] Duplicate execution. +[28 11:54:58][11670][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:54:58][11670][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:54:58][11670][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:54:58][11670][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:54:58][11670][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:54:58][11670][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:54:58][11670][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:54:58][11670][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:54:58][11670][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:54:58][11670][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:54:58][11670][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:54:58][11670][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:54:58][11670][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:54:58][11670][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:54:58][11670][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:54:58][11670][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:54:58][11670][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:54:58][11670][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:54:58][11670][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:54:58][11670][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:54:58][11670][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:54:58][11670][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:54:58][11670][INFO][MAIN] Duplicate execution. +[28 11:55:01][11676][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:01][11676][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:01][11676][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:01][11676][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:01][11676][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:01][11676][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:01][11676][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:01][11676][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:01][11676][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:01][11676][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:01][11676][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:01][11676][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:01][11676][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:01][11676][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:01][11676][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:01][11676][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:01][11676][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:01][11676][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:01][11676][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:01][11676][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:01][11676][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:01][11676][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:01][11676][INFO][MAIN] Duplicate execution. +[28 11:55:04][11682][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:04][11682][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:04][11682][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:04][11682][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:04][11682][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:04][11682][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:04][11682][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:04][11682][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:04][11682][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:04][11682][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:04][11682][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:04][11682][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:04][11682][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:04][11682][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:04][11682][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:04][11682][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:04][11682][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:04][11682][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:04][11682][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:04][11682][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:04][11682][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:04][11682][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:04][11682][INFO][MAIN] Duplicate execution. +[28 11:55:07][11688][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:07][11688][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:07][11688][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:07][11688][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:07][11688][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:07][11688][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:07][11688][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:07][11688][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:07][11688][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:07][11688][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:07][11688][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:07][11688][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:07][11688][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:07][11688][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:07][11688][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:07][11688][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:07][11688][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:07][11688][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:07][11688][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:07][11688][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:07][11688][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:07][11688][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:07][11688][INFO][MAIN] Duplicate execution. +[28 11:55:10][11694][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:10][11694][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:10][11694][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:10][11694][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:10][11694][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:10][11694][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:10][11694][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:10][11694][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:10][11694][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:10][11694][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:10][11694][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:10][11694][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:10][11694][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:10][11694][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:10][11694][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:10][11694][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:10][11694][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:10][11694][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:10][11694][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:10][11694][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:10][11694][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:10][11694][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:10][11694][INFO][MAIN] Duplicate execution. +[28 11:55:13][11700][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:13][11700][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:13][11700][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:13][11700][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:13][11700][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:13][11700][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:13][11700][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:13][11700][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:13][11700][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:13][11700][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:13][11700][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:13][11700][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:13][11700][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:13][11700][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:13][11700][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:13][11700][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:13][11700][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:13][11700][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:13][11700][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:13][11700][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:13][11700][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:13][11700][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:13][11700][INFO][MAIN] Duplicate execution. +[28 11:55:16][11706][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:16][11706][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:16][11706][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:16][11706][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:16][11706][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:16][11706][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:16][11706][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:16][11706][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:16][11706][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:16][11706][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:16][11706][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:16][11706][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:16][11706][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:16][11706][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:16][11706][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:16][11706][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:16][11706][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:16][11706][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:16][11706][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:16][11706][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:16][11706][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:16][11706][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:16][11706][INFO][MAIN] Duplicate execution. +[28 11:55:19][11712][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:19][11712][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:19][11712][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:19][11712][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:19][11712][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:19][11712][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:19][11712][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:19][11712][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:19][11712][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:19][11712][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:19][11712][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:19][11712][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:19][11712][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:19][11712][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:19][11712][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:19][11712][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:19][11712][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:19][11712][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:19][11712][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:19][11712][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:19][11712][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:19][11712][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:19][11712][INFO][MAIN] Duplicate execution. +[28 11:55:22][11718][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:22][11718][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:22][11718][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:22][11718][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:22][11718][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:22][11718][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:22][11718][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:22][11718][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:22][11718][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:22][11718][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:22][11718][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:22][11718][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:22][11718][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:22][11718][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:22][11718][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:22][11718][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:22][11718][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:22][11718][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:22][11718][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:22][11718][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:22][11718][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:22][11718][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:22][11718][INFO][MAIN] Duplicate execution. +[28 11:55:25][11724][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:25][11724][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:25][11724][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:25][11724][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:25][11724][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:25][11724][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:25][11724][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:25][11724][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:25][11724][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:25][11724][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:25][11724][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:25][11724][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:25][11724][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:25][11724][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:25][11724][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:25][11724][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:25][11724][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:25][11724][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:25][11724][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:25][11724][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:25][11724][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:25][11724][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:25][11724][INFO][MAIN] Duplicate execution. +[28 11:55:28][11730][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:28][11730][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:28][11730][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:28][11730][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:28][11730][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:28][11730][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:28][11730][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:28][11730][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:28][11730][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:28][11730][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:28][11730][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:28][11730][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:28][11730][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:28][11730][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:28][11730][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:28][11730][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:28][11730][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:28][11730][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:28][11730][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:28][11730][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:28][11730][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:28][11730][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:28][11730][INFO][MAIN] Duplicate execution. +[28 11:55:31][11736][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:31][11736][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:31][11736][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:31][11736][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:31][11736][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:31][11736][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:31][11736][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:31][11736][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:31][11736][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:31][11736][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:31][11736][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:31][11736][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:31][11736][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:31][11736][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:31][11736][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:31][11736][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:31][11736][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:31][11736][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:31][11736][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:31][11736][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:31][11736][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:31][11736][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:31][11736][INFO][MAIN] Duplicate execution. +[28 11:55:34][11742][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:34][11742][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:34][11742][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:34][11742][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:34][11742][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:34][11742][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:34][11742][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:34][11742][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:34][11742][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:34][11742][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:34][11742][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:34][11742][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:34][11742][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:34][11742][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:34][11742][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:34][11742][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:34][11742][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:34][11742][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:34][11742][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:34][11742][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:34][11742][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:34][11742][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:34][11742][INFO][MAIN] Duplicate execution. +[28 11:55:37][11748][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:37][11748][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:37][11748][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:37][11748][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:37][11748][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:37][11748][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:37][11748][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:37][11748][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:37][11748][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:37][11748][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:37][11748][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:37][11748][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:37][11748][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:37][11748][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:37][11748][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:37][11748][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:37][11748][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:37][11748][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:37][11748][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:37][11748][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:37][11748][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:37][11748][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:37][11748][INFO][MAIN] Duplicate execution. +[28 11:55:40][11754][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:40][11754][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:40][11754][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:40][11754][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:40][11754][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:40][11754][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:40][11754][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:40][11754][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:40][11754][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:40][11754][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:40][11754][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:40][11754][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:40][11754][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:40][11754][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:40][11754][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:40][11754][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:40][11754][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:40][11754][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:40][11754][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:40][11754][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:40][11754][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:40][11754][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:40][11754][INFO][MAIN] Duplicate execution. +[28 11:55:43][11760][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:43][11760][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:43][11760][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:43][11760][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:43][11760][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:43][11760][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:43][11760][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:43][11760][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:43][11760][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:43][11760][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:43][11760][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:43][11760][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:43][11760][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:43][11760][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:43][11760][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:43][11760][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:43][11760][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:43][11760][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:43][11760][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:43][11760][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:43][11760][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:43][11760][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:43][11760][INFO][MAIN] Duplicate execution. +[28 11:55:46][11766][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:46][11766][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:46][11766][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:46][11766][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:46][11766][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:46][11766][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:46][11766][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:46][11766][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:46][11766][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:46][11766][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:46][11766][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:46][11766][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:46][11766][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:46][11766][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:46][11766][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:46][11766][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:46][11766][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:46][11766][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:46][11766][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:46][11766][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:46][11766][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:46][11766][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:46][11766][INFO][MAIN] Duplicate execution. +[28 11:55:49][11772][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:49][11772][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:49][11772][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:49][11772][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:49][11772][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:49][11772][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:49][11772][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:49][11772][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:49][11772][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:49][11772][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:49][11772][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:49][11772][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:49][11772][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:49][11772][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:49][11772][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:49][11772][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:49][11772][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:49][11772][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:49][11772][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:49][11772][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:49][11772][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:49][11772][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:49][11772][INFO][MAIN] Duplicate execution. +[28 11:55:52][11778][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:52][11778][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:52][11778][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:52][11778][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:52][11778][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:52][11778][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:52][11778][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:52][11778][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:52][11778][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:52][11778][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:52][11778][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:52][11778][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:52][11778][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:52][11778][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:52][11778][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:52][11778][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:52][11778][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:52][11778][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:52][11778][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:52][11778][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:52][11778][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:52][11778][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:52][11778][INFO][MAIN] Duplicate execution. +[28 11:55:55][11784][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:55][11784][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:55][11784][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:55][11784][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:55][11784][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:55][11784][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:55][11784][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:55][11784][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:55][11784][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:55][11784][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:55][11784][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:55][11784][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:55][11784][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:55][11784][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:55][11784][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:55][11784][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:55][11784][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:55][11784][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:55][11784][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:55][11784][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:55][11784][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:55][11784][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:55][11784][INFO][MAIN] Duplicate execution. +[28 11:55:58][11790][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:55:58][11790][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:55:58][11790][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:55:58][11790][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:55:58][11790][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:55:58][11790][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:55:58][11790][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:55:58][11790][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:55:58][11790][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:55:58][11790][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:55:58][11790][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:55:58][11790][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:55:58][11790][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:55:58][11790][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:55:58][11790][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:55:58][11790][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:55:58][11790][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:55:58][11790][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:55:58][11790][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:55:58][11790][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:55:58][11790][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:55:58][11790][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:55:58][11790][INFO][MAIN] Duplicate execution. +[28 11:56:01][11796][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:01][11796][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:01][11796][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:01][11796][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:01][11796][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:01][11796][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:01][11796][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:01][11796][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:01][11796][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:01][11796][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:01][11796][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:01][11796][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:01][11796][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:01][11796][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:01][11796][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:01][11796][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:01][11796][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:01][11796][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:01][11796][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:01][11796][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:01][11796][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:01][11796][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:01][11796][INFO][MAIN] Duplicate execution. +[28 11:56:04][11802][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:04][11802][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:04][11802][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:04][11802][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:04][11802][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:04][11802][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:04][11802][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:04][11802][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:04][11802][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:04][11802][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:04][11802][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:04][11802][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:04][11802][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:04][11802][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:04][11802][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:04][11802][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:04][11802][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:04][11802][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:04][11802][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:04][11802][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:04][11802][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:04][11802][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:04][11802][INFO][MAIN] Duplicate execution. +[28 11:56:07][11808][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:07][11808][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:07][11808][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:07][11808][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:07][11808][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:07][11808][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:07][11808][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:07][11808][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:07][11808][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:07][11808][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:07][11808][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:07][11808][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:07][11808][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:07][11808][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:07][11808][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:07][11808][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:07][11808][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:07][11808][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:07][11808][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:07][11808][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:07][11808][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:07][11808][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:07][11808][INFO][MAIN] Duplicate execution. +[28 11:56:10][11814][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:10][11814][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:10][11814][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:10][11814][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:10][11814][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:10][11814][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:10][11814][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:10][11814][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:10][11814][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:10][11814][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:10][11814][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:10][11814][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:10][11814][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:10][11814][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:10][11814][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:10][11814][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:10][11814][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:10][11814][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:10][11814][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:10][11814][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:10][11814][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:10][11814][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:10][11814][INFO][MAIN] Duplicate execution. +[28 11:56:13][11820][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:13][11820][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:13][11820][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:13][11820][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:13][11820][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:13][11820][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:13][11820][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:13][11820][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:13][11820][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:13][11820][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:13][11820][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:13][11820][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:13][11820][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:13][11820][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:13][11820][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:13][11820][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:13][11820][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:13][11820][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:13][11820][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:13][11820][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:13][11820][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:13][11820][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:13][11820][INFO][MAIN] Duplicate execution. +[28 11:56:16][11826][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:16][11826][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:16][11826][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:16][11826][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:16][11826][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:16][11826][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:16][11826][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:16][11826][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:16][11826][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:16][11826][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:16][11826][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:16][11826][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:16][11826][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:16][11826][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:16][11826][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:16][11826][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:16][11826][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:16][11826][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:16][11826][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:16][11826][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:16][11826][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:16][11826][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:16][11826][INFO][MAIN] Duplicate execution. +[28 11:56:19][11832][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:19][11832][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:19][11832][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:19][11832][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:19][11832][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:19][11832][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:19][11832][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:19][11832][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:19][11832][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:19][11832][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:19][11832][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:19][11832][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:19][11832][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:19][11832][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:19][11832][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:19][11832][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:19][11832][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:19][11832][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:19][11832][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:19][11832][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:19][11832][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:19][11832][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:19][11832][INFO][MAIN] Duplicate execution. +[28 11:56:22][11838][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:22][11838][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:22][11838][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:22][11838][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:22][11838][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:22][11838][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:22][11838][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:22][11838][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:22][11838][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:22][11838][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:22][11838][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:22][11838][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:22][11838][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:22][11838][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:22][11838][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:22][11838][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:22][11838][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:22][11838][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:22][11838][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:22][11838][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:22][11838][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:22][11838][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:22][11838][INFO][MAIN] Duplicate execution. +[28 11:56:25][11844][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:25][11844][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:25][11844][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:25][11844][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:25][11844][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:25][11844][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:25][11844][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:25][11844][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:25][11844][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:25][11844][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:25][11844][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:25][11844][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:25][11844][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:25][11844][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:25][11844][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:25][11844][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:25][11844][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:25][11844][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:25][11844][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:25][11844][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:25][11844][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:25][11844][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:25][11844][INFO][MAIN] Duplicate execution. +[28 11:56:28][11850][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:28][11850][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:28][11850][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:28][11850][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:28][11850][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:28][11850][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:28][11850][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:28][11850][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:28][11850][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:28][11850][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:28][11850][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:28][11850][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:28][11850][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:28][11850][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:28][11850][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:28][11850][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:28][11850][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:28][11850][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:28][11850][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:28][11850][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:28][11850][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:28][11850][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:28][11850][INFO][MAIN] Duplicate execution. +[28 11:56:31][11856][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:31][11856][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:31][11856][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:31][11856][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:31][11856][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:31][11856][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:31][11856][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:31][11856][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:31][11856][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:31][11856][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:31][11856][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:31][11856][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:31][11856][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:31][11856][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:31][11856][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:31][11856][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:31][11856][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:31][11856][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:31][11856][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:31][11856][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:31][11856][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:31][11856][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:31][11856][INFO][MAIN] Duplicate execution. +[28 11:56:34][11862][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:34][11862][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:34][11862][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:34][11862][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:34][11862][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:34][11862][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:34][11862][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:34][11862][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:34][11862][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:34][11862][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:34][11862][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:34][11862][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:34][11862][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:34][11862][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:34][11862][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:34][11862][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:34][11862][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:34][11862][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:34][11862][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:34][11862][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:34][11862][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:34][11862][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:34][11862][INFO][MAIN] Duplicate execution. +[28 11:56:37][11868][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:37][11868][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:37][11868][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:37][11868][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:37][11868][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:37][11868][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:37][11868][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:37][11868][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:37][11868][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:37][11868][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:37][11868][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:37][11868][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:37][11868][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:37][11868][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:37][11868][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:37][11868][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:37][11868][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:37][11868][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:37][11868][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:37][11868][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:37][11868][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:37][11868][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:37][11868][INFO][MAIN] Duplicate execution. +[28 11:56:40][11874][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:40][11874][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:40][11874][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:40][11874][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:40][11874][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:40][11874][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:40][11874][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:40][11874][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:40][11874][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:40][11874][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:40][11874][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:40][11874][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:40][11874][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:40][11874][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:40][11874][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:40][11874][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:40][11874][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:40][11874][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:40][11874][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:40][11874][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:40][11874][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:40][11874][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:40][11874][INFO][MAIN] Duplicate execution. +[28 11:56:43][11880][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:43][11880][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:43][11880][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:43][11880][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:43][11880][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:43][11880][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:43][11880][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:43][11880][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:43][11880][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:43][11880][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:43][11880][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:43][11880][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:43][11880][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:43][11880][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:43][11880][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:43][11880][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:43][11880][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:43][11880][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:43][11880][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:43][11880][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:43][11880][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:43][11880][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:43][11880][INFO][MAIN] Duplicate execution. +[28 11:56:46][11886][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:46][11886][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:46][11886][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:46][11886][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:46][11886][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:46][11886][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:46][11886][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:46][11886][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:46][11886][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:46][11886][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:46][11886][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:46][11886][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:46][11886][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:46][11886][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:46][11886][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:46][11886][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:46][11886][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:46][11886][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:46][11886][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:46][11886][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:46][11886][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:46][11886][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:46][11886][INFO][MAIN] Duplicate execution. +[28 11:56:49][11892][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:49][11892][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:49][11892][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:49][11892][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:49][11892][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:49][11892][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:49][11892][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:49][11892][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:49][11892][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:49][11892][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:49][11892][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:49][11892][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:49][11892][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:49][11892][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:49][11892][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:49][11892][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:49][11892][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:49][11892][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:49][11892][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:49][11892][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:49][11892][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:49][11892][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:49][11892][INFO][MAIN] Duplicate execution. +[28 11:56:52][11898][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:52][11898][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:52][11898][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:52][11898][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:52][11898][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:52][11898][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:52][11898][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:52][11898][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:52][11898][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:52][11898][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:52][11898][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:52][11898][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:52][11898][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:52][11898][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:52][11898][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:52][11898][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:52][11898][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:52][11898][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:52][11898][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:52][11898][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:52][11898][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:52][11898][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:52][11898][INFO][MAIN] Duplicate execution. +[28 11:56:55][11904][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:55][11904][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:55][11904][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:55][11904][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:55][11904][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:55][11904][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:55][11904][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:55][11904][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:55][11904][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:55][11904][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:55][11904][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:55][11904][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:55][11904][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:55][11904][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:55][11904][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:55][11904][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:55][11904][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:55][11904][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:55][11904][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:55][11904][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:55][11904][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:55][11904][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:55][11904][INFO][MAIN] Duplicate execution. +[28 11:56:58][11910][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:56:58][11910][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:56:58][11910][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:56:58][11910][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:56:58][11910][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:56:58][11910][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:56:58][11910][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:56:58][11910][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:56:58][11910][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:56:58][11910][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:56:58][11910][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:56:58][11910][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:56:58][11910][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:56:58][11910][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:56:58][11910][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:56:58][11910][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:56:58][11910][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:56:58][11910][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:56:58][11910][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:56:58][11910][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:56:58][11910][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:56:58][11910][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:56:58][11910][INFO][MAIN] Duplicate execution. +[28 11:57:01][11916][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:01][11916][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:01][11916][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:01][11916][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:01][11916][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:01][11916][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:01][11916][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:01][11916][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:01][11916][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:01][11916][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:01][11916][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:01][11916][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:01][11916][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:01][11916][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:01][11916][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:01][11916][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:01][11916][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:01][11916][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:01][11916][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:01][11916][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:01][11916][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:01][11916][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:01][11916][INFO][MAIN] Duplicate execution. +[28 11:57:04][11922][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:04][11922][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:04][11922][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:04][11922][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:04][11922][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:04][11922][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:04][11922][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:04][11922][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:04][11922][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:04][11922][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:04][11922][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:04][11922][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:04][11922][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:04][11922][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:04][11922][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:04][11922][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:04][11922][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:04][11922][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:04][11922][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:04][11922][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:04][11922][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:04][11922][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:04][11922][INFO][MAIN] Duplicate execution. +[28 11:57:07][11928][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:07][11928][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:07][11928][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:07][11928][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:07][11928][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:07][11928][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:07][11928][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:07][11928][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:07][11928][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:07][11928][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:07][11928][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:07][11928][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:07][11928][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:07][11928][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:07][11928][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:07][11928][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:07][11928][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:07][11928][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:07][11928][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:07][11928][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:07][11928][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:07][11928][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:07][11928][INFO][MAIN] Duplicate execution. +[28 11:57:10][11934][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:10][11934][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:10][11934][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:10][11934][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:10][11934][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:10][11934][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:10][11934][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:10][11934][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:10][11934][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:10][11934][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:10][11934][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:10][11934][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:10][11934][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:10][11934][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:10][11934][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:10][11934][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:10][11934][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:10][11934][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:10][11934][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:10][11934][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:10][11934][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:10][11934][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:10][11934][INFO][MAIN] Duplicate execution. +[28 11:57:13][11940][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:13][11940][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:13][11940][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:13][11940][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:13][11940][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:13][11940][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:13][11940][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:13][11940][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:13][11940][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:13][11940][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:13][11940][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:13][11940][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:13][11940][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:13][11940][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:13][11940][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:13][11940][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:13][11940][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:13][11940][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:13][11940][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:13][11940][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:13][11940][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:13][11940][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:13][11940][INFO][MAIN] Duplicate execution. +[28 11:57:16][11946][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:16][11946][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:16][11946][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:16][11946][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:16][11946][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:16][11946][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:16][11946][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:16][11946][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:16][11946][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:16][11946][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:16][11946][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:16][11946][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:16][11946][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:16][11946][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:16][11946][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:16][11946][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:16][11946][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:16][11946][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:16][11946][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:16][11946][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:16][11946][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:16][11946][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:16][11946][INFO][MAIN] Duplicate execution. +[28 11:57:19][11952][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:19][11952][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:19][11952][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:19][11952][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:19][11952][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:19][11952][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:19][11952][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:19][11952][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:19][11952][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:19][11952][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:19][11952][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:19][11952][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:19][11952][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:19][11952][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:19][11952][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:19][11952][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:19][11952][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:19][11952][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:19][11952][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:19][11952][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:19][11952][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:19][11952][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:19][11952][INFO][MAIN] Duplicate execution. +[28 11:57:22][11958][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:22][11958][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:22][11958][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:22][11958][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:22][11958][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:22][11958][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:22][11958][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:22][11958][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:22][11958][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:22][11958][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:22][11958][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:22][11958][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:22][11958][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:22][11958][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:22][11958][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:22][11958][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:22][11958][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:22][11958][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:22][11958][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:22][11958][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:22][11958][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:22][11958][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:22][11958][INFO][MAIN] Duplicate execution. +[28 11:57:25][11964][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:25][11964][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:25][11964][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:25][11964][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:25][11964][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:25][11964][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:25][11964][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:25][11964][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:25][11964][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:25][11964][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:25][11964][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:25][11964][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:25][11964][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:25][11964][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:25][11964][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:25][11964][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:25][11964][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:25][11964][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:25][11964][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:25][11964][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:25][11964][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:25][11964][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:25][11964][INFO][MAIN] Duplicate execution. +[28 11:57:28][11970][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:28][11970][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:28][11970][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:28][11970][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:28][11970][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:28][11970][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:28][11970][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:28][11970][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:28][11970][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:28][11970][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:28][11970][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:28][11970][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:28][11970][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:28][11970][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:28][11970][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:28][11970][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:28][11970][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:28][11970][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:28][11970][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:28][11970][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:28][11970][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:28][11970][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:28][11970][INFO][MAIN] Duplicate execution. +[28 11:57:31][11976][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:31][11976][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:31][11976][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:31][11976][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:31][11976][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:31][11976][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:31][11976][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:31][11976][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:31][11976][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:31][11976][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:31][11976][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:31][11976][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:31][11976][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:31][11976][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:31][11976][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:31][11976][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:31][11976][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:31][11976][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:31][11976][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:31][11976][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:31][11976][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:31][11976][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:31][11976][INFO][MAIN] Duplicate execution. +[28 11:57:34][11982][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:34][11982][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:34][11982][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:34][11982][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:34][11982][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:34][11982][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:34][11982][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:34][11982][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:34][11982][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:34][11982][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:34][11982][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:34][11982][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:34][11982][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:34][11982][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:34][11982][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:34][11982][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:34][11982][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:34][11982][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:34][11982][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:34][11982][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:34][11982][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:34][11982][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:34][11982][INFO][MAIN] Duplicate execution. +[28 11:57:37][11988][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:37][11988][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:37][11988][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:37][11988][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:37][11988][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:37][11988][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:37][11988][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:37][11988][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:37][11988][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:37][11988][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:37][11988][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:37][11988][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:37][11988][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:37][11988][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:37][11988][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:37][11988][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:37][11988][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:37][11988][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:37][11988][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:37][11988][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:37][11988][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:37][11988][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:37][11988][INFO][MAIN] Duplicate execution. +[28 11:57:40][11994][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:40][11994][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:40][11994][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:40][11994][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:40][11994][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:40][11994][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:40][11994][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:40][11994][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:40][11994][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:40][11994][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:40][11994][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:40][11994][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:40][11994][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:40][11994][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:40][11994][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:40][11994][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:40][11994][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:40][11994][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:40][11994][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:40][11994][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:40][11994][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:40][11994][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:40][11994][INFO][MAIN] Duplicate execution. +[28 11:57:43][12000][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:43][12000][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:43][12000][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:43][12000][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:43][12000][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:43][12000][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:43][12000][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:43][12000][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:43][12000][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:43][12000][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:43][12000][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:43][12000][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:43][12000][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:43][12000][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:43][12000][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:43][12000][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:43][12000][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:43][12000][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:43][12000][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:43][12000][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:43][12000][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:43][12000][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:43][12000][INFO][MAIN] Duplicate execution. +[28 11:57:46][12006][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:46][12006][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:46][12006][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:46][12006][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:46][12006][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:46][12006][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:46][12006][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:46][12006][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:46][12006][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:46][12006][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:46][12006][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:46][12006][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:46][12006][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:46][12006][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:46][12006][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:46][12006][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:46][12006][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:46][12006][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:46][12006][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:46][12006][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:46][12006][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:46][12006][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:46][12006][INFO][MAIN] Duplicate execution. +[28 11:57:49][12012][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:49][12012][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:49][12012][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:49][12012][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:49][12012][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:49][12012][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:49][12012][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:49][12012][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:49][12012][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:49][12012][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:49][12012][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:49][12012][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:49][12012][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:49][12012][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:49][12012][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:49][12012][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:49][12012][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:49][12012][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:49][12012][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:49][12012][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:49][12012][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:49][12012][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:49][12012][INFO][MAIN] Duplicate execution. +[28 11:57:52][12018][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:52][12018][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:52][12018][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:52][12018][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:52][12018][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:52][12018][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:52][12018][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:52][12018][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:52][12018][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:52][12018][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:52][12018][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:52][12018][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:52][12018][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:52][12018][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:52][12018][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:52][12018][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:52][12018][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:52][12018][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:52][12018][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:52][12018][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:52][12018][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:52][12018][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:52][12018][INFO][MAIN] Duplicate execution. +[28 11:57:55][12024][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:55][12024][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:55][12024][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:55][12024][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:55][12024][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:55][12024][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:55][12024][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:55][12024][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:55][12024][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:55][12024][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:55][12024][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:55][12024][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:55][12024][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:55][12024][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:55][12024][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:55][12024][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:55][12024][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:55][12024][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:55][12024][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:55][12024][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:55][12024][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:55][12024][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:55][12024][INFO][MAIN] Duplicate execution. +[28 11:57:58][12030][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:57:58][12030][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:57:58][12030][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:57:58][12030][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:57:58][12030][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:57:58][12030][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:57:58][12030][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:57:58][12030][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:57:58][12030][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:57:58][12030][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:57:58][12030][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:57:58][12030][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:57:58][12030][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:57:58][12030][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:57:58][12030][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:57:58][12030][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:57:58][12030][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:57:58][12030][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:57:58][12030][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:57:58][12030][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:57:58][12030][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:57:58][12030][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:57:58][12030][INFO][MAIN] Duplicate execution. +[28 11:58:01][12036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:01][12036][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:01][12036][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:01][12036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:01][12036][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:01][12036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:01][12036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:01][12036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:01][12036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:01][12036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:01][12036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:01][12036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:01][12036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:01][12036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:01][12036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:01][12036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:01][12036][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:01][12036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:01][12036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:01][12036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:01][12036][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:01][12036][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:01][12036][INFO][MAIN] Duplicate execution. +[28 11:58:04][12042][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:04][12042][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:04][12042][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:04][12042][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:04][12042][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:04][12042][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:04][12042][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:04][12042][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:04][12042][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:04][12042][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:04][12042][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:04][12042][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:04][12042][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:04][12042][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:04][12042][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:04][12042][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:04][12042][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:04][12042][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:04][12042][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:04][12042][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:04][12042][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:04][12042][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:04][12042][INFO][MAIN] Duplicate execution. +[28 11:58:07][12048][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:07][12048][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:07][12048][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:07][12048][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:07][12048][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:07][12048][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:07][12048][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:07][12048][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:07][12048][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:07][12048][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:07][12048][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:07][12048][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:07][12048][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:07][12048][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:07][12048][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:07][12048][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:07][12048][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:07][12048][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:07][12048][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:07][12048][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:07][12048][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:07][12048][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:07][12048][INFO][MAIN] Duplicate execution. +[28 11:58:10][12054][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:10][12054][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:10][12054][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:10][12054][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:10][12054][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:10][12054][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:10][12054][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:10][12054][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:10][12054][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:10][12054][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:10][12054][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:10][12054][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:10][12054][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:10][12054][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:10][12054][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:10][12054][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:10][12054][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:10][12054][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:10][12054][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:10][12054][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:10][12054][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:10][12054][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:10][12054][INFO][MAIN] Duplicate execution. +[28 11:58:13][12060][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:13][12060][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:13][12060][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:13][12060][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:13][12060][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:13][12060][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:13][12060][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:13][12060][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:13][12060][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:13][12060][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:13][12060][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:13][12060][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:13][12060][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:13][12060][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:13][12060][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:13][12060][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:13][12060][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:13][12060][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:13][12060][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:13][12060][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:13][12060][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:13][12060][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:13][12060][INFO][MAIN] Duplicate execution. +[28 11:58:16][12066][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:16][12066][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:16][12066][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:16][12066][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:16][12066][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:16][12066][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:16][12066][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:16][12066][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:16][12066][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:16][12066][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:16][12066][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:16][12066][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:16][12066][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:16][12066][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:16][12066][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:16][12066][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:16][12066][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:16][12066][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:16][12066][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:16][12066][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:16][12066][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:16][12066][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:16][12066][INFO][MAIN] Duplicate execution. +[28 11:58:19][12072][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:19][12072][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:19][12072][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:19][12072][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:19][12072][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:19][12072][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:19][12072][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:19][12072][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:19][12072][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:19][12072][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:19][12072][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:19][12072][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:19][12072][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:19][12072][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:19][12072][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:19][12072][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:19][12072][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:19][12072][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:19][12072][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:19][12072][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:19][12072][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:19][12072][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:19][12072][INFO][MAIN] Duplicate execution. +[28 11:58:22][12078][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:22][12078][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:22][12078][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:22][12078][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:22][12078][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:22][12078][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:22][12078][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:22][12078][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:22][12078][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:22][12078][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:22][12078][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:22][12078][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:22][12078][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:22][12078][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:22][12078][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:22][12078][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:22][12078][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:22][12078][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:22][12078][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:22][12078][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:22][12078][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:22][12078][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:22][12078][INFO][MAIN] Duplicate execution. +[28 11:58:25][12084][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:25][12084][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:25][12084][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:25][12084][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:25][12084][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:25][12084][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:25][12084][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:25][12084][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:25][12084][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:25][12084][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:25][12084][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:25][12084][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:25][12084][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:25][12084][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:25][12084][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:25][12084][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:25][12084][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:25][12084][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:25][12084][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:25][12084][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:25][12084][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:25][12084][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:25][12084][INFO][MAIN] Duplicate execution. +[28 11:58:28][12090][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:28][12090][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:28][12090][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:28][12090][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:28][12090][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:28][12090][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:28][12090][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:28][12090][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:28][12090][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:28][12090][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:28][12090][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:28][12090][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:28][12090][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:28][12090][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:28][12090][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:28][12090][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:28][12090][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:28][12090][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:28][12090][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:28][12090][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:28][12090][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:28][12090][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:28][12090][INFO][MAIN] Duplicate execution. +[28 11:58:31][12096][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:31][12096][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:31][12096][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:31][12096][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:31][12096][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:31][12096][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:31][12096][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:31][12096][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:31][12096][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:31][12096][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:31][12096][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:31][12096][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:31][12096][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:31][12096][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:31][12096][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:31][12096][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:31][12096][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:31][12096][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:31][12096][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:31][12096][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:31][12096][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:31][12096][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:31][12096][INFO][MAIN] Duplicate execution. +[28 11:58:34][12102][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:34][12102][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:34][12102][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:34][12102][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:34][12102][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:34][12102][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:34][12102][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:34][12102][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:34][12102][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:34][12102][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:34][12102][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:34][12102][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:34][12102][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:34][12102][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:34][12102][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:34][12102][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:34][12102][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:34][12102][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:34][12102][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:34][12102][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:34][12102][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:34][12102][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:34][12102][INFO][MAIN] Duplicate execution. +[28 11:58:37][12108][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:37][12108][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:37][12108][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:37][12108][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:37][12108][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:37][12108][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:37][12108][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:37][12108][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:37][12108][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:37][12108][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:37][12108][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:37][12108][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:37][12108][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:37][12108][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:37][12108][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:37][12108][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:37][12108][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:37][12108][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:37][12108][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:37][12108][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:37][12108][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:37][12108][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:37][12108][INFO][MAIN] Duplicate execution. +[28 11:58:40][12114][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:40][12114][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:40][12114][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:40][12114][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:40][12114][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:40][12114][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:40][12114][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:40][12114][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:40][12114][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:40][12114][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:40][12114][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:40][12114][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:40][12114][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:40][12114][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:40][12114][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:40][12114][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:40][12114][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:40][12114][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:40][12114][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:40][12114][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:40][12114][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:40][12114][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:40][12114][INFO][MAIN] Duplicate execution. +[28 11:58:43][12120][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[28 11:58:43][12120][INFO][read_properties] jspd.prop WR_ADDR=10.0.2.15:1314 +[28 11:58:43][12120][INFO][setDGAddrFromStr] ip[10.0.2.15],port[1314] +[28 11:58:43][12120][INFO]XM_LOG_OPT: 0 [opt_num:0] +[28 11:58:43][12120][INFO][read_properties] jspd.prop WR_ADDR:10.0.2.15:1314 +[28 11:58:43][12120][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[28 11:58:43][12120][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[28 11:58:43][12120][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[28 11:58:43][12120][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[28 11:58:43][12120][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[28 11:58:43][12120][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[28 11:58:43][12120][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[28 11:58:43][12120][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[28 11:58:43][12120][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[28 11:58:43][12120][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[28 11:58:43][12120][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[28 11:58:43][12120][INFO][read_properties] imx.prop AGENT_MODE:2 +[28 11:58:43][12120][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[28 11:58:43][12120][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[28 11:58:43][12120][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[28 11:58:43][12120][INFO][MAIN] hostname[8d9d58c23ac9] +[28 11:58:43][12120][ERRO][MFJ-OSM-00020080] Already exists. pid:80, ProcessName:imxtxn +[28 11:58:43][12120][INFO][MAIN] Duplicate execution. diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20230215.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20230215.log new file mode 100644 index 0000000..c7e3ebc --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20230215.log @@ -0,0 +1,45 @@ +[2023/02/15 12:11:39] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 12:11:39] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 12:11:39] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:11:39] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 12:11:39] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2023/02/15 12:11:39] [INFO ] [main] 22.08.01.06 +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 12:11:39] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 12:11:39] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 12:11:39] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 12:11:39] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 12:11:39] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 12:11:39] [INFO ] INIT THREAD NAME=main +[2023/02/15 12:11:39] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 12:11:39] [INFO ] [main] reset rum white list time=>1676429999900, interval=>3600000 +[2023/02/15 12:11:39] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 12:11:39] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 12:11:39] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 12:11:39] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 12:11:39] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 12:11:39] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container3 kkam_servlet_engine3, +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.g] received wasid : 17 +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.17 +[2023/02/15 12:11:44] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20230507.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20230507.log new file mode 100644 index 0000000..3d5811e --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20230507.log @@ -0,0 +1,116 @@ +[2023/05/07 05:14:15] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/05/07 05:14:15] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/05/07 05:14:15] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/05/07 05:14:15] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/05/07 05:14:15] [INFO ] INIT THREAD NAME=main +[2023/05/07 05:14:15] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/05/07 05:14:15] [INFO ] [main] reset rum white list time=>1683435599900, interval=>3600000 +[2023/05/07 05:14:15] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/05/07 05:14:15] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/05/07 05:14:15] [INFO ] [main] JSPD Agent initialized. +[2023/05/07 05:14:15] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/05/07 05:14:15] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/05/07 05:14:15] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.j] request was id hostname=c09fe2504527 +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=c09fe2504527-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-05 +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.g] received wasid : 10 +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.10 +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/07 05:14:20] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2023/05/07 06:05:50] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/05/07 06:05:50] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/07 06:05:50] [INFO ] [main] Change the USE_JMX option to 'true'. +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/05/07 06:05:50] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/07 06:05:50] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/05/07 06:05:50] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2023/05/07 06:05:50] [INFO ] [main] 22.08.01.06 +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/05/07 06:05:50] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/05/07 06:05:50] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/05/07 06:05:50] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/05/07 06:05:50] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/05/07 06:05:50] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/05/07 06:05:50] [INFO ] INIT THREAD NAME=main +[2023/05/07 06:05:50] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/05/07 06:05:50] [INFO ] [main] reset rum white list time=>1683439199900, interval=>3600000 +[2023/05/07 06:05:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/05/07 06:05:50] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/05/07 06:05:50] [INFO ] [main] JSPD Agent initialized. +[2023/05/07 06:05:50] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/05/07 06:05:50] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/05/07 06:05:50] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/05/07 23:51:30] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/05/07 23:51:30] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/07 23:51:30] [INFO ] [main] Change the USE_JMX option to 'true'. +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/05/07 23:51:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/07 23:51:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/05/07 23:51:30] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2023/05/07 23:51:30] [INFO ] [main] 22.08.01.06 +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/05/07 23:51:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/05/07 23:51:30] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/05/07 23:51:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/05/07 23:51:30] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/05/07 23:51:30] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/05/07 23:51:30] [INFO ] INIT THREAD NAME=main +[2023/05/07 23:51:30] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/05/07 23:51:30] [INFO ] [main] reset rum white list time=>1683500399900, interval=>3600000 +[2023/05/07 23:51:30] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/05/07 23:51:30] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/05/07 23:51:30] [INFO ] [main] JSPD Agent initialized. +[2023/05/07 23:51:30] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/05/07 23:51:30] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/05/07 23:51:30] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=c09fe2504527 +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=c09fe2504527-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.g] received wasid : 11 +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.11 +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/07 23:51:35] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20230508.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20230508.log new file mode 100644 index 0000000..1dc1967 --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20230508.log @@ -0,0 +1,77 @@ +[2023/05/08 00:12:25] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/05/08 00:12:25] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/05/08 00:12:25] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/05/08 00:12:25] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/05/08 00:12:25] [INFO ] INIT THREAD NAME=main +[2023/05/08 00:12:25] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/05/08 00:12:25] [INFO ] [main] reset rum white list time=>1683503999900, interval=>3600000 +[2023/05/08 00:12:25] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/05/08 00:12:25] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/05/08 00:12:25] [INFO ] [main] JSPD Agent initialized. +[2023/05/08 00:12:25] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/05/08 00:12:25] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/05/08 00:12:25] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.j] request was id hostname=c09fe2504527 +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=c09fe2504527-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.g] received wasid : 11 +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.11 +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/08 00:12:30] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2023/05/08 09:15:11] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/05/08 09:15:11] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/08 09:15:11] [INFO ] [main] Change the USE_JMX option to 'true'. +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/05/08 09:15:11] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/08 09:15:11] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/05/08 09:15:11] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2023/05/08 09:15:11] [INFO ] [main] 22.08.01.06 +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/05/08 09:15:11] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/05/08 09:15:11] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/05/08 09:15:11] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/05/08 09:15:11] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/05/08 09:15:11] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/05/08 09:15:11] [INFO ] INIT THREAD NAME=main +[2023/05/08 09:15:11] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/05/08 09:15:11] [INFO ] [main] reset rum white list time=>1683503999900, interval=>3600000 +[2023/05/08 09:15:11] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/05/08 09:15:11] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/05/08 09:15:11] [INFO ] [main] JSPD Agent initialized. +[2023/05/08 09:15:11] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/05/08 09:15:11] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/05/08 09:15:11] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.j] request was id hostname=c09fe2504527 +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=c09fe2504527-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.g] received wasid : 11 +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.11 +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/08 09:15:16] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20231128.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20231128.log new file mode 100644 index 0000000..0da5698 --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20231128.log @@ -0,0 +1,667 @@ +[2023/11/28 10:08:41] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/11/28 10:08:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/11/28 10:08:41] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/11/28 10:08:41] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/11/28 10:08:41] [INFO ] INIT THREAD NAME=main +[2023/11/28 10:08:41] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/11/28 10:08:41] [INFO ] [main] reset rum white list time=>1701133199900, interval=>3600000 +[2023/11/28 10:08:41] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/11/28 10:08:41] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/11/28 10:08:41] [INFO ] [main] JSPD Agent initialized. +[2023/11/28 10:08:41] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/11/28 10:08:41] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/11/28 10:08:41] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/11/28 10:13:05] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:05] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:05] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:05] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:11] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:11] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:17] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:17] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:23] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:23] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:29] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:29] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:35] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:41] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:41] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:47] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:47] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:47] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:47] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:47] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:48] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:48] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:48] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:13:54] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:13:54] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:00] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:06] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:12] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:18] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:18] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:18] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:18] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:18] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:24] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:24] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:24] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:30] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:36] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:42] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:48] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:48] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:14:48] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:14:48] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:14:54] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:14:54] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:14:54] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:14:54] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:00] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:00] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:15:00] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:15:06] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:12] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:12] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:12] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:15:12] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:15:18] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:15:18] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:18] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:18] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:24] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:24] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:24] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:15:24] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:15:30] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:15:30] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:30] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:36] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:42] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:15:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:15:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:15:42] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:15:42] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:17:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:17:36] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:42] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:48] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:17:54] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:17:54] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:18:00] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:18:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:18:06] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.ak] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.ak.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.0.2.15:1314 +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8d9d58c23ac9 +[2023/11/28 10:18:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8d9d58c23ac9-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/11/28 10:18:09] [INFO ] [com.exem.jspd.agent.g] received wasid : 8 +[2023/11/28 10:18:09] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.8 +[2023/11/28 10:18:09] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/11/28 10:18:09] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2023/11/28 12:01:28] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/11/28 12:01:28] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/11/28 12:01:28] [INFO ] [main] Change the USE_JMX option to 'true'. +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/11/28 12:01:28] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/11/28 12:01:28] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/11/28 12:01:28] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2023/11/28 12:01:28] [INFO ] [main] 22.08.01.06 +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/11/28 12:01:28] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/11/28 12:01:28] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/11/28 12:01:28] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/11/28 12:01:28] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/11/28 12:01:28] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/11/28 12:01:28] [INFO ] INIT THREAD NAME=main +[2023/11/28 12:01:28] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/11/28 12:01:28] [INFO ] [main] reset rum white list time=>1701140399900, interval=>3600000 +[2023/11/28 12:01:28] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/11/28 12:01:28] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/11/28 12:01:28] [INFO ] [main] JSPD Agent initialized. +[2023/11/28 12:01:28] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/11/28 12:01:28] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/11/28 12:01:28] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20240123.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20240123.log new file mode 100644 index 0000000..957455e --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20240123.log @@ -0,0 +1,139 @@ +[2024/01/23 10:04:51] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/23 10:04:51] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/23 10:04:51] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/23 10:04:51] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/23 10:04:51] [INFO ] INIT THREAD NAME=main +[2024/01/23 10:04:51] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/23 10:04:51] [INFO ] [main] reset rum white list time=>1705971599900, interval=>3600000 +[2024/01/23 10:04:51] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/23 10:04:51] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/23 10:04:51] [INFO ] [main] JSPD Agent initialized. +[2024/01/23 10:04:51] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/23 10:04:51] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/23 10:04:51] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/23 10:24:04] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/23 10:24:04] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/23 10:24:04] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/23 10:24:04] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:24:04] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/23 10:24:04] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/23 10:24:04] [INFO ] [main] 22.08.01.06 +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/23 10:24:04] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/23 10:24:04] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/23 10:24:04] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/23 10:24:04] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/23 10:24:04] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/23 10:24:04] [INFO ] INIT THREAD NAME=main +[2024/01/23 10:24:04] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/23 10:24:04] [INFO ] [main] reset rum white list time=>1705971599900, interval=>3600000 +[2024/01/23 10:24:04] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/23 10:24:05] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/23 10:24:05] [INFO ] [main] JSPD Agent initialized. +[2024/01/23 10:24:05] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/23 10:24:05] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/23 10:24:05] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/23 10:25:44] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/23 10:25:44] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/23 10:25:44] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/23 10:25:44] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:25:44] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/23 10:25:44] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/23 10:25:44] [INFO ] [main] 22.08.01.06 +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/23 10:25:44] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/23 10:25:44] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/23 10:25:44] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/23 10:25:44] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/23 10:25:44] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/23 10:25:44] [INFO ] INIT THREAD NAME=main +[2024/01/23 10:25:44] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/23 10:25:44] [INFO ] [main] reset rum white list time=>1705971599900, interval=>3600000 +[2024/01/23 10:25:44] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/23 10:25:44] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/23 10:25:44] [INFO ] [main] JSPD Agent initialized. +[2024/01/23 10:25:44] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/23 10:25:44] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/23 10:25:44] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/23 10:57:00] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/23 10:57:00] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/23 10:57:00] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/23 10:57:00] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:57:00] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/23 10:57:00] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/23 10:57:00] [INFO ] [main] 22.08.01.06 +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/23 10:57:00] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/23 10:57:00] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/23 10:57:00] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/23 10:57:00] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/23 10:57:00] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/23 10:57:00] [INFO ] INIT THREAD NAME=main +[2024/01/23 10:57:00] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/23 10:57:00] [INFO ] [main] reset rum white list time=>1705971599900, interval=>3600000 +[2024/01/23 10:57:00] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/23 10:57:00] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/23 10:57:00] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/23 10:57:00] [INFO ] [main] JSPD Agent initialized. +[2024/01/23 10:57:00] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/23 10:57:00] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. diff --git a/intermax/2208.06_type3/jspd/log/jspd[0]-20240125.log b/intermax/2208.06_type3/jspd/log/jspd[0]-20240125.log new file mode 100644 index 0000000..08634da --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[0]-20240125.log @@ -0,0 +1,334 @@ +[2024/01/25 13:43:43] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 13:43:43] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 13:43:43] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 13:43:43] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 13:43:43] [INFO ] INIT THREAD NAME=main +[2024/01/25 13:43:43] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 13:43:43] [INFO ] [main] reset rum white list time=>1706155199900, interval=>3600000 +[2024/01/25 13:43:44] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 13:43:44] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 13:43:44] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 13:43:44] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 13:43:44] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 13:43:44] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 13:50:54] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 13:50:54] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 13:50:54] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 13:50:54] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 13:50:54] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 13:50:54] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 13:50:54] [INFO ] [main] 22.08.01.06 +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 13:50:54] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 13:50:54] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 13:50:54] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 13:50:54] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 13:50:54] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 13:50:54] [INFO ] INIT THREAD NAME=main +[2024/01/25 13:50:54] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 13:50:54] [INFO ] [main] reset rum white list time=>1706155199900, interval=>3600000 +[2024/01/25 13:50:54] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 13:50:54] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 13:50:54] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 13:50:54] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 13:50:54] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 13:50:54] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 13:59:15] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 13:59:15] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 13:59:15] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 13:59:15] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 13:59:15] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 13:59:15] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 13:59:15] [INFO ] [main] 22.08.01.06 +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 13:59:15] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 13:59:15] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 13:59:15] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 13:59:15] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 13:59:15] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 13:59:15] [INFO ] INIT THREAD NAME=main +[2024/01/25 13:59:15] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 13:59:15] [INFO ] [main] reset rum white list time=>1706155199900, interval=>3600000 +[2024/01/25 13:59:15] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 13:59:15] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 13:59:15] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 13:59:15] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 13:59:15] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 13:59:15] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 14:18:02] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 14:18:02] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 14:18:02] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 14:18:02] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:18:02] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 14:18:02] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 14:18:02] [INFO ] [main] 22.08.01.06 +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 14:18:02] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 14:18:02] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 14:18:02] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 14:18:02] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 14:18:02] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 14:18:02] [INFO ] INIT THREAD NAME=main +[2024/01/25 14:18:02] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 14:18:02] [INFO ] [main] reset rum white list time=>1706158799900, interval=>3600000 +[2024/01/25 14:18:02] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 14:18:02] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 14:18:02] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 14:18:02] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 14:18:02] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 14:18:02] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 14:25:28] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 14:25:28] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 14:25:28] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 14:25:28] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:25:28] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 14:25:28] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 14:25:28] [INFO ] [main] 22.08.01.06 +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 14:25:28] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 14:25:28] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 14:25:28] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 14:25:28] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 14:25:28] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 14:25:28] [INFO ] INIT THREAD NAME=main +[2024/01/25 14:25:28] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 14:25:28] [INFO ] [main] reset rum white list time=>1706158799900, interval=>3600000 +[2024/01/25 14:25:28] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 14:25:28] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 14:25:28] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 14:25:28] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 14:25:28] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 14:25:28] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 14:32:35] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 14:32:35] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 14:32:35] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 14:32:35] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:32:35] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 14:32:35] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 14:32:35] [INFO ] [main] 22.08.01.06 +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 14:32:35] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 14:32:35] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 14:32:35] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 14:32:35] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 14:32:35] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 14:32:35] [INFO ] INIT THREAD NAME=main +[2024/01/25 14:32:35] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 14:32:35] [INFO ] [main] reset rum white list time=>1706158799900, interval=>3600000 +[2024/01/25 14:32:35] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 14:32:35] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 14:32:35] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 14:32:35] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 14:32:35] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 14:32:35] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 14:57:49] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 14:57:49] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 14:57:49] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 14:57:49] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:57:49] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 14:57:49] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 14:57:49] [INFO ] [main] 22.08.01.06 +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 14:57:49] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 14:57:49] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 14:57:49] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 14:57:49] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 14:57:49] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 14:57:49] [INFO ] INIT THREAD NAME=main +[2024/01/25 14:57:49] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 14:57:49] [INFO ] [main] reset rum white list time=>1706158799900, interval=>3600000 +[2024/01/25 14:57:49] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 14:57:49] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 14:57:49] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 14:57:49] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 14:57:49] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 14:57:50] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 15:08:33] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 15:08:33] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 15:08:33] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 15:08:33] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 15:08:33] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 15:08:33] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 15:08:33] [INFO ] [main] 22.08.01.06 +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 15:08:33] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 15:08:33] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 15:08:33] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 15:08:33] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 15:08:33] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 15:08:33] [INFO ] INIT THREAD NAME=main +[2024/01/25 15:08:33] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 15:08:33] [INFO ] [main] reset rum white list time=>1706162399900, interval=>3600000 +[2024/01/25 15:08:33] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 15:08:33] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 15:08:33] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 15:08:33] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 15:08:33] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 15:08:33] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 15:12:47] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/2208.06_type3/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 15:12:47] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2024/01/25 15:12:47] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 15:12:47] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 15:12:47] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 15:12:47] [INFO ] [main] JSPD EXT [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-ext.jar] +[2024/01/25 15:12:47] [INFO ] [main] 22.08.01.06 +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 15:12:47] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 15:12:47] [INFO ] [main] JSPD POOL [/usr/local/intermax/2208.06_type3/jspd/lib/jspd-pool.jar] +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 15:12:47] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 15:12:47] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2024/01/25 15:12:47] [INFO ] TCP PROTOCOL VERSION --- 30 +[2024/01/25 15:12:47] [INFO ] INIT THREAD NAME=main +[2024/01/25 15:12:47] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 15:12:47] [INFO ] [main] reset rum white list time=>1706162399900, interval=>3600000 +[2024/01/25 15:12:47] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 15:12:47] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 15:12:47] [INFO ] [main] JSPD Agent initialized. +[2024/01/25 15:12:47] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 15:12:47] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 15:12:47] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. diff --git a/intermax/2208.06_type3/jspd/log/jspd[10]-20230507.log b/intermax/2208.06_type3/jspd/log/jspd[10]-20230507.log new file mode 100644 index 0000000..fb7710e --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[10]-20230507.log @@ -0,0 +1,17 @@ +[2023/05/07 05:14:21] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676431962016] +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-1 +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/05/07 05:14:22] [INFO ] [com.exem.jspd.agent.g] Intermax License[-1], expired date error +[2023/05/07 05:14:24] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type3/jspd/log/jspd[11]-20230507.log b/intermax/2208.06_type3/jspd/log/jspd[11]-20230507.log new file mode 100644 index 0000000..3f53a3c --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[11]-20230507.log @@ -0,0 +1,21 @@ +[2023/05/07 23:51:36] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1683437232046] +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-1 +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/05/07 23:51:37] [INFO ] [com.exem.jspd.agent.g] Intermax License[-1], expired date error +[2023/05/07 23:51:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/05/08 00:04:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/usr/local/intermax/2208.06_type3/jspd/cfg/agent/jspd.prop.11 +[2023/05/08 00:04:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/05/08 00:04:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Change the USE_JMX option to 'true'. +[2023/05/08 00:04:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Intermax License diff --git a/intermax/2208.06_type3/jspd/log/jspd[11]-20230508.log b/intermax/2208.06_type3/jspd/log/jspd[11]-20230508.log new file mode 100644 index 0000000..f01a74d --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[11]-20230508.log @@ -0,0 +1,51 @@ +[2023/05/08 00:04:26] [INFO ] [com.exem.jspd.agent.j] request was id (normal type) +[2023/05/08 00:04:26] [INFO ] [com.exem.jspd.agent.j] request was id hostname=c09fe2504527 +[2023/05/08 00:04:26] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=c09fe2504527-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2023/05/08 00:04:26] [INFO ] [com.exem.jspd.agent.g] received wasid : 11 +[2023/05/08 00:04:27] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] process run result=0 +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] daemonize on +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env DG_ADDR(256)[] +[2023/05/08 00:11:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Starting IMXAgent[1683504675048] +[2023/05/08 00:12:31] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1683504726069] +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/05/08 00:12:32] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/05/08 00:12:34] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/05/08 09:15:17] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/05/08 09:15:18] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/05/08 09:15:18] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/05/08 09:15:18] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/05/08 09:15:20] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] process run result=0 +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] daemonize on +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env DG_ADDR(256)[] +[2023/05/08 09:15:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Starting IMXAgent[1683504906014] diff --git a/intermax/2208.06_type3/jspd/log/jspd[17]-20230215.log b/intermax/2208.06_type3/jspd/log/jspd[17]-20230215.log new file mode 100644 index 0000000..f3db9f3 --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[17]-20230215.log @@ -0,0 +1,34 @@ +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(37)[/app/tmax/intermax/2208.06_type3/jspd] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676430540028] +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 12:11:46] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 12:11:48] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 12:31:05] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.m] +java.net.SocketException: Connection reset + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:96) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.b.am.a(Unknown Source) + at com.exem.jspd.b.m.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] Intermax License diff --git a/intermax/2208.06_type3/jspd/log/jspd[8]-20231128.log b/intermax/2208.06_type3/jspd/log/jspd[8]-20231128.log new file mode 100644 index 0000000..a591133 --- /dev/null +++ b/intermax/2208.06_type3/jspd/log/jspd[8]-20231128.log @@ -0,0 +1,35 @@ +[2023/11/28 10:18:12] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=33 +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/2208.06_type3/jspd/lib/IMXAgent.sh, /usr/local/intermax/2208.06_type3/jspd, imxosm, 64] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(38)[/usr/local/intermax/2208.06_type3/jspd] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1683527742075] +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-1 +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/11/28 10:18:13] [INFO ] [com.exem.jspd.agent.g] Intermax License[-1], expired date error +[2023/11/28 10:18:15] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/11/28 10:19:21] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.f] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.f.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2023/11/28 10:19:21] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/11/28 10:19:21] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/11/28 10:19:21] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2023/11/28 10:19:21] [INFO ] [com.exem.jspd.agent.j] Intermax License[-1], expired date error diff --git a/intermax/2208.06_type3/jspd/tmp/imxosm.act b/intermax/2208.06_type3/jspd/tmp/imxosm.act new file mode 100644 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/tmp/imxosm.status b/intermax/2208.06_type3/jspd/tmp/imxosm.status new file mode 100644 index 0000000..c45bbc5 --- /dev/null +++ b/intermax/2208.06_type3/jspd/tmp/imxosm.status @@ -0,0 +1 @@ +status=RUNNING diff --git a/intermax/2208.06_type3/jspd/tmp/imxtxn.act b/intermax/2208.06_type3/jspd/tmp/imxtxn.act new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/intermax/2208.06_type3/jspd/tmp/imxtxn.act @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/tmp/imxtxn.status b/intermax/2208.06_type3/jspd/tmp/imxtxn.status new file mode 100644 index 0000000..c45bbc5 --- /dev/null +++ b/intermax/2208.06_type3/jspd/tmp/imxtxn.status @@ -0,0 +1 @@ +status=RUNNING diff --git a/intermax/2208.06_type3/jspd/tools/InterMax_license_info.txt b/intermax/2208.06_type3/jspd/tools/InterMax_license_info.txt new file mode 100755 index 0000000..604796e --- /dev/null +++ b/intermax/2208.06_type3/jspd/tools/InterMax_license_info.txt @@ -0,0 +1,113 @@ +-- HOSTID +# Windows (ETH MAC ADDRESS) +> ipconfig /all + +# Unix +> hostid + +# HP-UX +> echo `/bin/uname -i` 16op | dc +ex) FC522FFB +or +> getconf CS_PARTITION_IDENT +ex) 200bb998-xxxx-xxxx-xxxx-xxxxxxxxxxxx + + +-- CORE +# Windows +systeminfo | findstr Processors +wmic cpu get NumberOfCores +wmic cpu get NumberOfLogicalProcessors +echo %NUMBER_OF_PROCESSORS% + +# Linux +while true +do +PHYSICAL_CNT=`cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l` +CORE_CNT=`cat /proc/cpuinfo | grep "cpu cores" | tail -1 | cut -d: -f2` +CORE_ID=`cat /proc/cpuinfo | grep "core id" | sort -u | head -1 | cut -d: -f2` +THREAD_CNT=`egrep "^core|^physical" /proc/cpuinfo | awk '{if((NR%2)==0) print $0 "," ; else print $0 }' | awk 'BEGIN {RS=","} {print $1,$2,$3,$4,$5,$6,$7,$8}' | grep ^physical | sort | uniq -c | head -1 | awk '{print $1}'` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# SunOS +while true +do +PHYSICAL_CNT=`/usr/sbin/psrinfo -p` +CORE_TOT=`kstat -m cpu_info | grep -w core_id | sort -u | wc -l| awk '{print $1}'` +CORE_CNT=`expr $CORE_TOT / $PHYSICAL_CNT` +CORE_TOT2=`kstat -m cpu_info | grep -w core_id | wc -l ` +THREAD_CNT=`expr $CORE_TOT2 / $CORE_TOT ` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# HP-UX +while true +do +PHYSICAL_CNT=`machinfo | grep -i sockets | awk '{print $1}'` +CORE_CNT=`machinfo | grep -i cores | grep -v "processors" | awk -F'(' '{print $2}' | awk '{print $1}'` +THREAD_INFO=`/usr/sbin/kctune | grep lcpu_attr ` +IS_THREAD_ON=`echo $THREAD_INFO | grep 1 | wc -l` +if [ $IS_THREAD_ON -eq 1 ];then +THREAD_CNT=2 +else +THREAD_CNT=1 +fi +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +echo "MAX CPU : " `machinfo | grep -i cores | grep -v "per socket)"` +break +done + +# IBM AIX +while true +do +PHYSICAL_CNT=`lscfg -vp |grep -ip proc |grep PROC|grep WAY | wc -l` +CORE_CNT=`lscfg -vp | grep proc | wc -l` +IMSI_PROC=`lscfg -vp | grep proc | head -1 | awk '{print $1}'` +IS_SMT=`lsattr -El $IMSI_PROC | grep smt_enabled| awk '{print $2}'` +SMT_CNT=`lsattr -El $IMSI_PROC | grep smt_threads| awk '{print $2}'` +if [ $IS_SMT = "true" ];then +THREAD_CNT=$SMT_CNT +else +THREAD_CNT=1 +fi +if [ "$PHYSICAL_CNT" = "" ];then +PHYSICAL_CNT="I don't know" +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +else +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +fi +echo ""Physical CPU Count : $PHYSICAL_CNT "" +echo ""Core Count : $CORE_CNT "" +echo ""Thread Count per Core : $THREAD_CNT "" +LCPURESULT="$CORE_CNT (cores) * $THREAD_CNT(smt) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$NCPURESULT"|sed 's/^ *//'` +break +done + +# IBM AIX (5.3) +lsdev -Cc processor +lsattr -El proc0 +bindprocessor -q +smtctl diff --git a/intermax/2208.06_type3/jspd/tools/InterMax_license_keyfile_check.zip b/intermax/2208.06_type3/jspd/tools/InterMax_license_keyfile_check.zip new file mode 100755 index 0000000..094f425 Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/InterMax_license_keyfile_check.zip differ diff --git a/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe new file mode 100755 index 0000000..93f8697 Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe differ diff --git a/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe new file mode 100755 index 0000000..3793911 Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe differ diff --git a/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt new file mode 100755 index 0000000..1aa376c --- /dev/null +++ b/intermax/2208.06_type3/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt @@ -0,0 +1,5 @@ +지원되는 최신 Visual C++ 다운로드(2020.09.01) + +Visual Studio 2015, 2017 및 2019 + +https://support.microsoft.com/ko-kr/help/2977003/the-latest-supported-visual-c-downloads \ No newline at end of file diff --git a/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe b/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe new file mode 100755 index 0000000..35096bf Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe differ diff --git a/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe b/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe new file mode 100755 index 0000000..aa59bc9 Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe differ diff --git a/intermax/2208.06_type3/jspd/tools/imxmod/.gitkeep b/intermax/2208.06_type3/jspd/tools/imxmod/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type3/jspd/tools/imxmod/setup_mod_imx_httpd.bin b/intermax/2208.06_type3/jspd/tools/imxmod/setup_mod_imx_httpd.bin new file mode 100755 index 0000000..ce88257 Binary files /dev/null and b/intermax/2208.06_type3/jspd/tools/imxmod/setup_mod_imx_httpd.bin differ diff --git a/intermax/2208.06_type3/jspd/version.info b/intermax/2208.06_type3/jspd/version.info new file mode 100755 index 0000000..2391f01 --- /dev/null +++ b/intermax/2208.06_type3/jspd/version.info @@ -0,0 +1,2 @@ +install_version=2208.06 +current_version=2208.06 diff --git a/intermax/2208.06_type3/jspd/version_check.sh b/intermax/2208.06_type3/jspd/version_check.sh new file mode 100755 index 0000000..1c9f21d --- /dev/null +++ b/intermax/2208.06_type3/jspd/version_check.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +export PATH=`pwd` + +TXN_OUTPUT=`${PATH}/lib/imx/imxtxn -v` +OSM_OUTPUT=`${PATH}/lib/imx/imxosm -v` + +echo "TXN_VERSION=${TXN_OUTPUT}" > ${PATH}/version_check.info +echo "OSM_VERSION=${OSM_OUTPUT}" >> ${PATH}/version_check.info diff --git a/intermax/2208.06_type4/ant/bin/ant b/intermax/2208.06_type4/ant/bin/ant new file mode 100755 index 0000000..cf336db --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/ant @@ -0,0 +1,299 @@ +#! /bin/sh + +# Copyright 2001-2005 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Extract launch and ant arguments, (see details below). +ant_exec_args= +no_config=false +use_jikes_default=false +ant_exec_debug=false +show_help=false +for arg in "$@" ; do + if [ "$arg" = "--noconfig" ] ; then + no_config=true + elif [ "$arg" = "--usejikes" ] ; then + use_jikes_default=true + elif [ "$arg" = "--execdebug" ] ; then + ant_exec_debug=true + elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then + show_help=true + ant_exec_args="$ant_exec_args -h" + else + if [ my"$arg" = my"-h" -o my"$arg" = my"-help" ] ; then + show_help=true + fi + ant_exec_args="$ant_exec_args \"$arg\"" + fi +done + +# Source/default ant configuration +if $no_config ; then + rpm_mode=false + usejikes=$use_jikes_default +else + # load system-wide ant configuration + if [ -f "/etc/ant.conf" ] ; then + . /etc/ant.conf + fi + + # load user ant configuration + if [ -f "$HOME/.ant/ant.conf" ] ; then + . $HOME/.ant/ant.conf + fi + if [ -f "$HOME/.antrc" ] ; then + . "$HOME/.antrc" + fi + + # provide default configuration values + if [ -z "$rpm_mode" ] ; then + rpm_mode=false + fi + if [ -z "$usejikes" ] ; then + usejikes=$use_jikes_default + fi +fi + +# Setup Java environment in rpm mode +if $rpm_mode ; then + if [ -f /usr/share/java-utils/java-functions ] ; then + . /usr/share/java-utils/java-functions + set_jvm + set_javacmd + fi +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +case "`uname`" in + CYGWIN*) cygwin=true ;; + Darwin*) darwin=true + if [ -z "$JAVA_HOME" ] ; then + JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home + fi + ;; +esac + +if [ -z "$ANT_HOME" -o ! -d "$ANT_HOME" ] ; then + ## resolve links - $0 may be a link to ant's home + PRG="$0" + progname=`basename "$0"` + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi + done + + ANT_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + ANT_HOME=`cd "$ANT_HOME" && pwd` +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$ANT_HOME" ] && + ANT_HOME=`cygpath --unix "$ANT_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# set ANT_LIB location +ANT_LIB="${ANT_HOME}/lib" + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD=`which java 2> /dev/null ` + if [ -z "$JAVACMD" ] ; then + JAVACMD=java + fi + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." + echo " We cannot execute $JAVACMD" + exit 1 +fi + +# Build local classpath using just the launcher in non-rpm mode or +# use the Jpackage helper in rpm mode with basic and default jars +# specified in the ant.conf configuration. Because the launcher is +# used, libraries linked in ANT_HOME will also be include, but this +# is discouraged as it is not java-version safe. A user should +# request optional jars and their dependencies via the OPT_JAR_LIST +# variable +if $rpm_mode && [ -f /usr/bin/build-classpath ] ; then + LOCALCLASSPATH="$(/usr/bin/build-classpath ant ant-launcher jaxp_parser_impl xml-commons-apis)" + # If the user requested to try to add some other jars to the classpath + if [ -n "$OPT_JAR_LIST" ] ; then + _OPTCLASSPATH="$(/usr/bin/build-classpath $OPT_JAR_LIST 2> /dev/null)" + if [ -n "$_OPTCLASSPATH" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$_OPTCLASSPATH" + fi + fi + + # Explicitly add javac path to classpath, assume JAVA_HOME set + # properly in rpm mode + if [ -f "$JAVA_HOME/lib/tools.jar" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/tools.jar" + fi + if [ -f "$JAVA_HOME/lib/classes.zip" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/classes.zip" + fi + + # if CLASSPATH_OVERRIDE env var is set, LOCALCLASSPATH will be + # user CLASSPATH first and ant-found jars after. + # In that case, the user CLASSPATH will override ant-found jars + # + # if CLASSPATH_OVERRIDE is not set, we'll have the normal behaviour + # with ant-found jars first and user CLASSPATH after + if [ -n "$CLASSPATH" ] ; then + # merge local and specified classpath + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH="$CLASSPATH" + elif [ -n "$CLASSPATH_OVERRIDE" ] ; then + LOCALCLASSPATH="$CLASSPATH:$LOCALCLASSPATH" + else + LOCALCLASSPATH="$LOCALCLASSPATH:$CLASSPATH" + fi + + # remove class path from launcher -cp option + CLASSPATH="" + fi +else + # not using rpm_mode; use launcher to determine classpaths + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar + else + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar:$LOCALCLASSPATH + fi +fi + +if [ -n "$JAVA_HOME" ] ; then + # OSX hack to make Ant work with jikes + if $darwin ; then + OSXHACK="${JAVA_HOME}/../Classes" + if [ -d "${OSXHACK}" ] ; then + for i in "${OSXHACK}"/*.jar + do + JIKESPATH="$JIKESPATH:$i" + done + fi + fi +fi + +# Allow Jikes support (off by default) +if $usejikes; then + ANT_OPTS="$ANT_OPTS -Dbuild.compiler=jikes" +fi + +# For Cygwin, switch paths to appropriate format before running java +# For PATHs convert to unix format first, then to windows format to ensure +# both formats are supported. Probably this will fail on directories with ; +# in the name in the path. Let's assume that paths containing ; are more +# rare than windows style paths on cygwin. +if $cygwin; then + if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then + format=mixed + else + format=windows + fi + ANT_HOME=`cygpath --$format "$ANT_HOME"` + ANT_LIB=`cygpath --$format "$ANT_LIB"` + JAVA_HOME=`cygpath --$format "$JAVA_HOME"` + LCP_TEMP=`cygpath --path --unix "$LOCALCLASSPATH"` + LOCALCLASSPATH=`cygpath --path --$format "$LCP_TEMP"` + if [ -n "$CLASSPATH" ] ; then + CP_TEMP=`cygpath --path --unix "$CLASSPATH"` + CLASSPATH=`cygpath --path --$format "$CP_TEMP"` + fi + CYGHOME=`cygpath --$format "$HOME"` +fi + +# Show script help if requested +if $show_help ; then + echo $0 '[script options] [options] [target [target2 [target3] ..]]' + echo 'Script Options:' + echo ' --help, --h print this message and ant help' + echo ' --noconfig suppress sourcing of /etc/ant.conf,' + echo ' $HOME/.ant/ant.conf, and $HOME/.antrc' + echo ' configuration files' + echo ' --usejikes enable use of jikes by default, unless' + echo ' set explicitly in configuration files' + echo ' --execdebug print ant exec line generated by this' + echo ' launch script' + echo ' ' +fi +# add a second backslash to variables terminated by a backslash under cygwin +if $cygwin; then + case "$ANT_HOME" in + *\\ ) + ANT_HOME="$ANT_HOME\\" + ;; + esac + case "$CYGHOME" in + *\\ ) + CYGHOME="$CYGHOME\\" + ;; + esac + case "$JIKESPATH" in + *\\ ) + JIKESPATH="$JIKESPATH\\" + ;; + esac + case "$LOCALCLASSPATH" in + *\\ ) + LOCALCLASSPATH="$LOCALCLASSPATH\\" + ;; + esac + case "$CLASSPATH" in + *\\ ) + CLASSPATH="$CLASSPATH\\" + ;; + esac +fi +# Execute ant using eval/exec to preserve spaces in paths, +# java options, and ant args +ant_sys_opts= +if [ -n "$CYGHOME" ]; then + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\" -Dcygwin.user.home=\"$CYGHOME\"" + else + ant_sys_opts="-Dcygwin.user.home=\"$CYGHOME\"" + fi +else + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\"" + fi +fi +ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\" -Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS -cp \"$CLASSPATH\" $ant_exec_args" +if $ant_exec_debug ; then + echo $ant_exec_command +fi +eval $ant_exec_command diff --git a/intermax/2208.06_type4/ant/bin/ant.bat b/intermax/2208.06_type4/ant/bin/ant.bat new file mode 100755 index 0000000..55df281 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/ant.bat @@ -0,0 +1,126 @@ +@echo off + +REM Copyright 2001,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. + +if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +rem %~dp0 is expanded pathname of the current script under NT +set DEFAULT_ANT_HOME=%~dp0.. + +if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME% +set DEFAULT_ANT_HOME= + +set _USE_CLASSPATH=yes + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of arguments (up to the command line limit, anyway). +set ANT_CMD_LINE_ARGS=%1 +if ""%1""=="""" goto doneStart +shift +:setupArgs +if ""%1""=="""" goto doneStart +if ""%1""==""-noclasspath"" goto clearclasspath +set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1 +shift +goto setupArgs + +rem here is there is a -noclasspath in the options +:clearclasspath +set _USE_CLASSPATH=no +shift +goto setupArgs + +rem This label provides a place for the argument list loop to break out +rem and for NT handling to skip to. + +:doneStart +rem find ANT_HOME if it does not exist due to either an invalid value passed +rem by the user or the %0 problem on Windows 9x +if exist "%ANT_HOME%\lib\ant.jar" goto checkJava + +rem check for ant in Program Files +if not exist "%ProgramFiles%\ant" goto checkSystemDrive +set ANT_HOME=%ProgramFiles%\ant +goto checkJava + +:checkSystemDrive +rem check for ant in root directory of system drive +if not exist %SystemDrive%\ant\lib\ant.jar goto checkCDrive +set ANT_HOME=%SystemDrive%\ant +goto checkJava + +:checkCDrive +rem check for ant in C:\ant for Win9X users +if not exist C:\ant\lib\ant.jar goto noAntHome +set ANT_HOME=C:\ant +goto checkJava + +:noAntHome +echo ANT_HOME is set incorrectly or ant could not be located. Please set ANT_HOME. +goto end + +:checkJava +set _JAVACMD=%JAVACMD% + +if "%JAVA_HOME%" == "" goto noJavaHome +if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe +goto checkJikes + +:noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=java.exe + +:checkJikes +if not "%JIKESPATH%"=="" goto runAntWithJikes + +:runAnt +if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikes +if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath + +:runAntWithJikesNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikesAndClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:end +set _JAVACMD= +set ANT_CMD_LINE_ARGS= + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + +:mainEnd +if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" + diff --git a/intermax/2208.06_type4/ant/bin/ant.cmd b/intermax/2208.06_type4/ant/bin/ant.cmd new file mode 100755 index 0000000..94b5a45 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/ant.cmd @@ -0,0 +1,92 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run ant +*/ + +'@echo off' +parse arg mode envarg '::' antarg + +if mode\='.' & mode\='..' & mode\='/' then do + envarg = mode envarg + mode = '' +end + +if antarg = '' then do + antarg = envarg + envarg = '' +end + +x = setlocal() + +env="OS2ENVIRONMENT" +antenv = _getenv_('antenv') +if _testenv_() = 0 then interpret 'call "' || antenv || '"' '"' || envarg || '"' + +if mode = '' then mode = _getenv_('ANT_MODE' '..') +if mode \= '/' then do + runrc = _getenv_('runrc') + antrc = _getenv_('antrc' 'antrc.cmd') + if mode = '..' then mode = '-r' + else mode = '' + interpret 'call "' || runrc || '"' antrc '"' || mode || '"' +end + +if _testenv_() = 0 then do + say 'Ant environment is not set properly' + x = endlocal() + exit 16 +end + +settings = '-Dant.home=' || ANT_HOME '-Djava.home=' || JAVA_HOME + +java = _getenv_('javacmd' 'java') +opts = value('ANT_OPTS',,env) +args = value('ANT_ARGS',,env) +lcp = value('LOCALCLASSPATH',,env) +cp = value('CLASSPATH',,env) +if value('ANT_USE_CP',,env) \= '' then do + if lcp \= '' & right(lcp, 1) \= ';' then lcp = lcp || ';' + lcp = lcp || cp + 'SET CLASSPATH=' +end +if lcp\='' then lcp = '-classpath' lcp + +cmd = java opts lcp '-jar' ANT_HOME ||'\lib\ant-launcher.jar' settings args antarg +launcher = stream(ANT_HOME ||'\lib\ant-launcher.jar', 'C', 'query exists') +if launcher = '' then entry = 'org.apache.tools.ant.Main' +else entry = 'org.apache.tools.ant.launch.Launcher' +java opts lcp entry settings args antarg + +x = endlocal() + +return rc + +_testenv_: procedure expose env ANT_HOME JAVA_HOME +ANT_HOME = value('ANT_HOME',,env) +if ANT_HOME = '' then return 0 +JAVA_HOME = value('JAVA_HOME',,env) +if JAVA_HOME = '' then return 0 +cp = translate(value('CLASSPATH',,env)) +if pos(translate(ANT_HOME), cp) = 0 then return 0 +if pos(translate(JAVA_HOME), cp) = 0 then return 0 +return 1 + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/2208.06_type4/ant/bin/antRun b/intermax/2208.06_type4/ant/bin/antRun new file mode 100755 index 0000000..baddd71 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/antRun @@ -0,0 +1,26 @@ +#!/bin/sh + +# +# Copyright 2001-2002,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# + +# Args: DIR command +cd "$1" +CMD="$2" +shift +shift + +exec "$CMD" "$@" diff --git a/intermax/2208.06_type4/ant/bin/antRun.bat b/intermax/2208.06_type4/ant/bin/antRun.bat new file mode 100755 index 0000000..aae98cc --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/antRun.bat @@ -0,0 +1,47 @@ +@echo off + +REM +REM Copyright 2001-2002,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +if ""%1""=="""" goto runCommand + +rem Change drive and directory to %1 +if "%OS%"=="Windows_NT" cd /d ""%1"" +if not "%OS%"=="Windows_NT" cd ""%1"" +shift + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of agruments (up to the command line limit, anyway). +set ANT_RUN_CMD=%1 +if ""%1""=="""" goto runCommand +shift +:loop +if ""%1""=="""" goto runCommand +set ANT_RUN_CMD=%ANT_RUN_CMD% %1 +shift +goto loop + +:runCommand +rem echo %ANT_RUN_CMD% +%ANT_RUN_CMD% + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + diff --git a/intermax/2208.06_type4/ant/bin/antRun.pl b/intermax/2208.06_type4/ant/bin/antRun.pl new file mode 100755 index 0000000..7cdd868 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/antRun.pl @@ -0,0 +1,65 @@ +#!/usr/bin/perl +# +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# antRun.pl +# +# wrapper script for invoking commands on a platform with Perl installed +# this is akin to antRun.bat, and antRun the SH script +# +# created: 2001-10-18 +# author: Jeff Tulley jtulley@novell.com +####################################################################### +#be fussy about variables +use strict; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info (currently unused) +my $debug=1; + +####################################################################### +# change drive and directory to "%1" +my $ANT_RUN_CMD = @ARGV[0]; + +# assign current run command to "%2" +chdir (@ARGV[0]) || die "Can't cd to $ARGV[0]: $!\n"; +if ($^O eq "NetWare") { + # There is a bug in Perl 5 on NetWare, where chdir does not + # do anything. On NetWare, the following path-prefixed form should + # always work. (afaict) + $ANT_RUN_CMD .= "/".@ARGV[1]; +} +else { + $ANT_RUN_CMD = @ARGV[1]; +} + +# dispose of the first two arguments, leaving only the command's args. +shift; +shift; + +# run the command +my $returnValue = system $ANT_RUN_CMD, @ARGV; +if ($returnValue eq 0) { + exit 0; +} +else { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; +} diff --git a/intermax/2208.06_type4/ant/bin/antenv.cmd b/intermax/2208.06_type4/ant/bin/antenv.cmd new file mode 100755 index 0000000..05efa85 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/antenv.cmd @@ -0,0 +1,99 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Ant environment +*/ + +'@echo off' +call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs" +call SysLoadFuncs + +/* Prepare the parameters for later use */ +parse arg argv +mode = '' +args = '' +opts = '' +cp = '' +lcp = '' + +do i = 1 to words(argv) + param = word(argv, i) + select + when param='-lcp' then mode = 'l' + when param='-cp' | param='-classpath' then mode = 'c' + when abbrev('-opts', param, 4) then mode = 'o' + when abbrev('-args', param, 4) then mode = 'a' + otherwise + select + when mode = 'a' then args = space(args param, 1) + when mode = 'c' then cp = space(cp param, 1) + when mode = 'l' then lcp = space(lcp param, 1) + when mode = 'o' then opts = space(opts param, 1) + otherwise + say 'Option' param 'ignored' + end + end +end + +env="OS2ENVIRONMENT" +antconf = _getenv_('antconf' 'antconf.cmd') +runrc = _getenv_('runrc') +interpret 'call "' || runrc || '"' '"' || antconf || '"' 'ETC' +ANT_HOME = value('ANT_HOME',,env) +JAVA_HOME = value('JAVA_HOME',,env) +classpath = value('CLASSPATH',,env) +classes = stream(JAVA_HOME || "\lib\classes.zip", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) +classes = stream(JAVA_HOME || "\lib\tools.jar", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) + +classpath = prepend(classpath ANT_HOME || '\lib\ant-launcher.jar') +'SET CLASSPATH=' || classpath + +/* Setting classpathes, options and arguments */ +envset = _getenv_('envset') +if cp\='' then interpret 'call "' || envset || '"' '"; CLASSPATH"' '"' || cp || '"' +if lcp\='' then interpret 'call "' || envset || '"' '"; LOCALCLASSPATH"' '"' || lcp || '"' +if opts\='' then interpret 'call "' || envset || '"' '"-D ANT_OPTS"' '"' || opts || '"' +if args\='' then interpret 'call "' || envset || '"' '"ANT_ARGS"' '"' || args || '"' + +exit 0 + +addpath: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if substr(path, length(path)) = ';' then glue = '' +else glue = ';' +if pos(translate(elem), translate(path)) = 0 then path = path || glue || elem || ';' +return path + +prepend: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if pos(translate(elem), translate(path)) = 0 then path = elem || ';' || path +return path + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/2208.06_type4/ant/bin/complete-ant-cmd.pl b/intermax/2208.06_type4/ant/bin/complete-ant-cmd.pl new file mode 100755 index 0000000..20dd476 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/complete-ant-cmd.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl +# +# Copyright 2001,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# A script to allow Bash or Z-Shell to complete an Ant command-line. +# +# To install for Bash 2.0 or better, add the following to ~/.bashrc: +# +# $ complete -C complete-ant-cmd ant build.sh +# +# To install for Z-Shell 2.5 or better, add the following to ~/.zshrc: +# +# function ant_complete () { +# local args_line args +# read -l args_line +# set -A args $args_line +# set -A reply $(COMP_LINE=$args_line complete-ant-cmd ${args[1]} $1) +# } +# compctl -K ant_complete ant build.sh +# +# @author Mike Williams + +my $cmdLine = $ENV{'COMP_LINE'}; +my $antCmd = $ARGV[0]; +my $word = $ARGV[1]; + +my @completions; +if ($word =~ /^-/) { + list( restrict( $word, getArguments() )); +} elsif ($cmdLine =~ /-(f|buildfile)\s+\S*$/) { + list( getBuildFiles($word) ); +} else { + list( restrict( $word, getTargets() )); +} + +exit(0); + +sub list { + for (@_) { + print "$_\n"; + } +} + +sub restrict { + my ($word, @completions) = @_; + grep( /^\Q$word\E/, @completions ); +} + +sub getArguments { + qw(-buildfile -debug -emacs -f -find -help -listener -logfile + -logger -projecthelp -quiet -verbose -version); +} + + +sub getBuildFiles { + my ($word) = @_; + grep( /\.xml$/, glob( "$word*" )); +} + +sub getTargets { + + # Look for build-file + my $buildFile = 'build.xml'; + if ($cmdLine =~ /-(f|buildfile)\s+(\S+)/) { + $buildFile = $2; + } + return () unless (-f $buildFile); + + # Run "ant -projecthelp" to list targets. Keep a cache of results in a + # cache-file. + my $cacheFile = $buildFile; + $cacheFile =~ s|(.*/)?(.*)|${1}.ant-targets-${2}|; + if ((!-e $cacheFile) || (-M $buildFile) < (-M $cacheFile)) { + open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n"; + open( HELP, "$antCmd -projecthelp -f '$buildFile'|" ) || return(); + my %targets; + while( ) { + if (/^\s+(\S+)/) { + $targets{$1}++; + } + } + my @targets = sort keys %targets; + for (@targets) { print CACHE "$_\n"; } + return @targets; + } + + # Read the target-cache + open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n"; + my @targets; + while () { + chop; + s/\r$//; # for Cygwin + push( @targets, $_ ); + } + close( CACHE ); + @targets; + +} + + + diff --git a/intermax/2208.06_type4/ant/bin/envset.cmd b/intermax/2208.06_type4/ant/bin/envset.cmd new file mode 100755 index 0000000..8fbd4dd --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/envset.cmd @@ -0,0 +1,130 @@ +/* + + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +SET environment variables +First optional parameter: + ; parameters are considered parts of a path variable, semicolons are + appended to each element if not already present + -D parameters are properties for Java or Makefile etc., -D will be + prepended and the parameters will be separated by a space + =D the same as above but equal sign is not required + , parameters should be comma separated in the environment variable + - parameters should be separated by the next parameter + Other values mean that the first parameter is missing and the environment + variable will be set to the space separated parameters + +Second parameter: name of the environment variable + +Next parameters: values +; implies that the equal sign is considered a part of the parameter and is +not interpreted + +-D requires parameters in the form name=value. If the equal sign is not found, +the parameters are changed to name=expanded_name + +Other options have optional equal sign. If it is found, only the part after +the equal sign will be oprionally expanded. + +If the parameter is the minus sign, the next parameter will not be expanded. +If the parameter is a single dot, it will be replaced with the value of the +environment variable as it existed before envset was invoked. + +For other parameters the batch looks for the environment variable with the +same name (in uppercase). If it is found, it forms the expanded_name. If +the environment variable with such a name does not exist, the expanded_name +will hold the parameter name without case conversion. +*/ + +parse arg mode envar args + +equal = 0 +sep = ' ' + +/* Parse command line parameters */ +select + when mode='-' then do + sep = envar + parse var args envar args + end + when mode=';' then do + sep = '' + equal = -1 + end + when mode='-D' then equal = 1 + when mode='=D' then mode = '-D' + when mode=',' then sep = ',' +otherwise + args = envar args + envar = mode + mode = '' +end + +env = 'OS2ENVIRONMENT' +envar = translate(envar) +orig = value(envar,,env) +newval = '' +expand = 1 + +/* for each parameter... */ +do i = 1 to words(args) + if expand > 0 & word(args, i) = '-' then expand = 0 + else call addval word(args, i) +end + +/* Optionally enclose path variable by quotes */ +if mode = ';' & pos(' ', newval) > 0 then newval = '"' || newval || '"' + +/* Set the new value, 'SET' cannot be used since it does not allow '=' */ +x = value(envar, newval, env) +exit 0 + +addval: procedure expose sep equal orig expand newval mode env +parse arg var + +if var = '.' then expvar = orig +else do + if equal >= 0 then do + parse var var name '=' val + if val = '' then var = name + else var = val + end + if expand = 0 then expvar = var + else expvar = value(translate(var),,env) + if expvar = '' then expvar = var + if equal >= 0 then do + if val = '' then do + parse var expvar key '=' val + if val <> '' then name = key + else do + if equal > 0 then val = key + else name = key + end + end + else val = expvar + if pos(' ', val) > 0 | pos('=', val) > 0 then val = '"' || val || '"' + if val = '' then expvar = name + else expvar = name || '=' || val + end + if mode = '-D' then expvar = '-D' || expvar + if mode = ';' then do + if right(expvar, 1) <> ';' then expvar = expvar || ';' + end +end + +if newval = '' then newval = expvar +else newval = newval || sep || expvar +expand = 1 +return diff --git a/intermax/2208.06_type4/ant/bin/lcp.bat b/intermax/2208.06_type4/ant/bin/lcp.bat new file mode 100755 index 0000000..6a1f679 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/lcp.bat @@ -0,0 +1,30 @@ +REM +REM Copyright 2001-2004 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +set _CLASSPATHCOMPONENT=%1 +if ""%1""=="""" goto gotAllArgs +shift + +:argCheck +if ""%1""=="""" goto gotAllArgs +set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 +shift +goto argCheck + +:gotAllArgs +set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% + diff --git a/intermax/2208.06_type4/ant/bin/runant.pl b/intermax/2208.06_type4/ant/bin/runant.pl new file mode 100755 index 0000000..eca4708 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/runant.pl @@ -0,0 +1,152 @@ +#!/usr/bin/perl +# +# Copyright 2000-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# runant.pl +# +# wrapper script for invoking ant in a platform with Perl installed +# this may include cgi-bin invocation, which is considered somewhat daft. +# (slo: that should be a separate file which can be derived from this +# and returns the XML formatted output) +# +# the code is not totally portable due to classpath and directory splitting +# issues. oops. (NB, use File::Spec::Functions will help and the code is +# structured for the catfile() call, but because of perl version funnies +# the code is not included. +# +# created: 2000-8-24 +# author: Steve Loughran steve_l@sourceforge.net +####################################################################### +# +# Assumptions: +# +# - the "java" executable/script is on the command path +# - ANT_HOME has been set +# - target platform uses ":" as classpath separator or perl indicates it is dos/win32 +# - target platform uses "/" as directory separator. + +#be fussy about variables +use strict; + +#platform specifics (disabled) +#use File::Spec::Functions; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info +my $debug=1; + +####################################################################### +# +# check to make sure environment is setup +# + +my $HOME = $ENV{ANT_HOME}; +if ($HOME eq "") + { + die "\n\nANT_HOME *MUST* be set!\n\n"; + } + +my $JAVACMD = $ENV{JAVACMD}; +$JAVACMD = "java" if $JAVACMD eq ""; + +my $onnetware = 0; +if ($^O eq "NetWare") +{ + $onnetware = 1; +} + +my $oncygwin = ($^O eq "cygwin"); + +#ISSUE: what java wants to split up classpath varies from platform to platform +#and perl is not too hot at hinting which box it is on. +#here I assume ":" 'cept on win32, dos, and netware. Add extra tests here as needed. +my $s=":"; +if(($^O eq "MSWin32") || ($^O eq "dos") || ($^O eq "cygwin") || + ($onnetware == 1)) + { + $s=";"; + } + +#build up standard classpath +my $localpath = "$HOME/lib/ant-launcher.jar"; +#set JVM options and Ant arguments, if any +my @ANT_OPTS=split(" ", $ENV{ANT_OPTS}); +my @ANT_ARGS=split(" ", $ENV{ANT_ARGS}); + +#jikes +if($ENV{JIKESPATH} ne "") + { + push @ANT_OPTS, "-Djikes.class.path=$ENV{JIKESPATH}"; + } + +#construct arguments to java +my @ARGS; +push @ARGS, @ANT_OPTS; + +my $CYGHOME = ""; + +my $classpath=$ENV{CLASSPATH}; +if ($oncygwin == 1) { + $localpath = `cygpath --path --windows $localpath`; + chomp ($localpath); + if (! $classpath eq "") + { + $classpath = `cygpath --path --windows "$classpath"`; + chomp ($classpath); + } + $HOME = `cygpath --path --windows $HOME`; + chomp ($HOME); + $CYGHOME = `cygpath --path --windows $ENV{HOME}`; + chomp ($CYGHOME); +} +push @ARGS, "-classpath", "$localpath"; +push @ARGS, "-Dant.home=$HOME"; +if ( ! $CYGHOME eq "" ) +{ + push @ARGS, "-Dcygwin.user.home=\"$CYGHOME\"" +} +push @ARGS, "org.apache.tools.ant.launch.Launcher", @ANT_ARGS; +push @ARGS, @ARGV; +if (! $classpath eq "") +{ + if ($onnetware == 1) + { + # make classpath literally $CLASSPATH + # this is to avoid pushing us over the 512 character limit + # even skip the ; - that is already in $localpath + push @ARGS, "-lib", "\$CLASSPATH"; + } + else + { + push @ARGS, "-lib", "$classpath"; + } +} +print "\n $JAVACMD @ARGS\n\n" if ($debug); + +my $returnValue = system $JAVACMD, @ARGS; +if ($returnValue eq 0) + { + exit 0; + } +else + { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; + } diff --git a/intermax/2208.06_type4/ant/bin/runant.py b/intermax/2208.06_type4/ant/bin/runant.py new file mode 100755 index 0000000..c7b53b6 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/runant.py @@ -0,0 +1,100 @@ +#!/usr/bin/python +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +""" + + runant.py + + This script is a translation of the runant.pl written by Steve Loughran. + It runs ant with/out arguments, it should be quite portable (thanks to + the python os library) + This script has been tested with Python2.0/Win2K + + created: 2001-04-11 + author: Pierre Dittgen pierre.dittgen@criltelecom.com + + Assumptions: + + - the "java" executable/script is on the command path +""" +import os, os.path, string, sys + +# Change it to 1 to get extra debug information +debug = 0 + +####################################################################### + +# If ANT_HOME is not set default to script's parent directory +if os.environ.has_key('ANT_HOME'): + ANT_HOME = os.environ['ANT_HOME'] +else: + ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) + +# set ANT_LIB location +ANT_LIB = os.path.join(ANT_HOME, 'lib') + +# set JAVACMD (check variables JAVACMD and JAVA_HOME) +JAVACMD = None +if not os.environ.has_key('JAVACMD'): + if os.environ.has_key('JAVA_HOME'): + if not os.path.exists(os.environ['JAVA_HOME']): + print "Warning: JAVA_HOME is not defined correctly." + else: + JAVACMD = os.path.join(os.environ['JAVA_HOME'], 'bin', 'java') + else: + print "Warning: JAVA_HOME not set." +else: + JAVACMD = os.environ['JAVACMD'] +if not JAVACMD: + JAVACMD = 'java' + +launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar') +if not os.path.exists(launcher_jar): + print 'Unable to locate ant-launcher.jar. Expected to find it in %s' % \ + ANT_LIB + +# Build up standard classpath (LOCALCLASSPATH) +LOCALCLASSPATH = launcher_jar +if os.environ.has_key('LOCALCLASSPATH'): + LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH'] + +ANT_OPTS = "" +if os.environ.has_key('ANT_OPTS'): + ANT_OPTS = os.environ['ANT_OPTS'] + +OPTS = "" +if os.environ.has_key('JIKESPATH'): + OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH'] + +ANT_ARGS = "" +if os.environ.has_key('ANT_ARGS'): + ANT_ARGS = os.environ['ANT_ARGS'] + +CLASSPATH = "" +if os.environ.has_key('CLASSPATH'): + CLASSPATH = os.environ['CLASSPATH'] + +# Builds the commandline +cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \ + 'org.apache.tools.ant.launch.Launcher %s -lib %s %s') \ + % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \ + CLASSPATH, string.join(sys.argv[1:], ' ')) + +if debug: + print '\n%s\n\n' % (cmdline) + +# Run the biniou! +os.system(cmdline) diff --git a/intermax/2208.06_type4/ant/bin/runrc.cmd b/intermax/2208.06_type4/ant/bin/runrc.cmd new file mode 100755 index 0000000..acdf724 --- /dev/null +++ b/intermax/2208.06_type4/ant/bin/runrc.cmd @@ -0,0 +1,59 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run RC file, name is in the first arg, second arg is either PATH + ENV or -r or nothing +*/ + +parse arg name path rest + +if name = '' then do + say 'RC file name is missing' + exit 1 +end + +if rest \= '' then do + say 'Too many parameters' + exit 1 +end + +call runit name path +exit 0 + +runit: procedure +parse arg name path dir + +if path \= '' & path \= '-r' then do + dir = value(translate(path),,'OS2ENVIRONMENT') + if dir = '' then return + dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */ +end + +if dir = '' then dir = directory() + +if path = '-r' then do /* recursive call */ + subdir = filespec('path', dir) + if subdir \= '\' then do + subdir = left(subdir, length(subdir)-1) + call runit name path filespec('drive', dir) || subdir + end +end + +/* Look for the file and run it */ +if right(dir, 1) \= '\' then dir = dir || '\' +rcfile = stream(dir || name, 'c', 'query exists') +if rcfile \= '' then interpret 'call "' || rcfile || '"' + +return diff --git a/intermax/2208.06_type4/ant/lib/README b/intermax/2208.06_type4/ant/lib/README new file mode 100755 index 0000000..38fa1fa --- /dev/null +++ b/intermax/2208.06_type4/ant/lib/README @@ -0,0 +1,14 @@ +Please refer to the Ant manual under Installing Ant / Library +Dependencies for a list of the jar requirements for various optional +tasks and features. + +This directory contains xercesImpl.jar from the 2.6.2 release of +Apache Xerces. For more information or newer releases see +. See the file LICENSE.xerces for +the terms of distribution. + +It also contains xml-apis.jar from the 2.6.2 release of Apache Xerces. +For more information or newer releases see +. See the files LICENSE.dom and +LICENSE.sax for the terms of distribution. + diff --git a/intermax/2208.06_type4/ant/lib/ant-antlr.jar b/intermax/2208.06_type4/ant/lib/ant-antlr.jar new file mode 100755 index 0000000..167ac03 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-antlr.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-apache-bcel.jar b/intermax/2208.06_type4/ant/lib/ant-apache-bcel.jar new file mode 100755 index 0000000..faa7e9a Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-apache-bcel.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-apache-bsf.jar b/intermax/2208.06_type4/ant/lib/ant-apache-bsf.jar new file mode 100755 index 0000000..c2dca5e Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-apache-bsf.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-apache-oro.jar b/intermax/2208.06_type4/ant/lib/ant-apache-oro.jar new file mode 100755 index 0000000..cc25252 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-apache-oro.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-apache-regexp.jar b/intermax/2208.06_type4/ant/lib/ant-apache-regexp.jar new file mode 100755 index 0000000..08b8ec7 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-apache-regexp.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-apache-resolver.jar b/intermax/2208.06_type4/ant/lib/ant-apache-resolver.jar new file mode 100755 index 0000000..7f06173 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-apache-resolver.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-commons-logging.jar b/intermax/2208.06_type4/ant/lib/ant-commons-logging.jar new file mode 100755 index 0000000..8967cb2 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-commons-logging.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-commons-net.jar b/intermax/2208.06_type4/ant/lib/ant-commons-net.jar new file mode 100755 index 0000000..7c1d881 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-commons-net.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-icontract.jar b/intermax/2208.06_type4/ant/lib/ant-icontract.jar new file mode 100755 index 0000000..c30513d Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-icontract.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-jai.jar b/intermax/2208.06_type4/ant/lib/ant-jai.jar new file mode 100755 index 0000000..3b14cb3 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-jai.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-javamail.jar b/intermax/2208.06_type4/ant/lib/ant-javamail.jar new file mode 100755 index 0000000..10ca5ec Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-javamail.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-jdepend.jar b/intermax/2208.06_type4/ant/lib/ant-jdepend.jar new file mode 100755 index 0000000..bbd20b8 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-jdepend.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-jmf.jar b/intermax/2208.06_type4/ant/lib/ant-jmf.jar new file mode 100755 index 0000000..a293dfc Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-jmf.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-jsch.jar b/intermax/2208.06_type4/ant/lib/ant-jsch.jar new file mode 100755 index 0000000..e8fdabd Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-jsch.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-junit.jar b/intermax/2208.06_type4/ant/lib/ant-junit.jar new file mode 100755 index 0000000..5ee4f7f Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-junit.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-launcher.jar b/intermax/2208.06_type4/ant/lib/ant-launcher.jar new file mode 100755 index 0000000..1a71612 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-launcher.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-netrexx.jar b/intermax/2208.06_type4/ant/lib/ant-netrexx.jar new file mode 100755 index 0000000..f0bd1d8 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-netrexx.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-nodeps.jar b/intermax/2208.06_type4/ant/lib/ant-nodeps.jar new file mode 100755 index 0000000..3e0e5d4 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-nodeps.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-starteam.jar b/intermax/2208.06_type4/ant/lib/ant-starteam.jar new file mode 100755 index 0000000..5848616 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-starteam.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-stylebook.jar b/intermax/2208.06_type4/ant/lib/ant-stylebook.jar new file mode 100755 index 0000000..c2e174e Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-stylebook.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-swing.jar b/intermax/2208.06_type4/ant/lib/ant-swing.jar new file mode 100755 index 0000000..c85ec08 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-swing.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-trax.jar b/intermax/2208.06_type4/ant/lib/ant-trax.jar new file mode 100755 index 0000000..f4e1540 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-trax.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-vaj.jar b/intermax/2208.06_type4/ant/lib/ant-vaj.jar new file mode 100755 index 0000000..f79e4de Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-vaj.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-weblogic.jar b/intermax/2208.06_type4/ant/lib/ant-weblogic.jar new file mode 100755 index 0000000..ca0b4c7 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-weblogic.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-xalan1.jar b/intermax/2208.06_type4/ant/lib/ant-xalan1.jar new file mode 100755 index 0000000..433ca68 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-xalan1.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant-xslp.jar b/intermax/2208.06_type4/ant/lib/ant-xslp.jar new file mode 100755 index 0000000..f69f4b2 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant-xslp.jar differ diff --git a/intermax/2208.06_type4/ant/lib/ant.jar b/intermax/2208.06_type4/ant/lib/ant.jar new file mode 100755 index 0000000..3beb3b8 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/ant.jar differ diff --git a/intermax/2208.06_type4/ant/lib/aspectjtools.jar b/intermax/2208.06_type4/ant/lib/aspectjtools.jar new file mode 100755 index 0000000..d47c6e7 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/aspectjtools.jar differ diff --git a/intermax/2208.06_type4/ant/lib/aspectjweaver.jar b/intermax/2208.06_type4/ant/lib/aspectjweaver.jar new file mode 100755 index 0000000..f38b151 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/aspectjweaver.jar differ diff --git a/intermax/2208.06_type4/ant/lib/xercesImpl.jar b/intermax/2208.06_type4/ant/lib/xercesImpl.jar new file mode 100755 index 0000000..f0fb0e8 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/xercesImpl.jar differ diff --git a/intermax/2208.06_type4/ant/lib/xml-apis.jar b/intermax/2208.06_type4/ant/lib/xml-apis.jar new file mode 100755 index 0000000..2dd8377 Binary files /dev/null and b/intermax/2208.06_type4/ant/lib/xml-apis.jar differ diff --git a/intermax/2208.06_type4/jspd/bin/imxctl.bat b/intermax/2208.06_type4/jspd/bin/imxctl.bat new file mode 100755 index 0000000..d0e1d9d --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxctl.bat @@ -0,0 +1,68 @@ +@echo off + +rem CURPATH +rem ModuleName +rem param + +set CURPATH=%cd% +set argc=0 + +:ModuleSelect +cls +echo Input Module (osm ^| txn ^| uts ^| dbm) +set /p param=-^> + +IF %param% == osm ( + goto moduleSet +) +IF %param% == txn ( + goto moduleSet +) +IF %param% == uts ( + goto moduleSet +) +IF %param% == dbm ( + goto moduleSet +) ELSE ( + echo Wrong ModuleName. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto ModuleSelect +) + +:moduleSet +set ModuleName=imx%param% + +:OptionSelect +cls +echo Input Option (stop) +set /p param=-^> + +IF %param% == stop ( + cd ../data/agent + goto stop +) ELSE ( + echo Wrong Option Command. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto OptionSelect +) + +:stop +IF exist %ModuleName% ( + ren %ModuleName% %ModuleName%.stoped + echo %ModuleName% stop! + goto end +) ELSE ( + echo %ModuleName% is not exist! + goto end +) + + + +:end +cd %CURPATH% +pause + diff --git a/intermax/2208.06_type4/jspd/bin/imxctl.sh b/intermax/2208.06_type4/jspd/bin/imxctl.sh new file mode 100755 index 0000000..fe8b935 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxctl.sh @@ -0,0 +1,95 @@ +#!/bin/sh + + + +Usage() +{ + echo "" + echo "$0 [option ...]" + echo " --stop=[osm|txn|uts] Input osm, txn, and uts, separated by commas." + echo " If there is no value input, the entire process-" + echo " is terminated." + echo " (ex. --stop or --stop=txn,uts)" + echo "" + + exit 1 +} + + + + + +BASE_DIR=`pwd` + +if [ -z "${INTERMAX_HOME}" ];then + if [ ! -f "${BASE_DIR}/imxctl.sh" ];then + echo "Please run it from imxctl.sh file location." + exit 2 + fi + cd .. + INTERMAX_HOME=`pwd` +fi + +cd ${INTERMAX_HOME} +echo "INTERMAX_HOME[${INTERMAX_HOME}]" + + +if [ -z "$1" ];then + Usage +fi + + +for i in $@ +do + echo "${i}" + + case "$i" in + --stop=*) + STOP_LIST=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --stop) + STOP_LIST="osm,txn,uts" + ;; + + *) + Usage + ;; + esac + +done + +if [ -n "${STOP_LIST}" ];then + + STOP_LIST=`echo "${STOP_LIST}" | sed 's/,/ /g'` + # STOP_LIST=`echo "${STOP_LIST}" | awk -F',' '{print $1" "$2" "$3}'` + + # 丮 ˻Ѵ. + if [ ! -d "${INTERMAX_HOME}/data/agent" ];then + echo "pid directory is not exist.[${INTERMAX_HOME}/data/agent]" + Usage + fi + + # Check imx list + for STOP_IMX in ${STOP_LIST} + do + if [ "${STOP_IMX}" != "osm" ] && [ "${STOP_IMX}" != "txn" ] && [ "${STOP_IMX}" != "uts" ];then + echo "imx name is wrong." + Usage + fi + done + + # Stop imx + for STOP_IMX in ${STOP_LIST} + do + if [ -f "${INTERMAX_HOME}/data/agent/imx${STOP_IMX}" ];then + echo "--> imx${STOP_IMX} stop!" + # echo "mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped" + mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped + else + echo "--> imx${STOP_IMX} is not running" + fi + done + +fi + +exit 0 diff --git a/intermax/2208.06_type4/jspd/bin/imxtxnd.bat b/intermax/2208.06_type4/jspd/bin/imxtxnd.bat new file mode 100755 index 0000000..b1c2e31 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxtxnd.bat @@ -0,0 +1,39 @@ +@echo off + +setlocal + +pushd "%~dp0" + +if "%INTERMAX_HOME%" == "" ( + echo please check INTERMAX_HOME. + exit /b 1 +) + +if "%1" == "" ( + echo please check option[--install^|--uninstall]. + exit /b 1 +) + + + +set MODULE_DIR=%INTERMAX_HOME%\lib\imx +set MODULE_NAME=imxtxn +set SERVICE_NAME=IMXTXN + +set EXEC_NAME=%MODULE_NAME%_win_64.exe + +set XMSVCMGR=%INTERMAX_HOME%\tools\XmSvcMgr\XmSvcMgr_x64.exe + + +if "%1" == "--install" ( + %XMSVCMGR% -i -p "%MODULE_DIR%" -f "%EXEC_NAME%" -a "-H %INTERMAX_HOME%" -n "%SERVICE_NAME%" -s "Intermax %MODULE_NAME%" +) + +if "%1" == "--uninstall" ( + %XMSVCMGR% -u -f "%EXEC_NAME%" -n "%MODULE_NAME%" +) + +endlocal + +@pause + diff --git a/intermax/2208.06_type4/jspd/bin/imxtxnd.sh b/intermax/2208.06_type4/jspd/bin/imxtxnd.sh new file mode 100755 index 0000000..8c730c7 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxtxnd.sh @@ -0,0 +1,415 @@ +#!/bin/sh + +# set log path(default) +# WORKING_DIRECOTYR=`pwd` +# LOG_PATH="${WORKING_DIRECOTYR}/temp_imxtxnd.log" + +# $1: log filename, $2: log limit size +func_check_log_file() +{ + LOG_CHK_SIZE=1048576 + if [ -n "$2" ];then + LOG_CHK_SIZE=$2 + fi + + if [ -f "$1" ];then + + LOG_SIZE=`ls -la $1 | awk -F' ' '{print $5}'` + if [ $? -eq 0 ]; then + + if [ ${LOG_SIZE} -gt ${LOG_CHK_SIZE} ]; then + if [ -f $1.bak ];then + rm -rf $1.bak + fi + + mv $1 $1.bak +# rm -rf $1 +# echo "log size is over. remove log file.[size:${LOG_SIZE},file:$1]" + fi + + fi + + fi + +} + +# $1: log filename $2: log string +func_log() +{ + CUR_DATE=`date +%Y%m%d.%H%M%S` + + # nfs ȯ濡 Ѱ ġ Ͽ ٸ + # imxtxnd ׳ ǹ. + + if [ -n "$1" ]; + then + func_check_log_file "$1" 10240 + echo "${CUR_DATE}[${RUN_MODE}] $2" >> "$1" + else + echo "${CUR_DATE}[${RUN_MODE}] $2" + fi +} + +FUNC_RESULT="" + +# $1: pid, $2: check process name +func_is_running_process() +{ + if [ -z "$1" ]; + then + func_log "" "pid is wrong." + FUNC_RESULT="false" + return + fi + + PROC_NAME=`ps -p $1 -o args= | awk -F' ' '{print $1}'` + + func_log "" "EXEC_PID[$1],PROC_NAME[${PROC_NAME}]" + if [ "${PROC_NAME}" = "$2" ]; + then + FUNC_RESULT="true" + else + FUNC_RESULT="false" + fi +} + +# $1: exit code, $2: message +func_usage_exit() +{ + if [ -n "$2" ]; + then + echo "$2" + fi + + echo "imxtxnd [options]" + echo "options:" + echo " --[install|uninstall|continue|daemon]" + echo " install: Start imxtxn as a new daemon." + echo " uninstall: Start Terminate running imxtxn." + echo " continue: Continuing from imxtxn already running." + echo " daemon: Starts as a standalone daemon.(default)" + echo " --set-home=[directory] Set the InterMax home directory." + echo " (default:current direcotry)" + echo " --bit=[32|64] Set 32 or 64 bit.(default:64)" + echo "" + + exit $1 +} + + +########################################## +# option +SELF_PROC_PATH="$0" +if [ -n "$1" ]; +then + + for i in $@ + do + + echo "$i" + + case "$i" in + --install) + RUN_MODE="install" + ;; + --uninstall) + RUN_MODE="uninstall" + ;; + --continue) + RUN_MODE="continue" + ;; + --daemon) + RUN_MODE="daemon" + ;; + --set-home=*) + ENV_INTERMAX_HOME=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --bit=*) + ENV_BIT=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --help) + func_usage_exit 0 + ;; + *) + func_usage_exit 1 "option is wrong." + ;; + esac + done +fi + +########################################## + + +########################################## +# os +# linux ׽Ʈ غ +OS_NAME=`uname -s` +case $OS_NAME in + "HP-UX" ) + ARCH=`uname -m` + if [ ! "${ARCH}" = "ia64" ]; + then + func_log "${LOG_PATH}" "${ARCH} is not support." + exit 1 + fi + ENV_OS_TYPE=hpia + UNIX95=1 + ;; + "SunOS" ) + ENV_OS_TYPE=sun + ;; + "AIX" ) + ENV_OS_TYPE=aix + ;; + "Linux" ) + ENV_OS_TYPE=linux + # ENV_OS_TYPE=sun + ;; + * ) + func_log "${LOG_PATH}" "Unkown OS Name[$OS_NAME]" + exit 1 + ;; +esac + +########################################## + +########################################## +# set default bit +if [ "${ENV_BIT}" = "" ]; +then + # default 64 bit + ENV_BIT=64 +fi +########################################## + +########################################## +# set default run mode +if [ "${RUN_MODE}" = "" ]; +then + # default 64 bit + RUN_MODE="daemon" +fi +########################################## + + +########################################## +# set intermax home directory +# 1. input option +# 2. environment INTERMAX_HOME +# 3. current directory + +if [ ! "${ENV_INTERMAX_HOME}" = "" ]; +then + INTERMAX_HOME="${ENV_INTERMAX_HOME}" + export INTERMAX_HOME +fi + +if [ "${INTERMAX_HOME}" = "" ]; +then + # set current direcotry base + CUR_DIR=`pwd` + cd .. + INTERMAX_HOME=`pwd` + export INTERMAX_HOME + cd ${CUR_DIR} +fi +########################################## + + + +########################################## +# check intermax home directory +if [ ! -d ${INTERMAX_HOME}/lib/imx ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +# ̰ ؾ ϳ.. ϴ ó +if [ ! -d ${INTERMAX_HOME}/data/agent ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +########################################## + + + +########################################## +# reset log path & chagne directory to InterMax home + +# cd ${INTERMAX_HOME} +func_log "${LOG_PATH}" "InterMax Home Directory [${INTERMAX_HOME}]" + +# α׸ ȭ鿡 ϵ Ѵ. +LOG_PATH="${INTERMAX_HOME}/log/imxtxnd.log" + +########################################## + +########################################## +# set execute process path + +EXEC_PROCESS="${INTERMAX_HOME}/lib/imx/imxtxn" +# echo "execute process path[${EXEC_PROCESS}]" +func_log "${LOG_PATH}" "execute process path[${EXEC_PROCESS}]" + +PROC_PID_PATH=${INTERMAX_HOME}/data/agent/imxtxn +func_log "${LOG_PATH}" "PROC_PID_PATH[$PROC_PID_PATH]" +########################################## + +########################################## +# copy imxtxn(if not exist) +if [ ! -f ${EXEC_PROCESS} ]; +then + cp ${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} ${EXEC_PROCESS} + if [ ! "$?" = "0" ]; + then + func_log "${LOG_PATH}" "${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} is not exist." + exit 3 + fi +fi +########################################## + +########################################## +# check config + +# test command(0 or 1) +# sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' cfg/agent/imx.prop | awk -F'=' '{if($2=="1") exit(0); else exit(1);}'; echo "$?" +CMD_RESULT=`sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' ${INTERMAX_HOME}/cfg/agent/imx.prop` +if [ ! "$?" = "0" ]; +then + echo "check please - imx config file(imx.prop)" + exit 1 +fi + +CFG_ENABLE_TXN_STANDALONE=`echo "${CMD_RESULT}" | awk -F'=' '{print $2}'` +if [ ! "${CFG_ENABLE_TXN_STANDALONE}" = "1" ]; +then + echo "check please - ENABLE_TXN_STANDALONE option in imx.prop(value:${CFG_ENABLE_TXN_STANDALONE})" + exit 1 +fi + +echo "ENABLE_TXN_STANDALONE config checked." +########################################## + +########################################## +# run process + +# stop mode INTERMAX_HOME ʿϿ ⿡ install, uninstall óѴ. +case ${RUN_MODE} in +"install") + if [ -f "${PROC_PID_PATH}" ]; + then + func_is_running_process \ + `cat ${PROC_PID_PATH}` \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "true" ]; + then + echo "imxtxnd - imxtxn is already running." + echo "imxtxnd - Rerun imxtxnd with run mode \"continue\"." + func_log "" "imxtxnd - imxtxn is already running." + func_log "" "imxtxnd - 'imxtxnd --stop' or delete '${INTERMAX_HOME}/data/agent/imxtxnd.pid'" + exit 1 + fi + fi + + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - installed[$!]" + func_log "${LOG_PATH}" "imxtxnd - installed[$!]" + + exit 0 + ;; + +"continue") + TEMP_STR="" + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + TEMP_PID=`cat ${INTERMAX_HOME}/data/agent/imxtxnd.pid` + TEMP_STR=`ps -p ${TEMP_PID} | grep imxtxnd` + fi + + if [ -n "${TEMP_STR}" ]; + then + func_log "" "${TEMP_STR}" + func_log "" "imxtxnd - imxtxnd is not running." + exit 1 + fi + + # imxtxnd ¿ imxtxn + # imxtxn ״ Ѵ. + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - continue[$!]" + func_log "${LOG_PATH}" "imxtxnd - continue[$!]" + + exit 0 + ;; + +"uninstall") + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + rm -rf ${INTERMAX_HOME}/data/agent/imxtxnd.pid + fi + + if [ -f "${PROC_PID_PATH}" ]; + then + rm -rf ${PROC_PID_PATH} + func_log "${LOG_PATH}" "imxtxnd - uninstall" + else + func_log "${LOG_PATH}" "imxtxnd - imxtxn is not running." + fi + exit 0 + ;; +"daemon") + func_log "${LOG_PATH}" "imxtxnd daemon" + ;; +esac +########################################## + + + + +########################################## +# run imxtxn +if [ ! -f "${PROC_PID_PATH}" ]; +then + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + sleep 3 +fi + +if [ ! -f "${PROC_PID_PATH}" ]; +then + func_log "${LOG_PATH}" "execute process has failed.[${EXEC_PROCESS}]" + exit 4 +fi + +PROC_NAME="" +while [ -f "${PROC_PID_PATH}" ] +do + echo "PROC_PID_PATH[${PROC_PID_PATH}][$EXEC_PROCESS]" + PROC_PID=`cat ${PROC_PID_PATH}` + echo "PROC_PID[${PROC_PID}]" + + func_is_running_process \ + "${PROC_PID}" \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "false" ]; + then + func_log "${LOG_PATH}" "process is not running." + # run process + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + fi + + sleep 3 + +done +########################################## + + +func_log "${LOG_PATH}" "imxtxnd end" diff --git a/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmInstall.bat b/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmInstall.bat new file mode 100755 index 0000000..d2c2771 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmInstall.bat @@ -0,0 +1,30 @@ +setlocal EnableDelayedExpansion + +pushd "%~dp0" + +set CURRENTDIR=%cd% + +cd ..\.. + +set INTERMAX_HOME=%cd% + +cd .\lib + +set LIB_DIR=%cd% + +set "JAVA_OPTION=-Xms256m -Xmx256m" +set "JAVA_OPTION=%JAVA_OPTION% -server" +set "JAVA_OPTION=%JAVA_OPTION% -DINTERMAX_HOME=%INTERMAX_HOME%" +set "JAVA_OPTION=%JAVA_OPTION% -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=%INTERMAX_HOME%" +set "JAVA_OPTION=%JAVA_OPTION% -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000" +set "JAVA_OPTION=%JAVA_OPTION% -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +set CLASSPATH=%LIB_DIR%\imxwsm.jar +for /R %LIB_DIR%\libs %%a in (*.jar) do ( +set CLASSPATH=!CLASSPATH!;%%a +) +set CLASSPATH=!CLASSPATH! + +%LIB_DIR%\JavaService -install "IMXWSM" "%JAVA_HOME%\jre\bin\server\jvm.dll" -Djava.class.path=%CLASSPATH% %JAVA_OPTION% -start com.exem.imx.wsm.Main -current %CURRENTDIR% -description "EXEM IMXWSM" +rem -out %CURRENTDIR%\out.log -err %CURRENTDIR%\err.log +pause \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmUninstall.bat b/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmUninstall.bat new file mode 100755 index 0000000..158b53f --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/imxwsmInstall/imxwsmUninstall.bat @@ -0,0 +1,12 @@ +setlocal + +rem FOR /F %%I IN ("%0") DO SET CURRENTDIR=%%~dpI +rem cd %CURRENTDIR% +pushd "%~dp0" + +cd ..\..\lib + +%cd%\JavaService.exe -uninstall "IMXWSM" + +pause + diff --git a/intermax/2208.06_type4/jspd/bin/launcher.bat b/intermax/2208.06_type4/jspd/bin/launcher.bat new file mode 100755 index 0000000..5950a87 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/launcher.bat @@ -0,0 +1,17 @@ +rem @echo off + +pushd "%~dp0" +set CURRENTDIR=%cd% +cd ..\ +set JSPD_HOME=%cd% + +set JAVA_HOME=%JAVA_HOME% + +set JAVA_OPTS=-Djspd.home=%JSPD_HOME% +set JAVA_OPTS=%JAVA_OPTS% -Djspd.jar=%JSPD_HOME%\lib\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd.jar=%JSPD_HOME%\lib\patch\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-common.jar=%JSPD_HOME%\lib\patch\jspd-common.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-pool.jar=%JSPD_HOME%\lib\patch\jspd-pool.jar +cd %CURRENTDIR% + +"%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%JAVA_HOME%\lib\tools.jar;%JSPD_HOME%\lib\libs\*;%JSPD_HOME%\lib\jspd-launcher.jar" com.exem.jspd.launcher.Main %1 %2 %3 diff --git a/intermax/2208.06_type4/jspd/bin/launcher.sh b/intermax/2208.06_type4/jspd/bin/launcher.sh new file mode 100755 index 0000000..9d35da4 --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/launcher.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +JAVA_HOME=$JAVA_HOME +cd ../ +JSPD_HOME=`pwd` + +JAVA_OPTS="-Djspd.home=$JSPD_HOME" +JAVA_OPTS="$JAVA_OPTS -Djspd.jar=$JSPD_HOME/lib/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd.jar=$JSPD_HOME/lib/patch/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-common.jar=$JSPD_HOME/lib/patch/jspd-common.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-pool.jar=$JSPD_HOME/lib/patch/jspd-pool.jar" + +$JAVA_HOME/bin/java $JAVA_OPTS -classpath $JAVA_HOME/lib/tools.jar:$JSPD_HOME/lib/jspd-launcher.jar:$JSPD_HOME/lib/libs/* com.exem.jspd.launcher.Main $1 $2 $3 diff --git a/intermax/2208.06_type4/jspd/bin/startwsm.bat b/intermax/2208.06_type4/jspd/bin/startwsm.bat new file mode 100755 index 0000000..79842ba --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/startwsm.bat @@ -0,0 +1,25 @@ +setlocal + +cd .. + +set INTERMAX_HOME=%cd% +echo %INTERMAX_HOME% + +cd %INTERMAX_HOME% + +set "JAVA_OPTION=-Xms256m -Xmx256m" +set "JAVA_OPTION=%JAVA_OPTION% -server" +set "JAVA_OPTION=%JAVA_OPTION% -DINTERMAX_HOME=%INTERMAX_HOME%" + +set "JAVA_OPTION=%JAVA_OPTION% -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=%INTERMAX_HOME%" + +set "JAVA_OPTION=%JAVA_OPTION% -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000" +rem set JAVA_OPTION="$JAVA_OPTION -XX:+UseParNewGC -XX:+UseConcMarkSweepGC" +set "JAVA_OPTION=%JAVA_OPTION% -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +rem for debugging only. +rem set JAVA_OPTION="%JAVA_OPTION% -ea" +rem set JAVA_OPTION="%JAVA_OPTION% -Dio.netty.leakDetectionLevel=PARANOID" +rem set JAVA_OPTION="%JAVA_OPTION% -XX:NativeMemoryTracking=summary" + +java -Dimxwsm.jar %JAVA_OPTION% -classpath %INTERMAX_HOME%\lib\imxwsm.jar;%INTERMAX_HOME%\lib\libs\* com.exem.imx.wsm.Main diff --git a/intermax/2208.06_type4/jspd/bin/startwsm.sh b/intermax/2208.06_type4/jspd/bin/startwsm.sh new file mode 100755 index 0000000..749667c --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/startwsm.sh @@ -0,0 +1,163 @@ +#!/bin/sh +CUR_DIR=`pwd` +INTERMAX_HOME=`dirname $CUR_DIR` + +print_n_exit() +{ + echo $1 + exit $2 +} + + +################################################################ +# set libpcap + +OS_NAME=`uname -s` + +ENV_BIT="$1" +if [ "${ENV_BIT}" = "" ]; +then + ENV_BIT="64" +fi + +if [ "$OS_NAME" = "AIX" ]; +then + ENV_BIT=`getconf -a | grep KERNEL_BITMODE | awk -F' ' '{print $2}'` + ENV_OS_NAME="aix" + OS_VER=`uname -v` + OS_RELEASE=`uname -r` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + if [ "$ENV_OS_VER" != "7.2" ]; then + ENV_OS_VER="5.3" + fi + + ENV_CPU=`uname -p` + + if [ "$ENV_CPU" = "powerpc" ]; then + ENV_CPU="powerpc" + else + echo "[$ENV_CPU] is not support" + exit 0 + fi + + ENV_LIB_PCAP_VER="1.7.4" + if [ "$ENV_OS_VER" != "7.2" ]; then + ENV_LIB_PCAP_VER="1.6.1" + fi + +elif [ "$OS_NAME" = "Linux" ]; +then + ENV_OS_NAME="linux" + OS_VER=`uname -r | awk -F'.' '{print $1}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $2}'` + # ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_OS_VER="2.6" + ENV_CPU=`uname -m` + + # ENV_LIB_PCAP_VER="1.7.4" + ENV_LIB_PCAP_VER="1.8.1" + if [ "${ENV_BIT}" = "32" ]; + then + ENV_LIB_PCAP_VER="1.7.4" + fi + +elif [ "$OS_NAME" = "SunOS" ]; +then + ENV_OS_NAME="sunos" + OS_VER=`uname -r | awk -F'.' '{print $1}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $2}'` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_CPU=`uname -p` + + if [ ${OS_VER} -eq 5 ] && [ ${OS_RELEASE} -gt 10 ];then + ENV_LIB_PCAP_VER="1.8.1" + else + ENV_LIB_PCAP_VER="1.7.4" + fi + +elif [ "$OS_NAME" = "HP-UX" ]; +then + ENV_OS_NAME="hpux" + OS_VER=`uname -r | awk -F'.' '{print $2}'` + OS_RELEASE=`uname -r | awk -F'.' '{print $3}'` + ENV_OS_VER="${OS_VER}.${OS_RELEASE}" + ENV_CPU=`uname -m` + + ENV_LIB_PCAP_VER="1.8.1" + +else + print_n_exit "$OS_NAME is not support!" 0 +fi + +if [ "$OS_NAME" = "AIX" ] && [ "$ENV_BIT" = "64" ]; +then + cp ${INTERMAX_HOME}/lib/jni/libjni_pcap_aix_64.so.${ENV_OS_VER} ${INTERMAX_HOME}/lib/jni/libjni_pcap_aix_64.so +elif [ "$OS_NAME" = "SunOS" ]; +then + ln -s libjni_pcap_sun_${ENV_BIT}.so.${ENV_OS_VER} ${INTERMAX_HOME}/lib/jni/libjni_pcap_sun_${ENV_BIT}.so +fi + +if [ "$OS_NAME" = "AIX" ]; +then + LIB_PCAP_NAME="libpcap.a.${ENV_LIB_PCAP_VER}-${ENV_OS_NAME}-${ENV_OS_VER}-${ENV_CPU}-${ENV_BIT}" + LIB_PCAP_NAME_LINK="libpcap.a" +else + LIB_PCAP_NAME="libpcap.so.${ENV_LIB_PCAP_VER}-${ENV_OS_NAME}-${ENV_OS_VER}-${ENV_CPU}-${ENV_BIT}" + LIB_PCAP_NAME_LINK="libpcap.so.1" +fi + +cd ${INTERMAX_HOME}/lib/jni/lib + +if [ ! -f "${LIB_PCAP_NAME}" ]; then + echo "${LIB_PCAP_NAME} is not exist" + exit 0 +fi + +if [ ! -f "${LIB_PCAP_NAME_LINK}" ]; then + ln -s ${LIB_PCAP_NAME} ${LIB_PCAP_NAME_LINK} + if [ $? != 0 ]; then + echo "link[${LIB_PCAP_NAME}] has failed" + exit 0 + fi +fi + +cd ${CUR_DIR} + +if [ "$OS_NAME" = "AIX" ]; +then + export LIBPATH=${INTERMAX_HOME}/lib/jni/lib:$LIBPATH + echo $LIBPATH +else + LD_LIBRARY_PATH=${INTERMAX_HOME}/lib/jni/lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + echo $LD_LIBRARY_PATH +fi +env +# set libpcap +################################################################### + + + +pid=`ps -ef | grep imxwsm.jar | grep java | awk '{print $2}'` +if [ "$pid" != "" ] +then + kill -9 $pid +fi + +cd $INTERMAX_HOME +JAVA_OPTION=" -Xms256m -Xmx256m" +JAVA_OPTION="$JAVA_OPTION -server" +JAVA_OPTION="$JAVA_OPTION -DINTERMAX_HOME=$INTERMAX_HOME" + +JAVA_OPTION="$JAVA_OPTION -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=$INTERMAX_HOME " + +JAVA_OPTION="$JAVA_OPTION -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1HeapRegionSize=10m -XX:InitiatingHeapOccupancyPercent=45 -XX:MaxGCPauseMillis=2000 " +#JAVA_OPTION="$JAVA_OPTION -XX:+UseParNewGC -XX:+UseConcMarkSweepGC" +JAVA_OPTION="$JAVA_OPTION -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=60" + +# for debugging only. +#JAVA_OPTION="$JAVA_OPTION -ea" +#JAVA_OPTION="$JAVA_OPTION -Dio.netty.leakDetectionLevel=PARANOID" +#JAVA_OPTION="$JAVA_OPTION -XX:NativeMemoryTracking=summary" + +java -d64 -Dimxwsm.jar $JAVA_OPTION -classpath $INTERMAX_HOME/lib/imxwsm.jar:$INTERMAX_HOME/lib/libs/* com.exem.imx.wsm.Main & diff --git a/intermax/2208.06_type4/jspd/bin/stopwsm.sh b/intermax/2208.06_type4/jspd/bin/stopwsm.sh new file mode 100755 index 0000000..a3167cc --- /dev/null +++ b/intermax/2208.06_type4/jspd/bin/stopwsm.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +pid=`ps -ef | grep imxwsm.jar | grep java | awk '{print $2}'` +if [ "$pid" != "" ] +then + kill -9 $pid +fi + diff --git a/intermax/2208.06_type4/jspd/build-ext/build.bat b/intermax/2208.06_type4/jspd/build-ext/build.bat new file mode 100755 index 0000000..2e99da6 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/build.bat @@ -0,0 +1,6 @@ +set JAVA_HOME= +set JAVA_VERSION= +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant -DJAVA_HOME="%JAVA_HOME%" -DJAVA_VERSION="%JAVA_VERSION%" %1 diff --git a/intermax/2208.06_type4/jspd/build-ext/build.sh b/intermax/2208.06_type4/jspd/build-ext/build.sh new file mode 100755 index 0000000..354fb8e --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/build.sh @@ -0,0 +1,7 @@ +export JAVA_HOME= +export JAVA_VERSION= +export ANT_HOME=../../ant +export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$PATH + +ant -DJAVA_HOME="$JAVA_HOME" -DJAVA_VERSION="$JAVA_VERSION" $1 + diff --git a/intermax/2208.06_type4/jspd/build-ext/build.xml b/intermax/2208.06_type4/jspd/build-ext/build.xml new file mode 100755 index 0000000..618d02c --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/2208.06_type4/jspd/build-ext/src/build.bat b/intermax/2208.06_type4/jspd/build-ext/src/build.bat new file mode 100755 index 0000000..a8735e0 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/build.bat @@ -0,0 +1,5 @@ +set JAVA_HOME=C:\Program Files (x86)\java\jdk1.6.0_03 +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant %1 diff --git a/intermax/2208.06_type4/jspd/build-ext/src/build.xml b/intermax/2208.06_type4/jspd/build-ext/src/build.xml new file mode 100755 index 0000000..b640084 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java new file mode 100755 index 0000000..ff6634e --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java @@ -0,0 +1,52 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_HTTP implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("HTTP", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + XmCommon.xstart(info); + String id = (String) obj[obj.length - 1]; + XmCommon.x(info, id.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + if (obj[obj.length - 1] != null) + { + xInbound(thread, info, obj); + } + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + + String id = (String) obj[obj.length - 1]; + if(id != null) + { + XmCommon.xstart(info); + XmCommon.x(info, id.getBytes()); + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java new file mode 100755 index 0000000..297f705 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java @@ -0,0 +1,35 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_RT.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_RT.java new file mode 100755 index 0000000..5e7ed92 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_RT.java @@ -0,0 +1,24 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXRt; +import com.exem.jspd.state.XmXInfo; + +import java.net.Socket; + +public class XM_RT implements IXRt +{ + public void onSocket(IThread thread, XmXInfo info, int mode, Socket socket) + { + if(mode == 5) + { + String remoteAddress = socket.getRemoteSocketAddress() + ""; + String[] ss = remoteAddress.split("/"); + info.s00 = ss[1]; + } + } + + public void onFile(IThread thread, XmXInfo info, int mode, String name) + { + } +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN.java new file mode 100755 index 0000000..196afdf --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN.java @@ -0,0 +1,46 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java new file mode 100755 index 0000000..da145bf --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java @@ -0,0 +1,21 @@ +package com.exem.ext; + +import com.exem.TxnCallbackBase; +import com.exem.IThread; + +public class XM_TXN_CALLBACK extends TxnCallbackBase { + public boolean isExcludeException(Object err) { + return super.isExcludeException(err); + } + + public boolean isIncludeException(Object err) { + return super.isIncludeException(err); + } + + public void beginTxn(IThread thread, Object[] param) { + } + + public void endTxn(IThread thread, Object[] param, Object err) { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java new file mode 100755 index 0000000..62b55f3 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java @@ -0,0 +1,52 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = (String)XmClass.getMethod(obj[0], "getName"); + s = s == null ? "call" : s; + index = thread.regMtdIndex("SAP", s); + info.s00 = s; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### SAP xOutbound"); + byte[] xb = (byte[])obj[1]; + //XmCommon.print("xOutbound xb:", xb); + byte[] conv_id = (byte[])XmClass.getField(obj[0], obj[0].getClass().getSuperclass(), "conv_id", true); + XmCommon.xstart(info); + XmCommon.x(info, conv_id); + XmCommon.x(info, info.s00.getBytes()); + //XmCommon.print("xOutbound conv_id:", conv_id); + //XmCommon.print("xOutbound func:" + info.s00); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java new file mode 100755 index 0000000..15563bb --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java @@ -0,0 +1,60 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tmax xOutbound"); + + byte[] xb = (byte[])obj[2]; + //System.out.println("xOutbound xb:" + new String(xb)); + XmCommon.xstart(info); + info.x40 = new byte[32]; + System.arraycopy(xb, 124, info.x40, 0, 32); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + + //thread.udp().xHeaderInfo(thread.tid(), "P", (byte)6, xb, 124, 32); + //info.x41 = new byte[10]; + //long l = System.currentTimeMillis(); + //String os = OS[((int)(l % 6L))]; + //String bank = BANK[((int)(l % 3L))]; + //System.arraycopy(os.getBytes(), 0, info.x41, 0, 2); + //System.arraycopy(bank.getBytes(), 0, info.x41, 2, 3); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java new file mode 100755 index 0000000..ce3d3f2 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java @@ -0,0 +1,53 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tuxedo xOutbound"); + + byte[] xb = (byte[])obj[1]; + //System.out.println("xOutbound xb:" + new String(xb)); + + XmCommon.xstart(info); + info.x40 = new byte[8]; + System.arraycopy(xb, 20, info.x40, 0, 8); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep new file mode 100755 index 0000000..84a3874 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep @@ -0,0 +1,54 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = thread.txn().getTxnName(); + if (s.indexOf("/a") > -1) + { + info.s00 = "async" + s.substring(2); + } + else if (s.indexOf("/s") > -1) + { + info.s00 = s.substring(2); + } + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String s1 = new String( b, 277, 43); + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 32); + if (s1.indexOf("Ext") > -1) + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s1); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci new file mode 100755 index 0000000..c3752dd --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci @@ -0,0 +1,55 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + Object o1 = XmClass.getMethod(obj[3], "getFieldValue","HFD_Standard_System_Header"); + String s = (String)XmClass.getMethod(o1, "getFieldValue", "rcvSrvcCd"); + thread.txn().setTxnName(s); + String s1 = (String)XmClass.getMethod(o1, "getFieldValue", "tlgrWrtnDt"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrCrtnSysNm"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrSrlNo"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrPrgrsNo"); + String s2 = (String)XmClass.getMethod(o1, "getFieldValue", "orgnlTx"); + String s3 = s2.substring(0,30); + String s4 = (String)XmClass.getMethod(o1, "getFieldValue","custId"); + byte[] b = s3.getBytes(); + XmCommon.xstart(info); + XmCommon.x(info, b); + thread.udp().xHeaderInfo(thread.tid(),"orgguid",XmConst.E_HEADER, s2); + thread.udp().xHeaderInfo(thread.tid(),"guid",XmConst.E_HEADER, s1); + thread.txn().setLoginName(s4); + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai new file mode 100755 index 0000000..7d855ee --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai @@ -0,0 +1,104 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +import java.text.SimpleDateFormat; +import java.util.Date; + +public class XM_BOUND_X implements IXBound +{ + private final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy"); + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("SVC", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 4, year.getBytes()); + String s1 = new String((byte[])obj[1], 157, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + boolean b3 = XmUtil.compBytes(b, 12, year.getBytes()); + if (b3) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 4, 30); + long l = info.x20; + info.x20 = l - 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'C', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Outbound Create C", t); + } + info.x20 = l; + } + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 12, year.getBytes()); + String s1 = new String((byte[])obj[1], 165, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + if (b1) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + long l = info.x20; + info.x20 = l + 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'P', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Inbound Create P", t); + } + info.x20 = l; + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep new file mode 100755 index 0000000..1775943 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep @@ -0,0 +1,70 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + byte[] b = (byte[])obj; + String s= new String(b, 277, 43); + IThread thread = com.exem.jspd.agent.XmMain.current(); + + if (s.indexOf("Ext") > -1) + { + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s); + } + if (b[500] == 0x30 && b[501] == 0x30); + else + { + String s1 = new String(b, 122, 13); + String s2 = "|"; + s1 += s2; + s1 += new String(b, 12, 32); + s1 += s2; + s1 += new String(b, 321, 20); + s1 += s2; + s1 += new String(b, 507, 10); + s1 += s2; + s1 += new String(b, 517, 200); + thread.udp().xHeaderInfo(thread.tid(), "retmsg", XmConst.E_HEADER, s1); + } + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank new file mode 100755 index 0000000..5146d5e --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank @@ -0,0 +1,61 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + Object o1 = XmClass.getField(obj, "header"); + String s1 = (String)XmClass.getMethod(o1, "getScrnId"); + String s2 = (String)XmClass.getMethod(o1, "getSrvcCd"); + String s3 = (String)XmClass.getMethod(o1, "getOrgGuid"); + String s4 = (String)XmClass.getMethod(o1, "getGuid"); + String s5 = (String)XmClass.getMethod(o1, "getCustId"); + IThread thread = com.exem.jspd.agent.XmMain.current(); + thread.udp().xHeaderInfo(thread.tid(), "orgguid", XmConst.E_HEADER, s3); + thread.udp().xHeaderInfo(thread.tid(), "guid", XmConst.E_HEADER, s4); + thread.udp().xHeaderInfo(thread.tid(), "custid", XmConst.E_HEADER, s5); + thread.txn().setLoginName(s5); + if (s1 == null) + return "+" + s2; + else + return s1 + "+" + s2; + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco new file mode 100755 index 0000000..d8f3860 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco @@ -0,0 +1,54 @@ +package com.exem.kepco; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + XmCommon.print("11111"); + String s = txnName; + Object o1 = param[1]; + txnName = (String)o1 + "+" + s; + XmCommon.print("txnName:" + txnName); + String txnIp = "127.127.127.1"; + thread.txn().setTxnIp(txnIp); + XmCommon.print("Ip:" + txnIp); + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java new file mode 100755 index 0000000..d79c084 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java @@ -0,0 +1,202 @@ +package com.exem.sample; + +import com.exem.IXTxn; +import com.exem.XmUtil; +import com.exem.IThread; +import com.exem.IUdpThread; +import com.exem.IXTxn; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN_EXT implements IXTxn +{ + private static final byte TRX_PARAMETER = 1; + private static final byte TRX_PARAM_NOURI = 2; + private static final byte TRX_ATTRIBUTRE = 3; + + private static final byte APP_ATTRIBUTRE = 1; + private static final byte APP_COOKIE = 2; + + public String getName(Object svc, XmHttpRequest req) + { + if (XmCommon.TRX_NAME_KEY.length == 0) + return req.getRequestURI(); + + String name = null; + switch (XmCommon.TRX_NAME_TYPE) + { + case TRX_PARAMETER: + case TRX_PARAM_NOURI: + String param = null; + for (int i = 0; i < XmCommon.TRX_NAME_KEY.length; i++) + { + String key = XmCommon.TRX_NAME_KEY[i]; + String value = req.getParameter(key); + if (value != null) + { + if (param == null) + param = key + "=" + value; + else + param = param + "&" + key + "=" + value; + } + } + if (param != null) + { + if (XmCommon.TRX_NAME_TYPE == TRX_PARAM_NOURI) + name = param; + else + name = req.getRequestURI() + "?" + param; + } + break; + case TRX_ATTRIBUTRE: + name = (String) req.getAttribute(XmCommon.TRX_NAME_KEY[0]); + break; + } + return name; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] obj) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] obj) + { + return null; + } + + public String getIpAddr(String ip, Object obj) + { + return ip; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + String name = null; + switch (XmCommon.TRX_LOGIN_TYPE) + { + case APP_ATTRIBUTRE: + Object o1 = session.getAttribute(XmCommon.TRX_LOGIN_KEY); + if (o1 instanceof java.lang.String) + name = (String) o1; + break; + case APP_COOKIE: + name = XmCommon.Cookie_getValue(req, XmCommon.TRX_LOGIN_KEY); + break; + } + return name; + } + + /* getName **************************************************** */ + public String getServletName(Object svc, XmHttpRequest req) + { + Object o1; + if ((o1 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o1; + else if ((o1 = XmClass.getMethod(svc, "getServletConfig")) != null) + { + Object o2; + if ((o2 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o2; + } + return null; + } + + public String getLastUri(Object svc, XmHttpRequest req) + { + String name = req.getRequestURI(); + if (name.indexOf(XmCommon.TRX_NAME_KEY[0]) > -1) + { + int i = name.lastIndexOf('/'); + if (i > -1) + return name.substring(i + 1); + else + return name; + } + return name; + } + + public String getXFrame(String value) + { + try + { + String s = value.substring(12); + String src = new String(new sun.misc.BASE64Decoder().decodeBuffer(s)); + + int ix = 0; + String item[] = new String[6]; + for (int i = 0; i < 6; i++) + { + ix++; + int len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + ix = ix + 4 + len; + + len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + item[i] = src.substring(ix + 4, ix + 4 + len); + ix = ix + 4 + len; + } + return item[0] + "/" + item[1]; + } + catch (Throwable t) + { + return null; + } + } + + /* getName **************************************************** */ + public String getProFrameV1(XmHttpRequest req, Object obj) + { + return (String) XmClass.getMethod(obj, "getPfmTxCode"); + } + + public String getProFrameV2(XmHttpRequest req, Object obj) + { + String name = req.getRequestURI(); + name = name + "+" + XmClass.getMethod(obj, "getPfmFnCd") + "+" + XmClass.getMethod(obj, "getPfmTxCode"); + return name; + } + + public String getProFrameV3(XmHttpRequest req, Object obj) + { + return XmClass.getMethod(obj, "getPfmAppName") + "+" + XmClass.getMethod(obj, "getPfmSvcName") + "+" + XmClass.getMethod(obj, "getPfmFnName"); + } + + public String getNICSV1(XmHttpRequest req, Object obj) + { + return (String) obj; + } + + public String getTITV1(XmHttpRequest req, Object obj) + { + int count = ((Integer) XmClass.getMethod(obj, "getRowCount")).intValue(); + String[] values = new String[count]; + Class[] acls = new Class[] { Integer.TYPE, String.class }; + for (int i = 0; i < count; i++) + { + Object[] aobj = new Object[] { new Integer(i), "SQL_ID" }; + values[i] = (String) XmClass.getMethod(obj, "getColumnAsString", acls, aobj); + } + return XmUtil.toString(values, ","); + } + + /* getIpAddr ************************************************** */ + public String getPfmClntIp(Object obj, String ip) + { + return (String) XmClass.getMethod(obj, "getPfmClntIp"); + } + + /* getLoginName *********************************************** */ + public void xHeaderInfo(IThread thread, XmHttpRequest req); + { + String query = req.getQueryString(); + String url = req.getRequestURL() + (query == null ? "" : new StringBuilder().append("?").append(query).toString()); + thread.udp().xHeaderInfo(thread.tid(), "qa.url", (byte)1, url); + } +} diff --git a/intermax/2208.06_type4/jspd/build-jdk/build.bat b/intermax/2208.06_type4/jspd/build-jdk/build.bat new file mode 100755 index 0000000..001ec3f --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-jdk/build.bat @@ -0,0 +1,8 @@ +set JSPD_HOME= +set JAVA_HOME= +set WAS_LIB= +set ANT_HOME=..\..\ant +set PATH=%ANT_HOME%\bin;%JAVA_HOME%\bin;%PATH% +ant -DWAS_LIB=%WAS_LIB% -DJSPD_HOME=%JSPD_HOME% $1 + +rem %JAVA_HOME%\bin\java -classpath %ANT_HOME%\lib\ant-launcher.jar -Dant.home=%ANT_HOME% -Dant.library.dir==%ANT_HOME%\lib org.apache.tools.ant.launch.Launcher -DWAS_LIB=%WAS_LIB% -DJSPD_HOME=%JSPD_HOME% %1 diff --git a/intermax/2208.06_type4/jspd/build-jdk/build.sh b/intermax/2208.06_type4/jspd/build-jdk/build.sh new file mode 100755 index 0000000..a20a6be --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-jdk/build.sh @@ -0,0 +1,8 @@ +export JSPD_HOME= +export JAVA_HOME= +export WAS_LIB= +export ANT_HOME=../../ant +export PATH=${ANT_HOME}/bin:${JAVA_HOME}/bin:${PATH} +ant -DWAS_LIB=${WAS_LIB} -DJSPD_HOME=${JSPD_HOME} $1 + +#${JAVA_HOME}/bin/java -classpath ${ANT_HOME}/lib/ant-launcher.jar -Dant.home=${ANT_HOME} -Dant.library.dir==${ANT_HOME}/lib org.apache.tools.ant.launch.Launcher -DWAS_LIB=${WAS_LIB} -DJSPD_HOME=${JSPD_HOME} $1 diff --git a/intermax/2208.06_type4/jspd/build-jdk/build.xml b/intermax/2208.06_type4/jspd/build-jdk/build.xml new file mode 100755 index 0000000..f6f5a85 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-jdk/build.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/intermax/2208.06_type4/jspd/build-rt/aj-rt.jar b/intermax/2208.06_type4/jspd/build-rt/aj-rt.jar new file mode 100755 index 0000000..4fdb0a8 Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aj-rt.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.5.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.5.3.jar new file mode 100755 index 0000000..72662db Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.5.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.6.8.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.6.8.jar new file mode 100755 index 0000000..2bdab5a Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.6.8.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.7.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.7.3.jar new file mode 100755 index 0000000..ef9fe4b Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.7.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.8.9.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.8.9.jar new file mode 100755 index 0000000..9fb7f88 Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjrt-1.8.9.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.5.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.5.3.jar new file mode 100755 index 0000000..d7f205d Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.5.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.6.8.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.6.8.jar new file mode 100755 index 0000000..5105aac Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.6.8.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.7.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.7.3.jar new file mode 100755 index 0000000..adc91db Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.7.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.8.9.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.8.9.jar new file mode 100755 index 0000000..800cb25 Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjtools-1.8.9.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.5.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.5.3.jar new file mode 100755 index 0000000..7574b27 Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.5.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.6.8.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.6.8.jar new file mode 100755 index 0000000..8e0dbcc Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.6.8.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.7.3.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.7.3.jar new file mode 100755 index 0000000..7ecd603 Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.7.3.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.8.9.jar b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.8.9.jar new file mode 100755 index 0000000..87f5c8f Binary files /dev/null and b/intermax/2208.06_type4/jspd/build-rt/aspectjweaver-1.8.9.jar differ diff --git a/intermax/2208.06_type4/jspd/build-rt/build.bat b/intermax/2208.06_type4/jspd/build-rt/build.bat new file mode 100755 index 0000000..1baf98f --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-rt/build.bat @@ -0,0 +1,7 @@ +set JAVA_HOME= +set ANT_HOME=..\..\ant +set PATH=%PATH%;%ANT_HOME%\bin +set JDK_FILE=C:\Program Files\Java\jdk1.7.0_80\jre\lib\rt.jar +ant -DJDK_FILE= "%JDK_FILE%" %1 + +rem "%JAVA_HOME%"\bin\java -classpath %ANT_HOME%\lib\ant-launcher.jar -Dant.home=%ANT_HOME% -Dant.library.dir==%ANT_HOME%\lib org.apache.tools.ant.launch.Launcher -DJDK_FILE= "%JDK_FILE%" %1 diff --git a/intermax/2208.06_type4/jspd/build-rt/build.sh b/intermax/2208.06_type4/jspd/build-rt/build.sh new file mode 100755 index 0000000..5fae815 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-rt/build.sh @@ -0,0 +1,7 @@ +export JAVA_HOME= +export ANT_HOME=../../ant +export PATH=${ANT_HOME}/bin:${JAVA_HOME}/bin:${PATH} +export JDK_FILE=/usr/java/jdk1.7.0_80/jre/lib/rt.jar +ant -DJDK_FILE="$JDK_FILE" $1 + +#${JAVA_HOME}/bin/java -classpath ${ANT_HOME}/lib/ant-launcher.jar -Dant.home=${ANT_HOME} -Dant.library.dir==${ANT_HOME}/lib org.apache.tools.ant.launch.Launcher -DJDK_FILE="$JDK_FILE" $1 diff --git a/intermax/2208.06_type4/jspd/build-rt/build.xml b/intermax/2208.06_type4/jspd/build-rt/build.xml new file mode 100755 index 0000000..ea54e21 --- /dev/null +++ b/intermax/2208.06_type4/jspd/build-rt/build.xml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + driver.install JDK_FILE - ${jdk.file} + driver.install RT_PARAM - ${rt.param} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/intermax/2208.06_type4/jspd/cfg/agent/imx.dbm b/intermax/2208.06_type4/jspd/cfg/agent/imx.dbm new file mode 100755 index 0000000..b5feef5 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/imx.dbm @@ -0,0 +1,3 @@ +# IMXDBM ADDR=DB ADDR +# ex) 127.0.0.1:2604=127.0.0.1.1521.ora11203 +# ex) 127.0.0.1:2605=127.0.0.1.1522.ora11204 diff --git a/intermax/2208.06_type4/jspd/cfg/agent/imx.prop b/intermax/2208.06_type4/jspd/cfg/agent/imx.prop new file mode 100755 index 0000000..498ecef --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/imx.prop @@ -0,0 +1,255 @@ +############################################################################### +# COMMON OPTIONS # +############################################################################### + +######################################### +# NOT USED +# # 2: garbage clean log, 4: udp packet detail log, 8: udp packet detail log for send to imxdbm +# # 16: topology info detail log +# LOG_OPT=0 +# +# # 1: prepare, 2: execute, 4: execute end, 8: jsp end, 16: active txn signal +# # 32: remotecall, 64: userdata, 128: real user monitor +# DEBUG=0 +# NOT USED +######################################### + +# common +# 1: cpu/core*, 2: exclude iowait +# linux +# 4: free memory = MemFree + Buffers + Cached +# sun +# 4: exclude network info +# aix +# 8: VP mode for cpu (Shared-SMT) +# 16(0x10): cpu/online_vcpus* (Shared-SMT) +# 32(0x20): no virtual free memory (default free memory = (real_total - virt_active) * 4 (4K Pages)) +# 32768(0x8000): use perfstat_pagingspace (paging space usage) +CPU100=1 + +#Packet Queue Max Count +#MAX_UDP_QUEUE=20000 +#MAX_TCP_QUEUE=2000 + +# info_log interval (sec) +# default: imxosm = 300 , imxtxn = 60 +#INTERVAL_INFO_LOG= + +# DG TCP Reconnect interval (ms) +# defaut: 5000 +DG_RECONNECT_DELAY_TIME=5000 + +#if WAS process name is not a java +#WAS_PROCESS_NAME= + +############################################################################### +# IMXOSM COMMON OPTIONS # +############################################################################### + +#0 : DG 2016.12.19 before version +#1 : DG 2016.12.19 after version +# Gather Version(yyyymmdd) +#IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE= + +# 0 : disable_osm_standalone, 1 : enable_osmstandalone +#ENABLE_OSM_STANDALONE=0 + +# Collect NFS(Filesystem) type(Y:collect,N:not collect(default)) +#COLLECT_FS_NFS= + +# Use the option to run more than one imxosm on the local server. +# (preventing duplication collect of processes) +# 0 : master(default), 1 : slave +#IMX_OSM_SLAVE= + +# Custom hostkey (hostkey = org_hostkey + sys_host + OSM_MODULE_KEY) +#OSM_MODULE_KEY= + +# Windows Global Nameing MMF +# 0: Not use(default), 1: use global name mmf(.NET) +#USE_GLOBAL_NAMING_MMF= + +# update manager setting +# target api server ip +API_SERVER_IP= + +# target api server port +API_SERVER_PORT= + +# update check interval setting (sec) +UPDATE_CHECK_INTERVAL= + +# Maximum number of package versions to keep +BACKUP_PATH_COUNT= + +############################################################################### +# IMXOSM TMAXTP OPTIONS # +############################################################################### + +# imxtpm_tmax Config file path +TP_CONF_DIR= + +# imxtpm_tmax Config file name (default: mxtpl.conf) +TP_CONF_FILE_NAME=mxtpl.conf + +# imxtpm_tmax env file path for imxosm +TP_TMAX_ENV_DIR= + +# imxtpm_tmax env file name (default: tmax.env) +TP_TMAX_ENV_FILE_NAME=tmax.env + +# tmax tp process user name +TP_PROCESS_USER=tmax + +# if filename = A/B/SLOG.123456 +# set SLOG_DIR = A/B +SLOG_DIR= + +# If the string is included in the SLOG, the data line is skipped. +# set SLOG_FILTER_TEXT = abc , def, ghi , ... +#SLOG_FILTER_TEXT + +# tpcall (tmadmin data) interval second +TPCALL_INTERVAL=10 + +# The number of failures of TPCALL sending an error alarm +TPCALL_ERROR_REPEAT=3 + +# Skip processing for an active transaction that is longer than the set value.(ms) +ACTIVE_ELAPSE_LIMIT=0 + +# Skip active transactions shorter than this value. +ACTIVE_ELAPSE_TIME=0 + +# 0: OFF (default) 1: shm active txn logging (Dynamic Option) +TP_SHM_DEBUG=0 + +## TPCALL_DEBUG_TYPE (Dynamic Option) +## (ex: TP_CALL_DEBUG_TYPE=12 --> MXTSVGCONF(4), MXTSVRCONF(8) logging) +## 0: NONE(OFF)(default) +## 1: MXTDOMAINCONF +## 2: MXTNODECONF +## 4: MXTSVGCONF +## 8: MXTSVRCONF +## 16: MXTSVCCONF +## 32: MXTSVRSTAT +## 64: MXTSPRSTATEX +## 128: MXTSVCSTATEX +## 256: MXTCLIINFO +TPCALL_DEBUG=0 + +## The selected service does not perform. +## 0: all gathering.(default) +## The remaining values are the same as in the "TPCALL_DEBUG_TYPE" option above +## (ex: TP_NOTGATHER_STAT=12 --> MXTSVCCONF(4), MXTSVRCONF(8) Do not collect data.) +TP_NOTGATHER_STAT=0 + +############################################################################### +# IMXOSM TUXEDO OPTIONS # +############################################################################### + +# imxtpm_tuxedo Config file path +TUX_CONF_DIR=/home/tuxedo/tm_agent + +# imxtpm_tuxedo Config file name (default: mxtup.conf) +TUX_CONF_FILE_NAME=mxtup.conf + +# if filename = A/B/ULOG.123456 +# set TUX_ULOG_FILE = A/B/ULOG +TUX_ULOG_FILE=$TUXDIR/ULOG + +# library debug on/off +TUX_LIB_DEBUG=0 + +# stat data interval +TUX_STAT_INTERVAL=10 + +# 0 : All, 1 : stat off 2: server off 4:service off 8: client off 16:queue off +TUX_NOTGATHER_STAT=0 + +# 0 : off, 1 : stat on 2: server on 4:service on 8: client on 16:queue on +TUX_STAT_DEBUG=0 + +############################################################################### +# IMXOSM C API OPTIONS # +############################################################################### + +# imxosm shared memory read interval (ms) +APIM_READ_INTERVAL=1000 + +# imxosm debug log setting +APIM_DEBUG_LOG=0 + + +############################################################################### +# IMXTXN OPTIONS # +############################################################################### + +# Packet Debugging Options ( Multiple selections are available ) +# [ 0] ALLOFF +# [ 1] TRANSACTION_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END/JSP_END ) +# [ 2] SQL_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END ) +# [ 3] SQL_TEXT ( SQL_TEXT ) +# [ 4] ACTIVE_TXN ( ACTIVE_TXN_SIGNAL ) +# [ 5] REMOTECALL_PROCESSING ( REMOTECALL ) +# Warning) Do not use together No. 1 and No. 2. +# ex) XM_LOG_OPT=1,3,4 +XM_LOG_OPT=0 + +# imxtxn worker thread count +WORKING_THREAD_COUNT=1 + +# Gather Version(yyyymmdd) +#IMX_DATAGATHER_PACKET_VERSION= + +# Send Packet to imxdbm (default:1, 0:OFF 1:ON) +SEND_UDP_TO_DBM=0 + +# 0 : disable_txn_standalone, 1 : enable_txnstandalone +ENABLE_TXN_STANDALONE=0 + +# Collect only sql information with longer SQL elapse time.(ms) +SQL_DETAIL_ELAPSE_LIMIT=0 + + + +############################################################################### +# IMXDBM OPTIONS # +############################################################################### + +# env server port +ENV_PORT=2405 + +# DB Address, copy address from imx.dbm file. +# DB_ADDR=127.0.0.1.1521.orcl (IP.PORT.SID) + +# session status filter +# 1: active, 2: exclude inactive background, 3: both +SESSION_LIST_OPT=1 + + +############################################################################### +# IMXTXN SITE OPTIONS # +############################################################################### + +# 0: send all, 0<: send limit(per sec), 10000(defualt, max): max send count +#MAX_SEND_BIND_LIST_COUNT=0 + +# Add sql bind space (default:1, OFF:0 ON:1) +#INPUT_SPACE_SQL_BIND=1 + +# SQL TEXT TRIM (HEAD) (default:0, HEAD+TAIL:0 HEAD:1) +#SQL_LEFT_TRIM=0 + +# USE CONVERT SQL TEXT UTF8->EUCKR (default:0, OFF:0 ON:1) +#SQL_TEXT_CONVERT_UTF8_EUCKR=0 + +# txn sql_text hash count (default: 5000) +#MAX_SQL_TEXT_HASH_COUNT=5000 + +# USE Topology Key1, Key3, dest (default:0) +#USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 + +# Use open_addr for topology address (default:0, OFF:0 ON:1, if USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 this option is ignore) +#USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR=0 + diff --git a/intermax/2208.06_type4/jspd/cfg/agent/imxlog.conf b/intermax/2208.06_type4/jspd/cfg/agent/imxlog.conf new file mode 100755 index 0000000..1c57518 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/imxlog.conf @@ -0,0 +1,28 @@ + +[ imxosm ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxosm.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ imxtxn ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxtxn.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ debug_console ] +output_type = stdout +level = trace +header_flag = time + + + diff --git a/intermax/2208.06_type4/jspd/cfg/agent/jspd.alias b/intermax/2208.06_type4/jspd/cfg/agent/jspd.alias new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/cfg/agent/jspd.home b/intermax/2208.06_type4/jspd/cfg/agent/jspd.home new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop b/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop new file mode 100755 index 0000000..8abc51e --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop @@ -0,0 +1,41 @@ +# ${DG_IP}:${DG_PORT},${DG_IP}:${DG_PORT} ... (max:10)) +# default: NULL +DGADDR_LIST= + +# If DG connection fails by the set value, "imxosm" attempts to connect sequentially to the value in "DG_ADDR_LIST" ( default:5) +DGADDR_LIST_RECONNECT_COUNT=5 + +# ${IP}:${TCP_PORT} +WR_ADDR=127.0.0.1:1314 +#WR_ADDR= + +# ${UDP_PORT|UDP_PORT} +TXN_ADDR=7404 + +# ${UDP_PORT|UDP_PORT} +UTS_ADDR=7504 + +# default 10000 +TXN_REGISTRY_SIZE= + +# default 200000 +MTD_REGISTRY_SIZE= + +# default 200 +MTD_BUFFER_COUNT= + +# default 60KB +MTD_MAX_SIZE= + +# default false +REMOVE_JDBC_ADVICE= + +# default false +REMOVE_JDBC_BIND_ADVICE= + +# default false +DISABLE_SQL_SID= + +# default true +USE_TCP_SEND_HEADER= + diff --git a/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.ini b/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.ini new file mode 100755 index 0000000..09f5cdd --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.ini @@ -0,0 +1,443 @@ +# txn name 0:default, 1:parameter, 2:param_nouri, 3:attribute +TRX_NAME_TYPE= + +# txn key +TRX_NAME_KEY= + +# txn login name 0:default, 1:attribute, 2:cookie +TRX_LOGIN_TYPE= + +# txn login key +TRX_LOGIN_KEY= + +# default 0sec +APP_SLEEP= + +# default 400, max 400 +ACTIVE_TOP_COUNT= + +# default 0ms +ACTIVE_ELAPSE_TIME= + +# ${TXNNAME}:${TXNTIME(ms)},${TXNNAME}:${TXNTIME(ms)} +CURR_TRACE_TXN=*:3000 + +# default 100, 0~100 +CURR_TRACE_LEVEL= + +# default true +TRACE_JDBC= + +# default false +TRACE_SIMPLE_METHOD= + +# default false +METHOD_DEBUG= + +# eg) gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 +EXCLUDE_SERVICE=gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 + +# eg) gif, js, css +EXCLUDE_SERVICE_AT_END_TIME= + +# eg) type.Exception +INCLUDE_EXCEPTION= + +# eg) type.Exception +EXCLUDE_EXCEPTION= + +# error.jsp +REDIRECT_URL= + +# default false +RESP_HTML_SCRIPT= + +# default 50ms +RESP_HTML_ELAPSE_TIME= + +# eg) .*\.jsp +RESP_HTML_SCRIPT_TARGET=.*\.jsp + +# default false +RESP_HEADER_TID= + +# default false +USE_TRACE_CLIENT_TIME= + +# default empty string +TRACE_CLIENT_TIME_POSTFIX= + +# eg) 192.168.0.10:8082 +TRACE_CLIENT_TIME_ADDR= + +# default true +RT_RMI= + +# default ext +RT_RMI_VENDOR= + +# default 3: normal, 1: pkey, 2: ckey, 3: pckey +RT_RMI_TYPE= + +# default 0ms +RT_RMI_ELAPSE_TIME= + +# default 0x00 eg) FILE_OPEN,FILE_CLOSE +RT_FILE= + +# default 0x10 eg) SOCKET_OPEN,SOCKET_CLOSE +RT_SOCKET= + +# default false +USE_MTD_EXT= + +# default false +MTD_PARAM_TRACE= + +# default 100000 +MTD_LIMIT= + +# default 2500 +MTD_BUFFER_SIZE= + +# default 100 +MTD_EXCEPTION_BUFFER_SIZE= + +# default 100 +MTD_STACK_BUFFER_SIZE= + +# default 20 +LIMIT_SQL= + +# default true +USE_SQL_ELLIPSIS= + +# default 2000, max MTD_BUFFER_SIZE +TXN_SQL_LIMIT_COUNT= + +# default 2048, max 8192 +BIND_SIZE= + +# default 50ms +BIND_ELAPSE_TIME= + +# default true +TXN_CPU_TIME= + +# default true +TXN_MEMORY= + +# default false +TXN_CPU_CORE= + +# default 0 +THROW_TXN_FETCH_COUNT= + +# default 0 +THROW_SQL_FETCH_COUNT= + +# eg) gif, js, css +THROW_EXCLUDE_SERVICE= + +# ${ALERT}:${RESTART}:${LEVEL},${ALERT}:${RESTART}:${LEVEL} +LOG_ALERT=1:java.lang.OutOfMemoryError,2:container {0} booted + +# default false +USE_SESSIONID_FOR_WEBID= + +# default false +ENABLE_WEB_ID_WHEN_NO_USERAGENT= + +# default false +USE_RUNTIME_REDEFINE= + +# default false +USE_RUNTIME_REDEFINE_HTTP_REMOTE= + +# default true +USE_JMX= + +# default true +DISABLE_JDBC_ALARM= + +# default false +USE_TRACE_COLLECTION_LEAK= + +# default 1000 +TRACE_COLLECTION_SIZE= + +# default 10000 +TRACE_COLLECTION_STACKTRACE_SIZE= + +# default 600000ms(10minutes) +TRACE_COLLECTION_REPORT_PERIOD= + +# default 3 (Min 3, Max 99) +IMXOSM_CHECK_COUNT= + +# default true +USE_NEW_IMXTXN_SQL_PACKET= + +# default 1000ms (Min 500, Max 60000) +DG_RECONNECT_DELAY_TIME= + +# default false +USE_SQL_SEQ= + +# default false +TRACE_FETCH_METHOD= + +# default false +TRACE_MONGO_FETCH= + +# eg) replace number patterns [0-9]+ +REPLACE_URL_PATTERNS= + +# eg) prefix1, prefix2 +EXCLUDE_TXCODE= + +# eg) thread name pattern (startsWith) +EXCLUDE_THREAD= + +# default false +USE_ETOE_ONLY= + +# default false +DISABLE_ACTIVE_TXN= + +# default false +USE_METHOD_LIST= + +# default false +USE_METHOD_SEQ= + +# default false +TRACE_METHOD_MEMORY= + +# default false +TRACE_METHOD_CPUTIME= + +# default true +TRACE_DBPOOL_NAME= + +# default false +TRACE_THREAD_NAME= + +# default false +DISABLE_ROOT_METHOD= + +# default 128 +MTD_ERROR_LIMIT= + +# default 1(sec) +WASID_CHECK_TIMEOUT= + +# default false +DISABLE_JDBC_CONNECTION_FAIL= + +# default false +TRX_NAME_USE_ENCODING= + +# default ISO-8859-1 +TRX_NAME_ENCODING_FROM= + +# default UTF-8 +TRX_NAME_ENCODING_TO= + +# default empty string +TRX_IP_KEY= + +# txn error 0: default, 1: response(500), 2: response(400) +TRX_ERR_TYPE= + +# default 0 +TXN_ELAPSE_TIME= + +# default 0 +MTD_ELAPSE_TIME= + +# default false +INCLUDE_EXCEPTION_FOR_ALARM= + +# default false +CONVERT_SQL_ASCII_TO_KSC5601= + +# default null +CONVERT_SQL_ASCII_TO= + +# default null +CONVERT_SQL_TEXT_ENCODING_FROM= + +# default null +CONVERT_SQL_TEXT_ENCODING_TO= + +# default false +ENABLE_UPDATE_WEBID_COOKIE_TIME= + +# default 0 +TXN_NAME_SET_INDEX= + +# default 0 +TXN_NAME_SET_INDEX2= + +# default 0 +TXN_NAME_APPEND_INDEX= + +# default false +USE_NONE_TXNID_PACKET= + +# default false +USE_NONE_GAPTIME_PACKET= + +# default false +DISABLE_SQL_SID= + +# default false +DISABLE_SQL_SID_ORACLE= + +# default false +DISABLE_SQL_SID_DB2= + +# default false +DISABLE_SQL_SID_MSSQL= + +# default false +DISABLE_SQL_SID_TIBERO= + +# default false +DISABLE_SQL_FETCH= + +# default false +DISABLE_SQL_BIND= + +# default false +ENABLE_ENCRYPT_SQL_BIND= + +# default false +ENABLE_ENCRYPT_LOGIN_NAME= + +# default 0 +TYPE_AUTOMATIC_WASID=4 + +# default empty string +K8S_URL_KEY= + +# default 2 (Min 2, Max 10) +THREAD_DUMP_MAX_SIZE= + +# default log eg) log or AbsolutePath +LOG_PATH= + +# default false +GET_SID_WHEN_STMT= + +# default 600000ms(10minutes) +GET_SID_WHEN_STMT_LIMIT= + +# default false +CHANGE_DB2_SID_QUERY= + +# default false +COMPRESS_SQL= + +# default false +USE_ORACLE_RAC= + +# default false +USE_TIBERO_TAC= + +# deprecated. default false +USE_TRACE_ORACLE= + +# default false +USE_TRACE_ORACLE2= + +# default false +USE_TRACE_ORACLE2_CLEAR_PING= + +# default false +USE_TRACE_ORACLE3= + +# default false +USE_TRACE_DB2= + +# default false +USE_TRACE_MSSQL= + +# default false +USE_TRACE_TIBERO= + +# default 200 +CONNECTION_CLASS_LIMIT= + +# default 2000 +CONNECTION_LIMIT= + +# default 60927 +SQL_TEXT_BUFFER_SIZE= + +# default false +RMI_GET_PARAM= + +# default 1024 +MONGO_BIND_SIZE= + +# default empty string +PLC_MESSAGE= + +# default empty string +RUM_MESSAGE= + +# default false +USE_NONE_ASYNCKEY_IMXUTS_PACKET= + +# default false +SEND_OOM_ALARM_DIRECTLY= + +# default false +USE_JAR_LIST= + +# default false +USE_TRX_NAME_WHEN_LEAVE= + +# default true +DISABLE_WEBID= + +# default true +DISABLE_DETAIL_DB_INFO= + +# default true +ENABLE_TRACE_JSP_CLASS= + +# default false +DISABLE_EXCLUDE_THREAD= + +# default false +DISABLE_OSM= + +# default true +ENABLE_RELOAD_ADVICE= + +# default false +ENABLE_BATCH_MODE= + +# default 3600 +RUM_SCRIPT_INJECTION_CLIENT_RESET_SECOND= + +# default -1 +RUM_SCRIPT_INJECTION_CLIENT_COUNT= + +# default false +USE_XRT_HANDLE= + +# default false +USE_LONG_SQL= + +# default false +DISABLE_SQL= + +# default false +ENABLE_POOL_NAME_GET_BY_CONN= + +# default 0x000000000 eg) RMI,HTML,RESPONSE,CLASS,GC,UDP,TCP,TRACE,DEBUG +DEBUG=0x000000000 diff --git a/intermax/2208.06_type4/jspd/cfg/agent/wsm.conf b/intermax/2208.06_type4/jspd/cfg/agent/wsm.conf new file mode 100755 index 0000000..7c5cef4 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/agent/wsm.conf @@ -0,0 +1,110 @@ +# server id +server_id=1 +# server type // 0:unknown 1:apache 2:ngnix 3:iis 4:webtob +server_type=0 +# server process name +server_process= +# server process argument +server_process_argument= +# server_process_user +server_process_user= + +# default 1000(ms) +completed_send_interval= +# default 3000(ms) +active_send_interval= +# default 3000(ms) +os_stat_interval= +# default 20, max 300 +active_detail_count_limit= + +# apache mod enable, default false +extend_module_enable= +# apache mod monitor port, default 10245 +extend_module_monitor_port= + +# libpcap loop back address(ex 127.0.0.1) skip, default false +pcap_nic_local_skip= +# libpcap network device absolute path, default empty string(ex:/dev/) +pcap_nic_path= +# libpcap buffer size, default 52428800(byte) +pcap_buffer_size= +# libpcap promiscous mode, default false +pcap_promiscuous_mode= +# libpcap read timeout, default 100(ms) +pcap_read_timeout= +# libpcap snaplen, default 1024(byte) +pcap_snaplen= +# libpcap immediate mode, default false +pcap_immediate_mode= +# libpcap filter optimize, default true +pcap_filter_optimize= +# libpcap packet monitoring target ip(ex 192.168.0.1) +pcap_monitor_ip=127.0.0.1 +# capture loop sleep skip, default false +pcap_loop_sleep_skip= + +# default false +http_enable= +# ex) http_monitor_port=80,8080,8082 +http_monitor_port=8080 +# http key type, default 1 // 0:ACK 1:PORT +http_key_type= + +#webtob jsv, default false +wtb_jsv_enable= +# ex) wtb_jsv_monitor_port=9900,9901,9902 +wtb_jsv_monitor_port=0 +# jsv wjp2, default false +wtb_jsv_wjp2= +# jsv wjp2 seq type long, default true +wtb_jsv_wjp2_long_seq= +# jsv key type, default 1 // 0:ACK 1:PORT 2:SEQ +wtb_jsv_key_type= + +# webtob https, default false +wtb_https_enable= +# default 1355 +wtb_https_listen_port= +# ex) wtb_https_monitor_port=443,8443 +wtb_https_monitor_port=443 + +# webtob wsadmin, default false +wtb_wsadmin_enable= +# default 5000(ms) +wtb_wsadmin_interval= + +# default 600000(ms) +limit_session_time= + +# filter_ext = js,css,jpg,gif,jpeg,png +filter_ext=js,css,jpg,gif,jpeg,png,ico + +# filter_txn_name (-:exclude, +:force include) ex) -/aaa,+/aaa/bbb +filter_txn_name= + +# default euc-kr +alternative_encoding= + +# ex) replace_url_patterns=[0-9]+ +replace_url_patterns= + +# ex) wtb_wsadmin_dir=/webtob/bin +wtb_wsadmin_dir= + +# ex) log_path=/log/wsm +log_path= +# default info +log_level= +# default 30 +log_max_history= +# default 10MB +log_max_file_size= + +# default false +use_url_decode= + +# default true +statistics_enable= +# default 60000 +statistics_period= diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.auto.regist.json b/intermax/2208.06_type4/jspd/cfg/jspd.auto.regist.json new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.file.history b/intermax/2208.06_type4/jspd/cfg/jspd.file.history new file mode 100755 index 0000000..9a0e5ad --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.file.history @@ -0,0 +1 @@ +#D:\dump1.txt diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.jdbc.advice b/intermax/2208.06_type4/jspd/cfg/jspd.jdbc.advice new file mode 100755 index 0000000..8fea821 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.jdbc.advice @@ -0,0 +1,45 @@ +poolClose@com.exem.weave.sql.XmPoolClose +ibatisClose@com.exem.weave.sql.XmIbatisClose +#jdbc@com.exem.weave.sql.XmJdbc + +########## POOL ########## + +poolClose=weblogic/jdbc/rmi/SerialConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTAConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTSConnection.close()V +poolClose=weblogic/jdbc/wrapper/PoolConnection.close()V + +ibatisClose=com/ibatis/common/jdbc/SimpleDataSource.pushConnection(Lcom/ibatis/common/jdbc/SimpleDataSource$SimplePooledConnection;)V + +########## JDBC ########## + +### db2jcc ### +### Note: Enable both options ### +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,XADATASOURCE:com/ibm/db2/jcc/DB2XADataSource,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/conn,CALLABLE:com/ibm/db2/jcc/cstmt,PREPARE:com/ibm/db2/jcc/pstmt,STATEMENT:com/ibm/db2/jcc/stmt,RESULTSET:com/ibm/db2/jcc/resultset +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/am/Connection,PREPARE:com/ibm/db2/jcc/am/jo,STATEMENT:com/ibm/db2/jcc/am/io,RESULTSET:com/ibm/db2/jcc/am/ResultSet + +### jtds-1.2 ### +#jdbc=DRIVER:net/sourceforge/jtds/jdbc/Driver,POOLDATASOURCE:net/sourceforge/jtds/jdbcx/JtdsDataSource,CONNECTION:net/sourceforge/jtds/jdbc/ConnectionJDBC2,CALLABLE:net/sourceforge/jtds/jdbc/JtdsCallableStatement,PREPARE:net/sourceforge/jtds/jdbc/JtdsPreparedStatement,STATEMENT:net/sourceforge/jtds/jdbc/JtdsStatement,RESULTSET:net/sourceforge/jtds/jdbc/JtdsResultSet,NEXT:true + +### edb-jdbc15 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc23/AbstractJdbc23ConnectionPoolDataSource,CONNECTION:com/edb/jdbc2/AbstractJdbc2Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### edb-jdbc16, edb-jdbc17 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/PGConnectionPoolDataSource,CONNECTION:com/edb/jdbc/PgConnection,CALLABLE:com/edb/jdbc/PgCallableStatement,PREPARE:com/edb/jdbc/PgPreparedStatement,STATEMENT:com/edb/jdbc/PgStatement,RESULTSET:com/edb/jdbc/PgResultSet,NEXT:true + +### another edb-jdbc16 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc4/AbstractJdbc4ConnectionPoolDataSource,CONNECTION:com/edb/jdbc4/Jdbc4Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### postgresql-42.2.5 ### +#jdbc=DRIVER:org/postgresql/Driver,POOLDATASOURCE:org/postgresql/ds/PGConnectionPoolDataSource,CONNECTION:org/postgresql/jdbc/PgConnection,CALLABLE:org/postgresql/jdbc/PgCallableStatement,PREPARE:org/postgresql/jdbc/PgPreparedStatement,STATEMENT:org/postgresql/jdbc/PgStatement,RESULTSET:org/postgresql/jdbc/PgResultSet,NEXT:true + +### mariadb-2.3.3 ### +### Note: Enable both options ### +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/BasePrepareStatement,PREPARE:org/mariadb/jdbc/ClientSidePreparedStatement,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/MariaDbPreparedStatementClient,PREPARE:org/mariadb/jdbc/MariaDbPreparedStatementClient,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true + +### mysql-connector-java-8.0.15 ### +#jdbc=DRIVER:com/mysql/cj/jdbc/NonRegisteringDriver,POOLDATASOURCE:com/mysql/cj/jdbc/MysqlDataSource,CONNECTION:com/mysql/cj/jdbc/ConnectionImpl,CALLABLE:com/mysql/cj/jdbc/CallableStatement,PREPARE:com/mysql/cj/jdbc/ClientPreparedStatement,STATEMENT:com/mysql/cj/jdbc/StatementImpl,RESULTSET:com/mysql/cj/jdbc/result/ResultSetImpl,NEXT:true + +### cubrid-10.1.3 ### +#jdbc=DRIVER:cubrid/jdbc/driver/CUBRIDDriver,POOLDATASOURCE:cubrid/jdbc/driver/CUBRIDDataSource,CONNECTION:cubrid/jdbc/driver/CUBRIDConnection,CALLABLE:cubrid/jdbc/driver/CUBRIDPreparedStatement,PREPARE:cubrid/jdbc/driver/CUBRIDPreparedStatement,STATEMENT:cubrid/jdbc/driver/CUBRIDStatement,RESULTSET:cubrid/jdbc/driver/CUBRIDResultSet,NEXT:true diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.local.advice b/intermax/2208.06_type4/jspd/cfg/jspd.local.advice new file mode 100755 index 0000000..7dd4d28 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.local.advice @@ -0,0 +1,14 @@ + +### 작성방법 +# 패키지 및 클래스 구분자는 slash(/)이며 클래스와 메소드는 dot(.)으로 구분한다. +# 강제포함, 제외, 포함 순으로 높은 우선순위를 갖는다. +# 강제포함은 exclamation mark(!), 제외는 dash(-)를 접두사로 붙여 표기한다. +# 와일드카드 문자(*)를 포함해 startWith, endWith 연산을 수행할 수 있다. +# 로드된 전체 클래스를 대상으로한 설정은 안정성 문제로 인해 동적 적용되지 않는다. + +### 작성예시 +# com/inzent.* +# -com/inzent/igate.* +# !com/inzent/igate/util.* + +!javax/servlet/http/HttpServlet.* \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.local.advice.all b/intermax/2208.06_type4/jspd/cfg/jspd.local.advice.all new file mode 100755 index 0000000..7e81c40 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.local.advice.all @@ -0,0 +1,47 @@ +#com/inzent.* +#-com/inzent/igate.* +#!com/inzent/igate/util.* +*.* +#!javax/servlet/http/HttpServlet.* + +-*log4j.* +-*logging.* +-*Loader + +-AOPProxy$ +-$Proxy* +-account/* +-antlr/* +-bsh/* +-com/* +-COM/* +-compressionFilters/* +-EDU/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jennifer/* +-jeus/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-net/* +-netscape/* +-oracle/* +-org/* +-schemacom_bea_xml/* +-signgate/* +-tmax/*webt/* +-weblogic/* +-wlstLibSample$ +-workshop +-ch/*qos/*logback/* +-elsoft/* diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.method.list b/intermax/2208.06_type4/jspd/cfg/jspd.method.list new file mode 100755 index 0000000..41cd497 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.method.list @@ -0,0 +1,66 @@ +#include +* + +#exclude +-javax/* +-java/* +-jrockit/* +-jdk/* +-com/exem/* +-org/bsp/* +-sun/* +-com/sun/* +-ibm/* +-com/ibm/* +-org/apache/* +-org/springframework/* +-com/google/* + +-*.toString()Ljava/lang/String; +-*.equals(Ljava/lang/Object;)Z +-*.hashCode()I +-*.()V +-*.()V +-*.clone()Ljava/lang/Object; +-*.finalize()V +-*.wait(J)V +-*.wait(JI)V +-*$* +-*_aroundBody* +-*__WL_* + +-*log4j* +-*logging* +-*Loader +-AOPProxy$* +-$Proxy* +-account/* +-antlr/* +-bsh/* +-compressionFilters/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-netscape/* +-oracle/* +-schemacom_bea_xml/* +-signgate/* +-weblogic/* +-wlstLibSample$* +-workshop* +-ch/qos/logback/* +-elsoft/* +-org/springframework/jdbc/datasource/TransactionAwareDataSourceProxy.* + +#forceInclude diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.other.advice b/intermax/2208.06_type4/jspd/cfg/jspd.other.advice new file mode 100755 index 0000000..da1ff0b --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.other.advice @@ -0,0 +1,62 @@ +txnProFrameV1@com.exem.weave.servlet.XmTxnProFrameV1 +txnNICSV1@com.exem.weave.servlet.XmTxnNICSV1 +txnTITV1@com.exem.weave.servlet.XmTxnTITV1 +#txnProFrameV3@com.exem.weave.servlet.XmTxnProFrameV3 + +jspWrite@com.exem.weave.servlet.XmJspWrite +jspWriteA@com.exem.weave.servlet.XmJspWriteA +jspWriteB@com.exem.weave.servlet.XmJspWriteB +jspWriteC@com.exem.weave.servlet.XmJspWriteC + +logRecord@com.exem.weave.io.XmLogRecord + +servletThrowable@com.exem.weave.io.XmServletThrowable + +temp@com.exem.weave.temp.XmTemp + +txnProFrameV1=com/tmax/proframe/object/CommonBufferImpl.setSystemHeader(Lcom/tmax/proframe/object/SystemHeader;)V + +txnNICSV1=com/tmax/proframe/object/SystemHeader.setPfmTxCode(Ljava/lang/String;)V + +txnTITV1=tit/service/miplatform/MiplatformBusinessContext.getInputDataset(Ljava/lang/String;)Lcom/tobesoft/platform/data/Dataset; + +#txnProFrameV3=proframe/core/context/ProFrameContext.getProFrameHeaderInstance()Lproframe/cto/ProFrameHeader; + +jspWrite=jeus/servlet/jsp/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=jeus/servlet/jsp2/runtime/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=weblogic/servlet/jsp/JspWriterImpl.print(Ljava/lang/String;)V + +jspWriteA=weblogic/servlet/jsp/JspWriterImpl.write([BLjava/lang/String;)V +jspWriteB=org/apache/jasper/runtime/JspWriterImpl.write(Ljava/lang/String;II)V +jspWriteC=org/apache/jasper/runtime/JspWriterImpl.write([CII)V + +logRecord=jeus/util/logging/JeusLogRecord.(Ljava/util/logging/Level;Ljava/lang/String;)V + +servletThrowable=javax/servlet/ServletException.getRootCause()Ljava/lang/Throwable; + +#XmTxnKepco@com.exem.weave.servlet.XmTxnKepco +#XmTxnKepco= +#getName(String txnName, Object[] obj) + +#XmSetTxnName@com.exem.weave.tx.XmSetTxnName +#XmSetTxnName= +#TXN_NAME_SET_INDEX=1~n +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnName2@com.exem.weave.tx.XmSetTxnName2 +#XmSetTxnName2= +#TXN_NAME_SET_INDEX2=1~n + +#XmSetTxnNameRet@com.exem.weave.tx.XmSetTxnNameRet +#XmSetTxnNameRet= +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnNameRet2@com.exem.weave.tx.XmSetTxnNameRet2 +#XmSetTxnNameRet2= + +#XmAppendTxnName@com.exem.weave.tx.XmAppendTxnName +#XmAppendTxnName= +#TXN_NAME_APPEND_INDEX=1~n + +#XmAppendTxnNameRet@com.exem.weave.tx.XmAppendTxnNameRet +#XmAppendTxnNameRet= \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.param.runtime b/intermax/2208.06_type4/jspd/cfg/jspd.param.runtime new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.plc.list b/intermax/2208.06_type4/jspd/cfg/jspd.plc.list new file mode 100755 index 0000000..466d714 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.plc.list @@ -0,0 +1,23 @@ +########################################### PLC 기능 ########################################### + +### 작성방법 +# [숫자] : 제어 기준 수치(기준 트랜잭션수) +# 접두사 ^(caret) : 차단할 트랜잭션명 +# 접두사 .*(dot asterisk) : 와일드 카드 +# 제어 기준은 여러 개를 입력할 수 있으며, 그 기준은 이 파일의 위에서 아래순으로 우선 적용된다. + +### 작성예시 +# [200] +# ^.*/select +# +# [100] +# ^.*oracle/select +# .*postgres/select +# +# [50] +# ^.*postgres/select +# +# 액티브 트랜잭션 수가 200 이상이면 /select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 oracle/select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 postgres/select로 끝나는 트랜잭션은 허용한다. +# 액티브 트랜잭션 수가 50 이상이면 postgres/select로 끝나는 모든 트랜잭션을 차단한다. \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.x.advice b/intermax/2208.06_type4/jspd/cfg/jspd.x.advice new file mode 100755 index 0000000..85337f6 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.x.advice @@ -0,0 +1,71 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpCallHeader@com.exem.weave.io.XmHttpCallHeader +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xInbound@com.exem.weave.io.XmXInbound +xOutbound@com.exem.weave.io.XmXOutbound +xReply@com.exem.weave.io.XmXReply +service@com.exem.weave.servlet.XmService + +########## APPLICATION ########## +#appService= + +#websphere 8.5 browser response time +#service=com/ibm/ws/webcontainer/filter/WebAppFilterManager.invokeFilters(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lcom/ibm/wsspi/webcontainer/servlet/IServletContext;Lcom/ibm/wsspi/webcontainer/RequestProcessor;Ljava/util/EnumSet;)Z + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/commons/httpclient/HttpMethodBase.execute(Lorg/apache/commons/httpclient/HttpState;Lorg/apache/commons/httpclient/HttpConnection;)I + +## soap ## +httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;II)Lorg/apache/soap/transport/TransportMessage; +## soap-2.3.jar higher ## +#httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;IILjava/lang/Boolean;)Lorg/apache/soap/transport/TransportMessage; +## apache axis ## +httpCall=org/apache/axis/client/Call.setRequestMessage(Lorg/apache/axis/Message;)V +## reactor netty / jetty (webflux) ## +httpCall=reactor/netty/http/client/HttpClientConnect.connect()Lreactor/core/publisher/Mono; +httpCall=org/eclipse/jetty/client/HttpRequest.send(Lorg/eclipse/jetty/client/api/Response$CompleteListener;)V +## Spring AsyncRestTemplate ## +httpCall=org/springframework/web/client/AsyncRestTemplate$AsyncRequestCallbackAdapter.doWithRequest(Lorg/springframework/http/client/AsyncClientHttpRequest;)V +## apache httpasyncclient ## +httpCall=org/apache/http/impl/nio/client/CloseableHttpAsyncClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/protocol/HttpContext;Lorg/apache/http/concurrent/FutureCallback;)Ljava/util/concurrent/Future; +## okhttp ## +httpCallHeader=okhttp3/Request$Builder.build()Lokhttp3/Request; +httpCall=okhttp3/RealCall.execute()Lokhttp3/Response; +httpCall=okhttp3/RealCall.enqueue(Lokhttp3/Callback;)V +## spring cloud zuul (restclient) ## +httpCallHeader=com/netflix/client/http/HttpRequest$Builder.build()Lcom/netflix/client/http/HttpRequest; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V + +########## Kafka ########## +kafkaProduce@com.exem.weave.io.XmKafkaProduce +kafkaProduce=org/apache/kafka/clients/producer/KafkaProducer.doSend(Lorg/apache/kafka/clients/producer/ProducerRecord;Lorg/apache/kafka/clients/producer/Callback;)Ljava/util/concurrent/Future; + +########## RabbitMQ ########## +rabbitMQPublish@com.exem.weave.io.XmRabbitMQPublish +rabbitMQPublish=com/rabbitmq/client/impl/AMQChannel.transmit(Lcom/rabbitmq/client/impl/AMQCommand;)V diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.x.advice.sample b/intermax/2208.06_type4/jspd/cfg/jspd.x.advice.sample new file mode 100755 index 0000000..336c402 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/jspd.x.advice.sample @@ -0,0 +1,63 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xOutbound@com.exem.weave.io.XmXOutbound +xInbound@com.exem.weave.io.XmXInbound +xReply@com.exem.weave.io.XmXReply +#httpURL@com.exem.weave.io.XmHttpURL +#txnKBank@com.exem.weave.tx.XmSetTxnName + +########## APPLICATION ########## +#appService= + +########## IGATE MCI ############ +#appService=com/inzent/igate/service/activity/ActService.executeService(Lcom/inzent/igate/message/Record;Lcom/inzent/igate/repository/meta/Service;Lcom/inzent/igate/message/Record;Lorg/apache/commons/logging/Log;)Lcom/inzent/igate/message/Record; +#httpURL=com/inzent/igate/session/http/thin/HttpClientSession.getRequestURI(Lcom/inzent/igate/adapter/AdapterParameter;)Ljava/lang/String; +#HttpCall=com/inzent/igate/session/http/thin/HttpSession.writeHeader(Ljava/util/Map;)V + +########## Bankware CORE ########## +#txnKBank=kbank/extention/service/endpoint/HttpServiceEndpoint.loadParameters(Lbxm/request/ResolvedRequest;Lkbank/extention/context/impl/KbankInstitutionParameters;Lkbank/extention/context/impl/KbankCachedControlParameters;Lkbank/extention/service/trace/KbankServiceMessageTrace;)V + +########## TIBCO BW EAI ########### +#appService=com/tibco/plugin/share/http/client/JakartaHttpTransportDriver$RequestExecutor.run()V +#appService=com/tibco/plugin/tcp/TCPReadActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#appService=com/tibco/plugin/tcp/TCPWriteActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#xCall=com/tibco/bw/service/binding/bwhttp/impl/HttpTransportApplication.a(Lcom/tibco/xml/soap/api/transport/TransportMessage;Lcom/tibco/bw/service/config/ec/OperationConfiguration;Lcom/tibco/plugin/share/siapiplugin/bw/BwPort;Lcom/tibco/plugin/share/security/context/SecurityContext;)V +#xOutbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.setContent([B)V +#xInbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.getContent()[B +#xInbound=com/tibco/xml/data/primitive/values/XsBase64Binary.castAsBase64Binary()[B +#xCall=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.long()[B +#xOutbound=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.void()[B + +########## ANYLINK4 FEP ########### +#txnKBankRet=anylink/engine/AnyLink.responseMapping([BLjava/lang/Object;[BLjava/lang/Object;ILanylink/common/object/TxParameter;ZLanylink/common/exception/AnyLinkRequestFormatErrorException;)[B +#xCall=anylink/engine/AnyLink.process([BLjava/lang/Object;Z[Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Object; +#xOutbound=anylink/engine/AnyMapper.mapping([B[BLjava/lang/Object;Z)V + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V diff --git a/intermax/2208.06_type4/jspd/cfg/jspd.x.include b/intermax/2208.06_type4/jspd/cfg/jspd.x.include new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/cfg/license.NH_20221231.rts.key b/intermax/2208.06_type4/jspd/cfg/license.NH_20221231.rts.key new file mode 100755 index 0000000..d17cc0d --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/license.NH_20221231.rts.key @@ -0,0 +1 @@ +87538198C5286B63B454C5A2F778D2C8E16466D071A930AC42D112FC4A4ADFA63F399735973BD16E0BE0F38549489BF2186B4B6FBE6B34C23B369ADC5689DE757B425E6AAB45EA83E5E9C7DDEBF64F08BF5FFF071FCDA2315B92A704B6B0EB26C8A93C7444399B77D7DEFFA161ED263433E15B25B02C3889EAEC40EE35DCF82189BD5AAB9E6930E69B10D7F829A9F1CBD0BB1F82F364739B2DB4BDBCED1CF936B6F0B108D470355F2B131C7B91876BC56E1C0B80CF84CBFC46AD3582203C2FF87E73986DD5897EED263A26A59B6A94ADE8B0AEBB1A5C7480FD1907D2D8F48C21B6A1CCA0AE2B7FEDE2D17666B8FA3812F5CF766737F9B3C91DC2781C71DE8E62FFFFFF02F9467E0A2C231B103D6C560C217356429200130357243089491020107167288349027049240480248425150511426153308144162424260277106002005333381320428317062394109096484010448165279241263071174485315101341069125171463201092266000143018195295261384064037354270402097014296039052290131400459042077210102112370181256278118050353029189344094206231142313003047316470378036113011396E7724B75FCA0B3497F3BA8059AE8B9A8B9F758D3CF636B87B9F758D3CF636B874A659EBE63E5C842F4569E5E58082C6324AC6B077E91B41B978EFD109A5F42C22199DC5A8A816A7B9E61F395A87C0DBF9B7405A53DADCECA3C2F25A3FEFCC6AFD3436E0C56F7799D6F927D79DDECD754588947987DF761D4E4A76073398600465ED3FE7CD6D8E7F889E8171B058B0053A39E243B65A147FC58575D01E6AFA5B2698192084329987AF3E3C3FCD787C43FA7F3007C676C6691205EF7CDEE880DD032B7569961FD701B2E794A416D08971F4349FC8A2CA7D6D056EF9C4C0887723BB86C46177BBBC3E2A5004704256AAEC0A933706B9DF5B19AB6D96E0CDAFCB4F0A4CBD4EBFC9AC6B89149A2FA7BE3456FF28888440050FC498C5BAF09C111AF11BCE2B246B7F2320013F72A73CB7ADC6525F2397C4FFA01415A08A676582FB67244A237B22A9050B2ADAD38A667D1A867D840DF8BBDDD730B9B60FF2152E303AD9B6327A842BCB04DD76C783DEDB5558CA16733548E9CD3EAA3D0656E6F6BA7C87C578D522FF7BB72B6D02B9A780D8115E971EE392D897853DB383E2991CD76FF15316CDE53D365C9E588BAF0DEA3DB6819FAD795F086AF261C630DF76FE7B39A692B254536894BA31CE01473460C2C29F72835A543C4BADFC56C530CDE3A9E7189C7017FF2145BD268E3E740B2A308209DFA782AF4BDDE364B69311DD0964818F3308F5D2BCFC914D52BE659181BAF0F7503F5EA3AA266AB96C508AE9C2D361947B191B8EF47088A253945743134910303d122095327509001NH_20221231 \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230131.rts.key b/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230131.rts.key new file mode 100644 index 0000000..1fd46b6 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230131.rts.key @@ -0,0 +1 @@ +02A3E20007E294BC1315634649EBC10021D600DE2C73868D2F0C3E1A5C4154BDA18C6A225D0D4E01228B5A896039832C80455EE92FC820A997FD64BDDCA41139AF621C96C322B124ACBCCE607B724F9D4CB155CFC4E3DED5E0962119604C31AAAC8FBB140132431B1628307B78D2085C49F13A5A153DF2B7F0A2E25F0171D7A183E269695546378503A63A77E1DE3682A33A0D49ED93A28CB8DC7B4D6787E3D754E4DE17C5ADC60E0F2974AE733502D4677F857601BBEFDCF202CE04939E5C9ED34AAA9386517C77E10DF8352293C9D52E2694C8C7E946CF9216F89CFD35AB4141886733A767A9E074E475AAEA688391446A0A0D7751440DDF6E8A2B2A20DF33FFFFFF021876C1B02C23B04BE4FF643D23106433140410427228217247545949707719424627307325026722000715720447837729447032736034345504414416023528018929116251014707511226434513831507448405340834638729912043421509215808522913608718210635721336634031617128425236920046550411105937110800427115548211923616329745048908111405239326513140106038615617405403437511713028830300051109428347DF2A38202621081016DA2E970A8D2F163C44E912F86CFB1544D1D446AC032E09A0F3E8E6BD479F43C5DFE8769B8A44E44561AA20DC3C0081A3719BE4A68106B61D0A755BDE1A9AEAA8E34A7775E2223A85F6AFA701A6AC955B2C8F657067162A149560726246A4AC13ECB2EC436E5E76B72AEAAA389AF6E6CE59EBF12C6C7D226172799A55FA0A80455EE95FB890AD251CCDBAC6BB344EE1F4F3841F8AFDA2CF454D7567297018224B49E7E54048ADA5B24481AC576413B348EF303B542519984870AA7CD4EF379B54E4BD57835947B92C9C95714F6FE5A179A99AB20A6BAA85071AC264F5D41923CB9ACA1CD3B3EDDC882546FC1C346C7C71830855677B8242871D39A21A18B0FF75E658CF2E5798678DB07BEA1BE479F0C53C38BEAB9BB554DE5FD8241879B51F26B0712788B5DE92004F29712AAE545A5AE34A0E821F8D56FE5A7FCB9B50AAA4864C0DBBBC46F2113ABBFABD5B1A385308394BBB3B69AD18D56B4128A7F32AC3F8002E13D3735874937039EE159F92F272876745DAE97797D2CA92BF80FD9941A3B6A5F6B77D9F7E10413F47514182F8E9FB13D70F8B70FC1DDA53FC13427D7B81A6E261BD6E797D7F4578B81F8575C420CC960DCB897E246B0F8F8D7E7766B52B7A5B5DEE533F074C145FAC97F7D8C65A6FB17F818CF56E9A2357D66A5E1C450C353D04060E5DFC703A9D0CBBE452C8ABEF7FD1652DE133A58DC595ACE6B265BE237DE937AC0FD3CC50857DE04FC811D1BFA7C0964ED6F6479B30FE5B471B2D8508803720647003d036436392181166RTS_TRIAL_20230131 \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230331.rts.key b/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230331.rts.key new file mode 100644 index 0000000..5d0ffb9 --- /dev/null +++ b/intermax/2208.06_type4/jspd/cfg/license.TRIAL_20230331.rts.key @@ -0,0 +1 @@ +F80EB86B73FCCC170EFBE5D7E6C4F4DB722BCFAC95817F7FE605C2DDCA48D481AA46DD868A8B4402F577249009E0976F1B789B9477F3F71161C8A1EC2777A7B9BBABED318E3081589E63CB03032E9D2ABE7B83298EDF40EB28C27D735F6974716214679EA3878A10E50478181B6369E6990299D8E9ABEA851F226FF7F01D9890DE872D0BF2C31B504EF4BA8D19F7E6BA167E540BB82A1B49906FFA81EB1D951DEB9C5EBC3091B55293E51B364AF0BFEE5E6BD0635D0047709B24580A44B2310637858EE619FD40A01128221FB0F951E63DCA1E742589A2E7D4FDD31F1E60404E94DF84A52612727636141B9463DB8C875DEB543935D63D3F8C9B8B634F825C4AFFFFFF02E2A5DEBF2C14ED470D9AA1CC493389106416380480383043443452303327292404225270120473135251343394464079395414436432371442033360402199253013051116391247030502373273097182219304336326335163203154075012447211110239087134245099218095387430084289495407341297137236417186455196462349155331367026234368187052496437296409091405346064250047197451263174210201171226283130008418E622800961AEF8825A0557E5AB0A9F1A0DB1B6C124F78B13FA1F7FBE03F07A7C8CBF8E4D3CA9343049AFD72C5E63DA0C99B968F9153E5A2B71383EF62C1520A3778EE44D2EE5F549FC42141643026286E62B240109555AD9ABDA497DECB22B15AA8B5A12CF0C7F9749C11E839CD09C92790BAE895B3CA6EFB39479B0226215F7E3F8F70E60CFFF7EB3119292312E3875A0673666FD451DBBE022373C205B9F427F60274E7E2590DACC2E58C14C199E0E501594FE38598F622D7B3C9C759E731B6C428923C3F899FC0A7C36362B228C0AAE873B7ACFB71D8688B71B5C7B14B03E6C991F33ADCBFA3C79EB2FE6CA5C7E205DCEC58183AC516BDA2190A6AE3AC570A92F4E259153DDC22D5B43F2F8E5C557359468A15E8E53A0508FA4E7583B070C615A1C2B1D512385E841C70E43516A20B447214C5D89BF5580BF0D3D211F32C0969F5E27DEC996A4DB4A237CB2A691AEE3BE53D701151830CD6ABBA58B4690E2408EFB424065D1104067E1BEC0D8F94D2A9A8016F9E8814E6809FA9A8D9D4BFAF4A9CDB720E4B4D7CC61FE41402545401BF03B90CC3C43C8B5E0AE7AA56F10A1CCE90102875F56A09F4072C2AAEBEE9A8BD01F17A2EC44AA586B3307FC5E8FD403A526065589AE64DE0FC669D8FEC1F0CF1F4A0D5237CE3CA11974C5EFFFBF4950C0D09B6EC4F79908CB7E6F222FE15C7DBDCA632FAC5348BB7E23FBD506F1422309B08C00A5D6F7C26D4DC266AB93C69AA51823685FE24FCB80235A3AE50D8D12B02177C090B950B17B15048116945703d429292136371030RTS_TRIAL_20230331 \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/data/agent/0 b/intermax/2208.06_type4/jspd/data/agent/0 new file mode 100644 index 0000000..f803c59 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/0 @@ -0,0 +1 @@ +11878 diff --git a/intermax/2208.06_type4/jspd/data/agent/10 b/intermax/2208.06_type4/jspd/data/agent/10 new file mode 100644 index 0000000..f49fbd6 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/10 @@ -0,0 +1 @@ +4418 diff --git a/intermax/2208.06_type4/jspd/data/agent/11 b/intermax/2208.06_type4/jspd/data/agent/11 new file mode 100644 index 0000000..c179a53 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/11 @@ -0,0 +1 @@ +4665 diff --git a/intermax/2208.06_type4/jspd/data/agent/12 b/intermax/2208.06_type4/jspd/data/agent/12 new file mode 100644 index 0000000..fda9a19 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/12 @@ -0,0 +1 @@ +5103 diff --git a/intermax/2208.06_type4/jspd/data/agent/13 b/intermax/2208.06_type4/jspd/data/agent/13 new file mode 100644 index 0000000..da51112 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/13 @@ -0,0 +1 @@ +5282 diff --git a/intermax/2208.06_type4/jspd/data/agent/14 b/intermax/2208.06_type4/jspd/data/agent/14 new file mode 100644 index 0000000..c105bcb --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/14 @@ -0,0 +1 @@ +27178 diff --git a/intermax/2208.06_type4/jspd/data/agent/15 b/intermax/2208.06_type4/jspd/data/agent/15 new file mode 100644 index 0000000..22ce029 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/15 @@ -0,0 +1 @@ +15495 diff --git a/intermax/2208.06_type4/jspd/data/agent/16 b/intermax/2208.06_type4/jspd/data/agent/16 new file mode 100644 index 0000000..d60cbb4 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/16 @@ -0,0 +1 @@ +27583 diff --git a/intermax/2208.06_type4/jspd/data/agent/18 b/intermax/2208.06_type4/jspd/data/agent/18 new file mode 100644 index 0000000..620eb67 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/18 @@ -0,0 +1 @@ +21822 diff --git a/intermax/2208.06_type4/jspd/data/agent/19 b/intermax/2208.06_type4/jspd/data/agent/19 new file mode 100644 index 0000000..a8b8843 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/19 @@ -0,0 +1 @@ +14964 diff --git a/intermax/2208.06_type4/jspd/data/agent/21 b/intermax/2208.06_type4/jspd/data/agent/21 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/21 @@ -0,0 +1 @@ +0 diff --git a/intermax/2208.06_type4/jspd/data/agent/4 b/intermax/2208.06_type4/jspd/data/agent/4 new file mode 100644 index 0000000..a28d296 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/4 @@ -0,0 +1 @@ +4620 diff --git a/intermax/2208.06_type4/jspd/data/agent/5 b/intermax/2208.06_type4/jspd/data/agent/5 new file mode 100644 index 0000000..76970ad --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/5 @@ -0,0 +1 @@ +4310 diff --git a/intermax/2208.06_type4/jspd/data/agent/6 b/intermax/2208.06_type4/jspd/data/agent/6 new file mode 100644 index 0000000..c15b556 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/6 @@ -0,0 +1 @@ +14890 diff --git a/intermax/2208.06_type4/jspd/data/agent/7 b/intermax/2208.06_type4/jspd/data/agent/7 new file mode 100644 index 0000000..5c0ea13 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/7 @@ -0,0 +1 @@ +15118 diff --git a/intermax/2208.06_type4/jspd/data/agent/8 b/intermax/2208.06_type4/jspd/data/agent/8 new file mode 100644 index 0000000..052836a --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/8 @@ -0,0 +1 @@ +29251 diff --git a/intermax/2208.06_type4/jspd/data/agent/9 b/intermax/2208.06_type4/jspd/data/agent/9 new file mode 100644 index 0000000..477ad01 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/9 @@ -0,0 +1 @@ +29448 diff --git a/intermax/2208.06_type4/jspd/data/agent/imxosm b/intermax/2208.06_type4/jspd/data/agent/imxosm new file mode 100644 index 0000000..b03f1fa Binary files /dev/null and b/intermax/2208.06_type4/jspd/data/agent/imxosm differ diff --git a/intermax/2208.06_type4/jspd/data/agent/imxtxn b/intermax/2208.06_type4/jspd/data/agent/imxtxn new file mode 100644 index 0000000..121755b Binary files /dev/null and b/intermax/2208.06_type4/jspd/data/agent/imxtxn differ diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/0 b/intermax/2208.06_type4/jspd/data/agent/oom/0 new file mode 100644 index 0000000..aebde73 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/0 @@ -0,0 +1 @@ +8766 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/10 b/intermax/2208.06_type4/jspd/data/agent/oom/10 new file mode 100644 index 0000000..f49fbd6 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/10 @@ -0,0 +1 @@ +4418 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/11 b/intermax/2208.06_type4/jspd/data/agent/oom/11 new file mode 100644 index 0000000..c179a53 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/11 @@ -0,0 +1 @@ +4665 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/12 b/intermax/2208.06_type4/jspd/data/agent/oom/12 new file mode 100644 index 0000000..e7f2f2a --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/12 @@ -0,0 +1 @@ +8334 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/13 b/intermax/2208.06_type4/jspd/data/agent/oom/13 new file mode 100644 index 0000000..e86a423 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/13 @@ -0,0 +1 @@ +8563 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/14 b/intermax/2208.06_type4/jspd/data/agent/oom/14 new file mode 100644 index 0000000..2e64788 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/14 @@ -0,0 +1 @@ +21548 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/15 b/intermax/2208.06_type4/jspd/data/agent/oom/15 new file mode 100644 index 0000000..f2232d0 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/15 @@ -0,0 +1 @@ +21640 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/16 b/intermax/2208.06_type4/jspd/data/agent/oom/16 new file mode 100644 index 0000000..d60cbb4 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/16 @@ -0,0 +1 @@ +27583 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/18 b/intermax/2208.06_type4/jspd/data/agent/oom/18 new file mode 100644 index 0000000..d8fbdc3 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/18 @@ -0,0 +1 @@ +14632 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/19 b/intermax/2208.06_type4/jspd/data/agent/oom/19 new file mode 100644 index 0000000..a8b8843 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/19 @@ -0,0 +1 @@ +14964 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/21 b/intermax/2208.06_type4/jspd/data/agent/oom/21 new file mode 100644 index 0000000..0e12876 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/21 @@ -0,0 +1 @@ +22206 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/4 b/intermax/2208.06_type4/jspd/data/agent/oom/4 new file mode 100644 index 0000000..b8b2310 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/4 @@ -0,0 +1 @@ +2575 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/5 b/intermax/2208.06_type4/jspd/data/agent/oom/5 new file mode 100644 index 0000000..35a1195 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/5 @@ -0,0 +1 @@ +2861 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/6 b/intermax/2208.06_type4/jspd/data/agent/oom/6 new file mode 100644 index 0000000..cc1e963 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/6 @@ -0,0 +1 @@ +29847 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/7 b/intermax/2208.06_type4/jspd/data/agent/oom/7 new file mode 100644 index 0000000..eae204b --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/7 @@ -0,0 +1 @@ +30137 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/8 b/intermax/2208.06_type4/jspd/data/agent/oom/8 new file mode 100644 index 0000000..5f7c562 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/8 @@ -0,0 +1 @@ +6823 diff --git a/intermax/2208.06_type4/jspd/data/agent/oom/9 b/intermax/2208.06_type4/jspd/data/agent/oom/9 new file mode 100644 index 0000000..b59cf60 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/agent/oom/9 @@ -0,0 +1 @@ +9985 diff --git a/intermax/2208.06_type4/jspd/data/common.immf b/intermax/2208.06_type4/jspd/data/common.immf new file mode 100644 index 0000000..fcac76c Binary files /dev/null and b/intermax/2208.06_type4/jspd/data/common.immf differ diff --git a/intermax/2208.06_type4/jspd/data/xm_jspd_api_em.js b/intermax/2208.06_type4/jspd/data/xm_jspd_api_em.js new file mode 100755 index 0000000..83166c9 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/xm_jspd_api_em.js @@ -0,0 +1,147 @@ + +(function () { + var _XM_TID = '%{XM_TID}'; + var _XM_TRACE_ELAPSE = '%{XM_TRACE_ELAPSE}'; + var _XM_CLIENT_API = '_XM_CLIENT_API%{XM_CLIENT_API}'; + var _XM_CLIENT_ADDR = '%{XM_CLIENT_ADDR}'; + var _XM_TID_HEADER = 'X-Xm-Tid'; + var _XM_TRACE_ELAPSE_HEADER = 'X-Xm-ElapseTime'; + + + var openProxied = window.XMLHttpRequest.prototype.open; + window.XMLHttpRequest.prototype.open = function () { + if (arguments[1].indexOf(_XM_CLIENT_API) == -1) { + if (document.removeEventListener) { + this.removeEventListener("loadstart", _xm_loadstart); + this.removeEventListener("loadend", _xm_loadend); + } + else { + this.detachEvent("loadstart", _xm_loadstart); + this.detachEvent("loadend", _xm_loadend); + } + if (this.addEventListener) { + this.addEventListener("loadstart", _xm_loadstart); + this.addEventListener("loadend", _xm_loadend); + } + else if (this.attachEvent) { + this.attachEvent("onloadstart", _xm_loadstart); + this.attachEvent("onloadend", _xm_loadend); + } + } + return openProxied.apply(this, [].slice.call(arguments)); + }; + + var _xm_loadstart = function () { + var eventProxied = this.onreadystatechange; + this.onreadystatechange = function () { + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.es = Date.now(); + } + + if (eventProxied != null && typeof eventProxied != 'undefined') { + eventProxied.apply(this, [].slice.call(arguments)); + } + + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.ee = Date.now(); + } + }; + this._xm_clientinfo = __xm_create_clientinfo(); + this._xm_clientinfo.ss = Date.now(); + this._xm_clientinfo.se = Date.now(); + }; + + var _xm_loadend = function () { + if (typeof this._xm_clientinfo == 'undefined') return; + if (this._xm_clientinfo.es == 0) { + this._xm_clientinfo.es = Date.now(); + this._xm_clientinfo.ee = Date.now(); + } + this._xm_clientinfo.tid = this.getResponseHeader(_XM_TID_HEADER); + var traceElapseTime = this.getResponseHeader(_XM_TRACE_ELAPSE_HEADER); + + if (typeof traceElapseTime == 'undefined' || typeof this._xm_clientinfo.tid == 'undefined') { + return; + } + + if (traceElapseTime > this._xm_clientinfo.ee - this._xm_clientinfo.ss) { + return; + } + + var _xm_clientinfo = this._xm_clientinfo; + __xm_send_post(_xm_clientinfo); + }; + + function __xm_create_clientinfo() { + var clientinfo = {}; + clientinfo.tid = 0; + clientinfo.ss = 0; + clientinfo.se = 0; + clientinfo.es = 0; + clientinfo.ee = 0; + return clientinfo; + } + + function __xm_send_post(clientinfo) { + try{ + var queryParameters = 'tid=' + clientinfo.tid + '&ss=' + clientinfo.ss + "&se=" + clientinfo.se; + queryParameters += '&es=' + clientinfo.es + "&ee=" + clientinfo.ee; + + var xmlhttp; + if (window.XMLHttpRequest) { + xmlhttp = new XMLHttpRequest(); + } else { + xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); + } + + if(_XM_CLIENT_ADDR == "") { + xmlhttp.open('GET', './'+_XM_CLIENT_API+'?' + queryParameters, true); + }else{ + xmlhttp.open('GET', 'http://' + _XM_CLIENT_ADDR + '/' + _XM_CLIENT_API + '?' + queryParameters, true); + } + + xmlhttp.send(null); + + if (true) { + var sendElapseTime = clientinfo.se - clientinfo.ss; + var recvElapseTime = clientinfo.ee - clientinfo.es; + var serverElapseTime = clientinfo.es - clientinfo.se; + + console.log('__xm_send_post serverElapseTime=' + serverElapseTime + ', sendElapseTime=' + sendElapseTime + ', recvElapseTime=' + recvElapseTime); + } + } + catch(e) { + console.log(e); + } + } + + var _xm_window_load = function () { + //return; + setTimeout(function () { + var timing = window.performance.timing; + var clientinfo = __xm_create_clientinfo(); + clientinfo.ss = timing.navigationStart; + clientinfo.se = timing.connectEnd; + clientinfo.es = timing.responseEnd; + clientinfo.ee = timing.loadEventEnd; + clientinfo.tid = _XM_TID; + + if (_XM_TRACE_ELAPSE > clientinfo.ee - clientinfo.ss) { + return; + } + + __xm_send_post(clientinfo); + }, 0); + }; + + if (!window.performance || !window.performance.timing) { + return; + } + + if (this.addEventListener) { + this.addEventListener("load", _xm_window_load); + } + else if (this.attachEvent) { + this.attachEvent("onload", _xm_window_load); + } +})(); diff --git a/intermax/2208.06_type4/jspd/data/xm_plc_message.html b/intermax/2208.06_type4/jspd/data/xm_plc_message.html new file mode 100755 index 0000000..40a7658 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/xm_plc_message.html @@ -0,0 +1,30 @@ + + + + Message (InterMax) + + + + + +
    %{XM_PLC_MESSAGE}
    + + + \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/data/xm_rum_message.html b/intermax/2208.06_type4/jspd/data/xm_rum_message.html new file mode 100755 index 0000000..d18d8f2 --- /dev/null +++ b/intermax/2208.06_type4/jspd/data/xm_rum_message.html @@ -0,0 +1,28 @@ + + + + Message (InterMax) + + + +

    InterMax Rum Message

    +
    %{XM_RUM_MESSAGE}
    + + \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/lib/CheckEnv.class b/intermax/2208.06_type4/jspd/lib/CheckEnv.class new file mode 100755 index 0000000..7a1ac34 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/CheckEnv.class differ diff --git a/intermax/2208.06_type4/jspd/lib/IMXAgent.bat b/intermax/2208.06_type4/jspd/lib/IMXAgent.bat new file mode 100755 index 0000000..8a50903 --- /dev/null +++ b/intermax/2208.06_type4/jspd/lib/IMXAgent.bat @@ -0,0 +1,25 @@ + +@echo off + +setlocal + +SET INTERMAX_HOME=%1 +SET IMX_NAME=%2 +SET IMX_BIT=%3 + +if "%IMX_BIT%" == "32" ( + set "path=%INTERMAX_HOME%\lib\imx\DLL\x86;" +) + + +if exist %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe ( + REM echo file exists +) else ( + copy %INTERMAX_HOME%\lib\imx\%IMX_NAME%_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe + copy %INTERMAX_HOME%\lib\imx\imxtxn_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxtxn.exe + copy %INTERMAX_HOME%\lib\imx\imxuts_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxuts.exe +) + +%INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe -D + +exit 0 diff --git a/intermax/2208.06_type4/jspd/lib/IMXAgent.sh b/intermax/2208.06_type4/jspd/lib/IMXAgent.sh new file mode 100755 index 0000000..8e26b49 --- /dev/null +++ b/intermax/2208.06_type4/jspd/lib/IMXAgent.sh @@ -0,0 +1,70 @@ +#!/bin/sh + +INTERMAX_HOME="$1" +IMX_NAME="$2" +IMX_BIT="$3" + +OS_NAME=`uname` +OS_ARCH=`uname -m` +IM_FILE=$INTERMAX_HOME"/lib/imx/"$IMX_NAME + +# check arguments +if [ $# -eq 3 ]; +then + if [ ! -f $IM_FILE ]; + then + # set process name + case $OS_NAME in + "HP-UX" ) OS_BIT=`getconf KERNEL_BITS` + if [ $OS_ARCH != "ia64" ]; + then + IMX_PROC_NAME=$IMX_NAME"_hppa_"$OS_BIT + else + IMX_PROC_NAME=$IMX_NAME"_hpia_"$OS_BIT + + # if [ $IMX_NAME = "imxosm" ] && [ $OS_BIT = "64" ] && [ $IMX_BIT = "32" ]; + # then + # IMX_PROC_NAME=$IMX_PROC_NAME"a"$IMX_BIT + # fi + fi + ;; + + "SunOS" ) OS_BIT=`isainfo -b` + IMX_PROC_NAME=$IMX_NAME"_sun_"$OS_BIT + ;; + + "AIX" ) if [ "" != "`file /usr/lib/boot/unix* | grep 64`" ]; + then + OS_BIT="64" + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_aix_"$OS_BIT + ;; + + "Linux" ) if [ $OS_ARCH = "x86_64" ]; + then + OS_BIT="64" + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_linux_"$OS_BIT + ;; + + * ) echo "Unkown OS Name: $OS_NAME" + exit 1 + ;; + + esac + + cp $INTERMAX_HOME"/lib/imx/"$IMX_PROC_NAME $IM_FILE + + chmod 750 $IM_FILE + + fi + + export INTERMAX_HOME + # start process + $IM_FILE -D + +fi diff --git a/intermax/2208.06_type4/jspd/lib/JavaService.exe b/intermax/2208.06_type4/jspd/lib/JavaService.exe new file mode 100755 index 0000000..fb32708 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/JavaService.exe differ diff --git a/intermax/2208.06_type4/jspd/lib/asm-1.5.4.jar b/intermax/2208.06_type4/jspd/lib/asm-1.5.4.jar new file mode 100755 index 0000000..fa4336b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/asm-1.5.4.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm b/intermax/2208.06_type4/jspd/lib/imx/imxosm new file mode 100755 index 0000000..7c97cc5 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_aix_64 b/intermax/2208.06_type4/jspd/lib/imx/imxosm_aix_64 new file mode 100755 index 0000000..2be76f7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_aix_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_hpia_64 b/intermax/2208.06_type4/jspd/lib/imx/imxosm_hpia_64 new file mode 100755 index 0000000..ce171bb Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_hpia_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_32 b/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_32 new file mode 100755 index 0000000..506bfcb Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_32 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_64 b/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_64 new file mode 100755 index 0000000..7c97cc5 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_linux_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_sun_64 b/intermax/2208.06_type4/jspd/lib/imx/imxosm_sun_64 new file mode 100755 index 0000000..894eda3 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_sun_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_32.exe b/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_32.exe new file mode 100755 index 0000000..8deee3e Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_32.exe differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_64.exe b/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_64.exe new file mode 100755 index 0000000..0d2ee7c Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxosm_win_64.exe differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn b/intermax/2208.06_type4/jspd/lib/imx/imxtxn new file mode 100755 index 0000000..9cfa0a7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_aix_64 b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_aix_64 new file mode 100755 index 0000000..24be6f0 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_aix_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_hpia_64 b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_hpia_64 new file mode 100755 index 0000000..165e714 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_hpia_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_32 b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_32 new file mode 100755 index 0000000..00ac446 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_32 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_64 b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_64 new file mode 100755 index 0000000..9cfa0a7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_linux_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_sun_64 b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_sun_64 new file mode 100755 index 0000000..c93ee57 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_sun_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_32.exe b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_32.exe new file mode 100755 index 0000000..f4a810e Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_32.exe differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_64.exe b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_64.exe new file mode 100755 index 0000000..80623b3 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/imxtxn_win_64.exe differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/libs/libldap.so.5 b/intermax/2208.06_type4/jspd/lib/imx/libs/libldap.so.5 new file mode 100755 index 0000000..ad2f98d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/libs/libldap.so.5 differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/msvcr100.dll b/intermax/2208.06_type4/jspd/lib/imx/msvcr100.dll new file mode 100755 index 0000000..0318fb0 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/msvcr100.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/msvcr100d.dll b/intermax/2208.06_type4/jspd/lib/imx/msvcr100d.dll new file mode 100755 index 0000000..5adaf8e Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/msvcr100d.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/vcruntime140.dll b/intermax/2208.06_type4/jspd/lib/imx/vcruntime140.dll new file mode 100755 index 0000000..64e5016 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/vcruntime140.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/vcruntime140d.dll b/intermax/2208.06_type4/jspd/lib/imx/vcruntime140d.dll new file mode 100755 index 0000000..671af4c Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/vcruntime140d.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/zlib1.dll b/intermax/2208.06_type4/jspd/lib/imx/zlib1.dll new file mode 100755 index 0000000..31996cd Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/zlib1.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imx/zlibwapi.dll b/intermax/2208.06_type4/jspd/lib/imx/zlibwapi.dll new file mode 100755 index 0000000..4194c0d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imx/zlibwapi.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/imxwsm.jar b/intermax/2208.06_type4/jspd/lib/imxwsm.jar new file mode 100755 index 0000000..3d47115 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/imxwsm.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_32.dll b/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_32.dll new file mode 100755 index 0000000..96dc117 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_32.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_64.dll b/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_64.dll new file mode 100755 index 0000000..72215e8 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/ImxJNI_win_64.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/jni_pcap_win_64.dll b/intermax/2208.06_type4/jspd/lib/jni/jni_pcap_win_64.dll new file mode 100755 index 0000000..fce85ac Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/jni_pcap_win_64.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 new file mode 100755 index 0000000..9fe1e98 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 new file mode 100755 index 0000000..d52a18e Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.6.1-aix-5.3-powerpc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 new file mode 100755 index 0000000..ec141f9 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 new file mode 100755 index 0000000..1ae0bb1 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-5.3-powerpc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 new file mode 100755 index 0000000..542f167 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 new file mode 100755 index 0000000..e6339c7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.a.1.7.4-aix-7.2-powerpc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 new file mode 100755 index 0000000..1fb61d1 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.5.1-sunos-5.11-sparc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 new file mode 100755 index 0000000..88fbe46 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-i686-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 new file mode 100755 index 0000000..e221ec1 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-linux-2.6-x86_64-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 new file mode 100755 index 0000000..f42f8d6 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 new file mode 100755 index 0000000..26a4769 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.7.4-sunos-5.10-sparc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 new file mode 100755 index 0000000..38eeab7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-hpux-11.31-ia64-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 new file mode 100755 index 0000000..951858c Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-linux-2.6-x86_64-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 new file mode 100755 index 0000000..7863d2c Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 new file mode 100755 index 0000000..6b3b05d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/lib/libpcap.so.1.8.1-sunos-5.11-sparc-64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_32.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_32.so new file mode 100755 index 0000000..c47dc17 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_64.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_64.so new file mode 100755 index 0000000..a302321 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_aix_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia32.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia32.so new file mode 100755 index 0000000..268a6ed Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia64.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia64.so new file mode 100755 index 0000000..340e8e5 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_hp_ia64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_32.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_32.so new file mode 100755 index 0000000..828733d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so new file mode 100755 index 0000000..4687f6c Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_32.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_32.so new file mode 100755 index 0000000..ff8631d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_64.so b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_64.so new file mode 100755 index 0000000..61c8eab Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_sun_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_32.so b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_32.so new file mode 100755 index 0000000..1069928 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_64.so b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_64.so new file mode 100755 index 0000000..958b04f Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmpiSvc_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_32.so b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_32.so new file mode 100755 index 0000000..e97e7c5 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_64.so b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_64.so new file mode 100755 index 0000000..fefa4ec Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libXmJvmtiSvc_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_32 b/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_32 new file mode 100755 index 0000000..aa669bb Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_32 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_64 b/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_64 new file mode 100755 index 0000000..e9f4b8a Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libgcc_s.so.1_64 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 new file mode 100755 index 0000000..9e9b49a Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.5.3 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 new file mode 100755 index 0000000..9c214d2 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_32.so.7.2 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 new file mode 100755 index 0000000..b5e9b4d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.5.3 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 new file mode 100755 index 0000000..ca38ee6 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_aix_64.so.7.2 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_hp_ia64.so b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_hp_ia64.so new file mode 100755 index 0000000..3a512dd Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_hp_ia64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_32.so b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_32.so new file mode 100755 index 0000000..16ee655 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_64.so b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_64.so new file mode 100755 index 0000000..b8e49ba Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_linux_64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 new file mode 100755 index 0000000..4080f6b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.10 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 new file mode 100755 index 0000000..72adc2f Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_32.so.5.11 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 new file mode 100755 index 0000000..586c046 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.10 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 new file mode 100755 index 0000000..16ae0bc Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/libjni_pcap_sun_64.so.5.11 differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so new file mode 100755 index 0000000..e03c7e9 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so new file mode 100755 index 0000000..fbf238d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so new file mode 100755 index 0000000..2c8d854 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so new file mode 100755 index 0000000..beca632 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so new file mode 100755 index 0000000..84c9c7b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so new file mode 100755 index 0000000..9431162 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so new file mode 100755 index 0000000..6103321 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so new file mode 100755 index 0000000..0672b11 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll new file mode 100755 index 0000000..9b3b70b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll new file mode 100755 index 0000000..c903b33 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll differ diff --git a/intermax/2208.06_type4/jspd/lib/jspd-common.jar b/intermax/2208.06_type4/jspd/lib/jspd-common.jar new file mode 100755 index 0000000..1e862c8 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jspd-common.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/jspd-ext.jar b/intermax/2208.06_type4/jspd/lib/jspd-ext.jar new file mode 100755 index 0000000..e2139be Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jspd-ext.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/jspd-pool.jar b/intermax/2208.06_type4/jspd/lib/jspd-pool.jar new file mode 100755 index 0000000..fdb6225 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jspd-pool.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/jspd.jar b/intermax/2208.06_type4/jspd/lib/jspd.jar new file mode 100755 index 0000000..0ba0f0b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/jspd.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-beanutils-1.9.3.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-beanutils-1.9.3.jar new file mode 100755 index 0000000..6728154 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-beanutils-1.9.3.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-collections-3.2.2.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-collections-3.2.2.jar new file mode 100755 index 0000000..fa5df82 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-collections-3.2.2.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-collections4-4.1.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-collections4-4.1.jar new file mode 100755 index 0000000..43a9413 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-collections4-4.1.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-configuration2-2.1.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-configuration2-2.1.jar new file mode 100755 index 0000000..b6239c7 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-configuration2-2.1.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-exec-1.3.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-exec-1.3.jar new file mode 100755 index 0000000..9a64351 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-exec-1.3.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-io-1.3.2.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-io-1.3.2.jar new file mode 100755 index 0000000..865c9e4 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-io-1.3.2.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-lang3-3.5.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-lang3-3.5.jar new file mode 100755 index 0000000..6328c8d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-lang3-3.5.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/commons-logging-1.2.jar b/intermax/2208.06_type4/jspd/lib/libs/commons-logging-1.2.jar new file mode 100755 index 0000000..93a3b9f Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/commons-logging-1.2.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/guava-20.0.jar b/intermax/2208.06_type4/jspd/lib/libs/guava-20.0.jar new file mode 100755 index 0000000..632772f Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/guava-20.0.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/javassist-3.12.1.GA.jar b/intermax/2208.06_type4/jspd/lib/libs/javassist-3.12.1.GA.jar new file mode 100755 index 0000000..aba1783 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/javassist-3.12.1.GA.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/juniversalchardet-1.0.3.jar b/intermax/2208.06_type4/jspd/lib/libs/juniversalchardet-1.0.3.jar new file mode 100755 index 0000000..ef4d7af Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/juniversalchardet-1.0.3.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/logback-classic-1.2.9.jar b/intermax/2208.06_type4/jspd/lib/libs/logback-classic-1.2.9.jar new file mode 100755 index 0000000..a08fe36 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/logback-classic-1.2.9.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/logback-core-1.2.9.jar b/intermax/2208.06_type4/jspd/lib/libs/logback-core-1.2.9.jar new file mode 100755 index 0000000..05b9f2b Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/logback-core-1.2.9.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/netty-all-4.1.8.Final.jar b/intermax/2208.06_type4/jspd/lib/libs/netty-all-4.1.8.Final.jar new file mode 100755 index 0000000..5be0c9d Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/netty-all-4.1.8.Final.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/libs/slf4j-api-1.7.32.jar b/intermax/2208.06_type4/jspd/lib/libs/slf4j-api-1.7.32.jar new file mode 100755 index 0000000..b16a078 Binary files /dev/null and b/intermax/2208.06_type4/jspd/lib/libs/slf4j-api-1.7.32.jar differ diff --git a/intermax/2208.06_type4/jspd/lib/notice/LGPL.txt b/intermax/2208.06_type4/jspd/lib/notice/LGPL.txt new file mode 100755 index 0000000..52790ad --- /dev/null +++ b/intermax/2208.06_type4/jspd/lib/notice/LGPL.txt @@ -0,0 +1,144 @@ +GNU LESSER GENERAL PUBLIC LICENSE +Version 2.1, February 1999 + + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + +Preamble +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. + +This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. + +When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. + +To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. + +For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. + +We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. + +To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. + +Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. + +Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. + +When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. + +We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. + +For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. + +In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. + +Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. + +The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. + + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". + +A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. + +The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) + +"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. + +1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + +a) The modified work must itself be a software library. +b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. +c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. +d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. +(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. + +Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. + +This option is useful when you wish to copy part of the code of the Library into a program that is not a library. + +4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. + +If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. + +5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. + +However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. + +When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. + +If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) + +Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. + +6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. + +You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: + + +a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) +b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. +c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. +d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. +e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. +For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. + +7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: + + +a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. +b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. +8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. + +10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. + +11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. + +14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +END OF TERMS AND CONDITIONS diff --git a/intermax/2208.06_type4/jspd/lib/release_note.txt b/intermax/2208.06_type4/jspd/lib/release_note.txt new file mode 100755 index 0000000..cbf9dd9 --- /dev/null +++ b/intermax/2208.06_type4/jspd/lib/release_note.txt @@ -0,0 +1,475 @@ + + +``` + 88 ad88888ba 88888888ba 88888888ba, + 88 d8" "8b 88 "8b 88 `"8b + 88 Y8, 88 ,8P 88 `8b + 88 `Y8aaaaa, 88aaaaaa8P' 88 88 + 88 `"""""8b, 88""""""' 88 88 + 88 `8b 88 88 8P +88, ,d88 Y8a a8P 88 88 .a8P + "Y8888P" "Y88888P" 88 88888888Y"' + +``` + + +================================================ + +- 3.1.1 20.01.02.09 +- Protocol Version 21 +- DG: IMX_TFT.DataGather.161201.01.RC 이상 + +================================================ +# 20.01.02.09 +- protocol version up to 21 +- java 9, java 11 지원 +- add 시계열 콜트리 기능 +- add 중앙관리 라이센스 기능 +- imp #1375, #1370, #1332 ACTIVE TXN PACKET에 SQL elapsetime 필드 추가 +- imp #1514 설정 파일에 단위 명시 +- imp USE_JAVA_VERIFY 옵션 안정화 +- imp #1756 ENABLE_WEB_ID_WHEN_NO_USERAGENT 옵션 추가(브라우저 접근 여부에 따라 webid 발급) +- imp ENABLE_UPDATE_WEBID_COOKIE_TIME 옵션 추가(webid를 사용할 때도 max age를 갱신) +- fix #1416 boot, down 알람 순서 뒤틀리는 현상 +- fix 다이나믹 리디파인 기능 안정성 개선(상수 변경) +- fix TXN_SQL_LIMIT_COUNT 옵션 추가(트랜잭션당 SQL 수집 갯수 제한) + +# 2019.10.10.9 +- protocol version up to 19 +- java 1.5로 올림 (1.4는 지원 불가) +- add EXCLUDE_THREAD 옵션 추가 (특정 thread name을 보고 모니터링을 막는 기능) +- add USE_ETOE_ONLY 옵션 추가 (etoe 모드로 동작하기 위한 옵션) +- add DISABLE_ACTIVE_TXN 옵션 추가 (active txn 패킷 비활성, 재시작 필요) +- add REPLACE_URL_PATTERNS 옵션 추가 (수집되는 트랜잭션의 URL 형태를 단순화) +- add #1315 EXCLUDE_TXCODE 옵션 추가 (txcode 기준으로 트랜잭션 수집 필터링) +- add 동적 프로파일 기능 +- imp 로컬 라이센스가 정상일 경우 중앙 라이센스의 유효성 확인 생략 +- imp 트랜잭션 시작, 완료시에 queue에 담는 로직에서 synchronized 제거 +- imp USE_TRACE_ORACLE 에서 query 방식이 아니라 setClientInfo 방식으로 개선 (java 1.6 이상) +- fix xapm_txn_detail의 endCount 제한 확장 +- fix http etoe에서 key1, key3가 중복이 발생하는 현상 +- fix 콜트리에 socket io가 포함된 경우 summary 되지 않는 현상 + +# 2019.06.25.9.legacy +- protocol version up to 16 +- add #8594 JSPD가 로드한 class, jar 목록 로그 기능(WRITE_CLASS_LIST, WRITE_JAR_LIST 옵션) +- add #8762 oracle fetch 함수 콜트리 추가(TRACE_FETCH_METHOD 옵션) +- add #8835 mongodb fetch 함수 콜트리 추가(TRACE_MONGO_FETCH 옵션) +- add apache axis 리모트콜 +- add setNull, setNString 함수에 대한 바인드 변수 수집 +- add asynckey 설정 함수 추가(setAsyncKeyP, setAsyncKeyC) +- add db2 연계 지원(USE_TRACE_DB2 옵션) +- add sqlserver 연계 지원(USE_TRACE_MSSQL 옵션) +- add INCLUDE_EXCEPTION_FOR_ALARM 옵션 추가 +- imp #4538 rt.jar weaving 기능 개선(USE_RUNTIME_REDEFINE 옵션) +- imp #7191 OutOfMemoryError 오류 발생 감지 기능 개선 +- imp #8694 jspd 시작점과 etoe도 재기동 없이 설정하도록 개선 +- imp #8895 ext에 의해 변경된 트랜잭션 이름에 대한 EXCLUDE_SERVICE 재확인(EXCLUDE_SERVICE_AT_END_TIME 옵션) +- imp wasid 별 jspd.plc.list 설정 기능 +- imp hostname 가져오는 로직 개선 +- fix 소켓, 파일 입출력의 수행시간이 0ms인 경우도 콜트리 표시 +- fix mongodb driver 2.4에서 누락된 fetch 지표 수정 +- fix 콜트리 클래스, 메소드 이름 한글깨짐 +- fix ojdbc14.jar에서 sql 미수집 현상 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 integer 범위를 넘어가는 숫자에 대해서도 동작하도록 수정 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 트랜잭션 이름이 / 인 트랜잭션이 수집안되는 문제 수정 +- fix jspd.advice에서 정규식 적용 시, 트랜잭션 미수집 오류 수정 +- fix HttpClient 3.1에서 http etoe 연계 시 uri 추출 중 발생하던 오류 수정 + +# 2019.03.20.10.legacy +- protocol version up to 14 +- add PLC message 설정 기능 추가. +- add mssql SQLServerDatasource 수집 추가. +- add sybase SybDataSource 수집 추가. +- add mongodb 수집. +- add mongodb pool, connection 수집 추가. +- add oracle 전체 내부 fetch count 수집 기능 추가. +- add #8722 파일 및 디렉토리 생성시 권한 부여. +- add 트랜잭션 종료 시에 EXCLUDE_SERVICE를 확인하여 트랜잭션 정보를 전송하지 않는 EXCLUDE_SERVICE_AT_END_TIME 옵션 추가 +- imp TRACE_COLLECTION_SIZE, TRACE_COLLECTION_STACKTRACE_SIZE 옵션들 동적 적용 +- fix pool name 100 바이트 까지 수집하도록 수정. +- fix properties 한글 처리. +- fix XmTxnState 몇가지 변수 초기화 시점 변경. +- fix collection leak 위빙 버그 수정. + +# 2019.02.15.5.legacy +- protocol version up to 13 +- add #8065 oracle 내부 fetch count 수집 기능 추가. +- add aws 연동시 local ip, account id 추가 수집 +- imp #8472 xapm_txn_detail에 저장될 filler 데이터 수집 가능 하도록 기능 개선. +- imp jspd <-> txn sql패킷 txnId 추가. (이전txn과 호환을 위한 USE_NONE_TXNID_PACKET 옵션 추가) +- fix #8483 sybase 풀 생성 안되는 현상 수정 및 pooledConn 수집 기능 구현. +- fix sybase 쿼리 미수집 현상 수정. + +# 2019.01.24.1.legacy +- imp #8464 apache SOAPHTTPConnection E2E 수집 기능 추가. + +# 2019.01.17.3.legacy +- add #8360 DB Name Alias 기능 추가 +- add #6720 PLC기능 jspd.priority.include 기능 변경 +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix USE_TRACE_ORACLE 사용시 audit 기능의 프로시져 변수 bind 하도록 변경 +- fix XmTcpReqWasInfo 패킷에서 docker id 보낼때 "docker://" string 제거 +- fix #8485 MSSQL 쿼리 수집 오류 수정. + +# 2018.12.07.7.legacy +- imp GC Stat 수집 시 OpenJDK도 HotspotJVM처럼 동작하도록 수정 +- add #8239 jspd.home 터치시 jspd properties 전송 기능 추가. +- add RMI_GET_PARAM 옵션 추가. (RT_RMI 옵션 사용시 request의 getParameter 사용 여부) +- fix 브라우져응답시간 기능(USE_TRACE_CLIENT_TIME) 사용간 게더와의 연결이 끊기면 redirection 유발 현상 수정. +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix #8478 USE_JMX 사용 시 클래스수 비정상 표현 수정. + +# 2018.11.28.2.legacy +- fix osm 기동 관련 count 로직 수정. + +# 2018.11.28.1.legacy +- protocol version up to 12 +- imp 일부 설정 imx.prop에서 읽도록 대체(SQL_DETAIL_ELAPSE_LIMIT, INPUT_SPACE_SQL_BIND, SQL_LEFT_TRIM) + - SQL_DETAIL_ELAPSE_LIMIT 삭제, imx.prop SQL_DETAIL_ELAPSE_LIMIT 으로 대체 + - DISABLE_INPUT_SPACE_SQL_BIND 삭제, imx.prop INPUT_SPACE_SQL_BIND 로 대체 + - DISABLE_TRIM_SQL 삭제, imx.prop SQL_LEFT_TRIM 으로 대체 +- imp MTD_BUFFER_SIZE 동적으로 변경 가능하게 수정 +- add TRACE_SIMPLE_METHOD 옵션을 켜는 경우에 include에 포함된 package 들에 한하여 simple method도 모두 calltree에 보여지게 함 +- add #7962 sql seq 패킷 추가 +- add #8124 sql execute count 수집 크기 확장(protocol version 12) +- add 삼성 CELLO 버전에만 추가했었던 GET_SID_WHEN_STMT_LIMIT, CHANGE_DB2_SID_QUERY 옵션 추가 +- add #8171 MTD_ELAPSE_TIME 옵션 추가 +- add DG 분산 기능 추가 +- fix 특정 tibero6 드라이버 관련 버그 수정 +- fix #8192 udp 소켓 생성 시 에러가 발생하는 경우 트랜잭션 종료가 안되는 문제 수정 + +# 2018.10.26.11.legacy +- imp 오류 로그에 대해 DEBUG 옵션 적용 +- imp 게더 연결 재시도 요청을 일정 수치 만큼 지연 시켜 요청하는 알고리즘 적용(DG_RECONNECT_DELAY_TIME) +- add USE_SQL_ELLIPSIS 옵션 추가. (COMPRESS_SQL 옵션이 false 이고 64K 이상의 SQL 수집시 생략 수집) +- fix 라이센스 요청 정보 로직 수정. (version 정보 수정) +- fix SysJNI load 예외처리 수정. (exception -> throwable) +- fix sql id 생성 시 trim 로직 변경 +- fix jspd 암호화시 jspd version UNKNOW 출력 현상 수정. +- fix USE_TRACE_ORACLE 관련 콜트리 bug 수정. + +# 2018.10.25.1.legacy +- fix INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE 옵션명 변경. (DISABLE_INPUT_SPACE_SQL_BIND, DISABLE_TRIM_SQL) + +# 2018.10.23.1.legacy +- add protocol version up to 11 +- add TYPE_REQ_WAS_LICENSE_INFO (RES_WAS_LICENSE_INFO) 패킷 추가 +- imp 라이센스 체크 시점을 프로토콜 버전 교환 이후로 변경 (JVM boot 알람도 이때 날라감) +- fix INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL 옵션명 변경. (INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE) + +# 2018.10.11.4.legacy +- fix #7811 txn sqlid 생성 로직 변경에 따른 수정 및 옵션 추가, INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL + +# 2018.10.11.3.legacy +- fix InetAddress 의 getLocalHost 함수 예외처리. + +# 2018.10.11.1.legacy +- add USE_NEW_IMXTXN_SQL_PACKET 옵션 추가. (신규 통합 sql 패킷 txn 전송, txn 4.00 버전 이상부터 지원) + +# 2018.05.04.23 +- fix XmTcpResWasInfo wasid 마이너스 버그 수정 + +# 2018.05.04.7 +- imp IBM JDK에서 HttpsURLConnection 사용 시 리모트콜 생성할 수 있도록 수정 + +# 2018.05.04.6 +- add sid 수집 제한 옵션 추가(DISABLE_SQL_SID) + +# 2018.05.04.5 +- add HttpClient method로 직접 execute하는 경우에도 etoe 연결되도록 수정 + +# 2018.05.04.3 +- fix 프로토콜 네고시에이션 버그 수정 +- add SQL 별 fetch 정보 수집 제한 옵션 추가(DISABLE_SQL_FETCH) +- add SQL 별 fetch 정보 수집 시간 제한 옵션 추가(SQL_DETAIL_ELAPSE_LIMIT) + +# 2018.05.04.2 +- fix #6677 header에 tid 추가하는 기능 추가(RESP_HEADER_TID) +- fix #6904 jvmstat 패킷 순서 오류 수정 +- fix 버전 교환 오류 수정 +- fix 게더 설정 오류 상태에서 autowasid 발급시 license check를 지속적으로 하는 현상 +- imp #6605 JSPD long class method 처리 관련 logging 내용 개선 요청 +- imp #6820 jspd.x.advice에 설정된 구현부가 jspd.jar에 없을 경우 예외처리 +- imp #6907 java 1.8 metaspace 정보 수집 +- add #6026 InterMax-MaxGauge 연동 기능 추가 +- add #6606 wasid 자동 발급 기능을 구현 +- add #6757 Solaris i386 cpu 지원 바이너리 추가(jni, osm, txn, uts) +- add #6780 HttpsURLConnection 리모트 콜 데이터 수집 +- add aws를 위한 wasid 자동 발급 기능 추가 +- add jspd 구동시 설정값 출력 + +# 2018.03.23.1 +- protocol version up (7 -> 9) +- fix 프로토콜 네고시에이션 버그 수정 +- fix #6169 gRPC 라이브러리와 ImxJNI.getArgs() 함수 충돌 문제수정. +- fix #6370 mssql xadatasource 사용시 db address 생성되지 않는 현상 수정 +- fix #6628 Client IP 수집 이상 현상 수정 +- imp #6011 브라우저 응답시간 수집 기능 개선(protocol version 8, DG.180222.01 이상 호환) +- imp #6226 tibero 6 및 5 jdbc 사용시 옵션 설정없이 모두 수집 가능하도록 수정. +- imp #6259 jspd.dbm 오라클sid 대소문자값 개선 +- imp #6606 normal type (3) auto wasid 발급 기능 +- add #6285 add jtds jdbc 수집하도록 구현. jspd.jdbc.advice 설정 필요(README.md 참조). +- add #6300 edb jdbc 수집. (jspd.jdbc.advice 옵션 추가. README.md 참조) +- add #6302 트랜잭션 memory 사용량 항목 추가(protocol version 8, DG.180222.01 이상 호환) +- add #6368 콜트리 파일,소켓명 별도 수집 기능 구현. (protocol version 9, USE_MTD_EXT 옵션 추가, DG 3월 Release 버전 이상 호환) +- add #6459 Resin 환경에서 커넥션풀 수집 + +# 2018.01.03.1 +- protocol version up (6 -> 7) +- imp #5128 Deadlock 표시 기능 추가 +- imp #5097 root cause exception도 확인하도록 수정 +- imp #5842 GET_SID_WHEN_STMT 옵션 추가. (sid 조회 시점을 첫 쿼리 사용 시점으로 변경) +- imp #6030 getHeaders 사용을 통한 client ip 획득 +- imp #5899 PKT_WAS_STAT(10004) 패킷 수정(txn, sql의 elapse time의 max값을 추가) +- add #5134 관련 콜트리 수집 제한 옵션 MTD_LIMIT 추가(기본 값 10,000) +- fix #4711 localhost 사용시 실제 ip 표현되도록 수정 +- fix #5976 MSSQL fetch count 수집 수정 +- fix #5267 wasid 중복시 재연결 시도 안하게 수정 + +# 2017.10.19 (2017.10.19.1) +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) +- add thread dump max size 지정 옵션 THREAD_DUMP_MAX_SIZE 추가 +- add 로그 경로 변경 기능 추가. (jspd.prop.ini 에 LOG_PATH 옵션 추가. 절대 경로를 입력 하여야 하며 잘못된 경로 입력시 default로그 그대로 사용.) +- fix #4664 jspd.exclude 에 ! 기능을 추가. (!을 prefix로 클래스를 등록하게 되면 무조건 위빙하지 않게 기능 추가, TransactionAwareDataSourceProxy사용 시 pool카운트 비정상 건 처리) +- fix #5812 TRX_NAME_USE_ENCODING, TRX_NAME_ENCODING_FROM, TRX_NAME_ENCODING_TO 옵션 추가. (한글깨짐 처리) +- fix weblogic jta sql db id 미수집 현상 수정 +- fix jboss5 was pool max count 잘못 수집 되는 문제 수정 + +# 2017.09.21 (2017.09.21.1) +- fix #5665 org.apache.commons.dbcp.BasicDataSource 커넥션 풀 수집 수정 + +# 2017.09.12 (2017.09.12.2) +- fix weblogic jta sql db id 미수집 현상 수정 +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) + +# 2017.09.07 (2017.09.07.1) +- 2017.07.21.1 추가 기능 활성화 +- protocol version up (4 -> 6) +- imp thread dump 수집 시 dump를 발생 시킨 시간도 수집 + +# 2017.09.05 (2017.09.05.1) +- fix Servlet api 3.0 미만에서 getStatus관련 에러나는 문제 수정 + +# 2017.08.30 (2017.08.30.3) +- fix WAS ID 자동 발급 관련 버그 수정 + +# 2017.08.29 (2017.08.29.1) +- fix USE_INACTIVE_SOCKET_RT추가 socket rt 설정 시 트랜잭션이 active 되지 않은 상태에서 열린 socket에 대해서 정보 수집이 안되는 문제 (우리은행 인뱅) + +# 2017.08.28 (2017.08.28.1) +- add WAS ID 자동 발급 관련 TYPE_AUTOMATIC_WASID 옵션 추가(1:OpenShift) + +# 2017.08.23 (2017.08.23.1) +- fix weblogic에서 mssql 드라이버 수집이 안되는 문제 (우리은행 APM POC) + +# 2017.08.16 (2017.08.16.1) +- 2017.07.21.1 추가 기능 비활성화 +- protocol version down (5 -> 4) +- imp WebApplication이 아닌 경우에도 EXCLUDE_SERVICE가 적용되도록 수정 +- add RESTful url에서 숫자로만 이루어진 path ### 처리 +- fix MySQL Property 설정을 통해 여러개의 DB ip를 지정하는 경우 수집된 SQL이 화면에 보이지 않는 문제 수정 + +# 2017.07.19 (2017.07.21.1) +- protocol version up (4 -> 5) +- imp fetch count 수집 크기 향상(DataGather.170719.01 이상) +- add bind 변수 암호화 옵션 ENABLE_ENCRYPT_SQL_BIND 추가 +- add login name 암호화 옵션 ENABLE_ENCRYPT_LOGIN_NAME 추가 +- add 암호화 관련 패킷 수정 + +# 2017.07.11 (2017.07.11.1) +- upgrade asm3 to asm5(java8 람다식 지원) +- imp #5323 메모리릭 객체 개수 임계치 초과시 TID, CREATED_TIME 변경 +- add #5273 TXN_ELAPSE_TIME 옵션 추가 (트랜잭션 수집 제한 옵션) +- add #5321 CONVERT_SQL_ASCII_TO 옵션 추가(CONVERT_SQL_ASCII_TO="encoding name") +- add #5194 ojdbc8 지원 +- add #5196 SQL 수집 크기 64K -> 100K로 확장 옵션 USE_LONG_SQL 추가(imxtxn 3.00.17071760 버전 이상 지원) +- add bind 변수 미수집 옵션 DISABLE_SQL_BIND 추가 +- fix #4880 X-Forwarded-For 헤더의 ip가 2개 이상일 경우 수집이 안되던 문제 수정 + +# 2017.07.06 (2017.07.06.1) +- fix jboss7에서 pool state 중 active count 가 안맞는 문제 +- fix websphere7에서 pool state 중 max pool size 가 안맞는 문제 +- fix jmx를 이용한 GC 정보 수집 중 Eden 영역 정보가 일치하지 않는 문제 + +# 2017.07.03 (2017.07.03.1) +- fix info가 없어서 sql text 수집이 안되는 현상 (단 sid가 0으로 나올수는 있으나, 이것은 알수 없는 pool을 사용하는 경우에 발생하는 문제임) + + +# 2017.06.23 (2017.06.23.1) +- add GC지표 수집 시 JMX방식을 사용할 수 있도록 추가 +- add DISABLE_JDBC_ALARM 옵션 + +# 2017.06.19 (2017.06.19.1) +- add SQL별 fetch time, fetch count 수집 +- add IBM Websphere 7.0 was pool 정보 수집 +- fix remote packet 에서 key1, key3이 0인 경우 기본으로 전송을 안하도록 수정 (rmi 디버그 옵션을 켜면 전송함) + +# 2017.05.23 (2017.05.23.1) +- fix IMXAgent.sh 실행 시 에러가 발생할 경우 다시 실행하지 못하던 문제 수정 +- add Raemote Call Log 강화 + +# 2017.04.21 (2017.04.21.1) +- rollback 패킷들이 dg time 사용하도록 (우리은행) + +# 2017.04.20 (2017.04.20.1) +- add #4946 X_XP_REMOTE_RESET옵션 추가 (kbank) +- remove #4946 X_XP_HTTP_RESET옵션 삭제 (kbank) +- fix tcp rmi 에서 C패킷의 open port가 0으로 수집되는 문제 +- fix 패킷들이 dg time 사용하도록 (우리은행) +- fix gc 카운트가 나오지 않음 (우리은행) + + +# 2017.03.29 (2017.03.29.2) +- fix #4714 spring security filter를 거치면 트랜잭션이 누락되는 증상 (평창동계올림픽위원회) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함, 트랜잭션 중간에 전송하는 C패킷에도 동일한 로직 적용 (kbank) + + +# 2017.03.23 (2017.03.23.2) +- add #4946 X_XP_HTTP_RESET옵션 추가 (kbank) +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상2 (다른 tomcat pool 재테스트 필요) (웅진) + + +# 2017.03.16 (2017.03.16.1) +- add jvm state check error log +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상 (다른 tomcat pool 재테스트 필요) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함 (kbank) + + +# 2017.03.09 (2017.03.09.2) +- add rmi log (http class name 출력) (웅진) +- fix weblogic JTSConnection jdbc 지표 수집 불가 문제(한양대, 중앙대학병원) +- fix #4845 tomcat pool에서 jndi name 을 수집하는 경우 추가(웅진) +- fix #4845 tomcat pool 사용시 pool이름이 중복되는 문제(웅진) +- fix #4819 weblogic oracle.jdbc.xa.client.OracleXADataSource 드라이버 지원(한양대, 중앙대학병원) + + +# 2017.02.28 (2017.02.28.1) -- tar package +- fix pid 체크 로직을 3초마다 file modified time을 기준으로 체크 함 + + +# 2017.02.23 (2017.02.23.1) +- merge kbank2 +- update processCheck error message + + +# 2017.02.16 (2017.02.16.1) +- fix jdbc getResultSet() 호출시 rs count, fetch count/time 수집 안되는 문제 +- fix #4574 weblogic 8에서 db create시 null 오류 발생 이슈 +- imp #3181 #4689 구동시 기존 pid로 프로세스 확인하여 중복되면 pid write 건너뜀 (kbank이슈) + + +# 2017-01-16 (2017.01.16.1) +- add socket rt ext 기능 추가 (kbank) +- add txnstate에 setLoginName 함수 추가 (kbank) + + + +# 2017-01-12 (2017.01.12.1) -- tar package +- fix mariadb 오래전 버전(1.3 이하)에서 BCI 예외처리 +- fix tomcat jdbc pool 오류 2 +- fix ibatis 관련 오류 메시지 수정 + + +# 2017-01-09 (2017.01.09.1) +- add #4452 txn_name 수집 기능 추가 (롯데렌탈 BMT 관련) +- fix weblogic 에서 dbname이 제대로 나오지 않는 증상 +- fix tomcat jdbc pool 오류 +- rollback #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 (exception 수집 문제) +- imp #4484 #4481 thread dump 에 호출 thread의 tid, thread id, os thread id 추가로 출력 +- imp jdbc 관련 트랜잭션 예외처리 강화 + + +# 2016-12-28 (2016.12.28.1) +- 릴리즈 + + +# 2016-12-23 (2016.12.23.1) +- fix class load시 deadlock 현상 (SK테크엑스) + +# 2016-12-21 (2016.12.21.3) +- fix #4050 open map이 최초 1회만 발생하여서 osm이 무한히 로딩되는 증상 +- improvement #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 + +# 2016-12-20 (2016.12.20.1) +- fix weblogic에서 db info 수집에 was pool이 잡히는 문제 + +# 2016-12-14 (2016.12.14.1) +- add mariadb db type 추가 (신규로 mariadb를 등록 해봐야함) +- fix weblogic jdbc 지표가 안맞는 문제 (전반적으로 개선) +- fix mariadb fetch count, fetch time 지표 수집 불가 문제 +- fix oracle 12c ojdbc6.jar, ojdbc7.jar 에서 rs count, fetch count, fetch time이 안나오는 문제 + +# 2016-12-13 (2016.12.13.2) -- tar package +- add DG와 버전교환 프로토콜을 사용할지 여부 옵션 추가 (USE_PROTOCOL_VERSION, 기본값: true) false인 경우에 10월 21일자 기준 버전으로 동작함, (값 변경시 재시작필요) +- add #3181 pid 갱신 이슈 대응 코드 추가 (agent를 실행하기 직전에 pid를 체크해서 pid가 다르면 갱신) +- fix #4158 콜트리가 맞지 않는 문제 + +# 2016-12-12 (2016.12.12.3) +- fix jboss에서 rs close count가 맞지 않는 문제 + + +# 2016-12-06 (2016.12.06.6) +- fix jeus6에서 최초 db conn open시에 count가 min pool count까지 합산으로 잡히는 문제 +- fix jeus6에서 mariadb 이전버전에서 전체DB컨넥션수가 안맞는 문제 +- fix mysql 오래된 버전에서 sql text, sql binding이 안되는 문제 +- fix mysql 예전 버전과 새로운 버전과의 충돌문제 해결 +- fix db pool을 사용하지 않으면 conn open count가 안나오는 문제 + + +# 2016-12-05 +- fix JDBC sql 수집시 최초 DB 연결에 경우 수집이 안되는 문제 + + +# 2016-12-02 +- fix mariadb 관련 버그 +- fix mysql 관련 버그 +- fix 예전 mysql 드라이버에서 에러 나는 현상 수정(axa사이트대응) +- Improvement 한전 IP 수집관련 수정 + + +# 2016-12-01 +- enable fetch time, ResultSet open/close(use tcp protocol version 1, DataGather TFT (Build 161130.01) 이상 버전 권장) +- fix #4030 open / close statement 개수 불일치 +- fix #4096 Call Tree에 conn.createStatement(); 잡히지 않는 현상 +- fix #4142 bind 변수 수집 안됨 +- Improvement #3966 [야놀자] maria db 확인 +- Improvement #4145 [한전긴급대응] jspd agent 에 interface 추가 + + +# 2016-11-28 +- disable fetch time, ResultSet open/close +- fix #3828 axa 사이트 이슈 수정 (proframe에서 txn_name_type 설정시 화면이 안나오는 경우) +- fix #3967 altibase sql 실행 했을 때 에러 + + +# 2016-11-16 +- fix #3507 windows 에서 jvm thread count 기능 추가 (java 1.5이상 동작) +- fix #3846 POOL ID 중복 생성 +- fix 불필요한 로그제거 +- improvement JSPD 기동 시 ext.jar 및 pool.jar를 load하도록 수정 + + +# 2016-11-10 +- fix #2993 Connection재사용하여 내용이 다른 리터럴 sql을 여러번 수행시 sql문이 1건만 보이는 현상 +- feature #3552 fetch time, fetch count 구현 및 개선 +- Improvement #3692 WebID값 전송시 cookie를 이용하여 고유한 값을 유지 +- Improvement #3700 jspd udp buffer 동적 클리어 기능 개발 (옵션화) +- Improvement #3782 jspd 버전 확인 할 수 있도록 개선 요청 + + [버전확인 방법] + java -jar jspd.jar -version + + [추가된 옵션] + USE_SESSIONID_FOR_WEBID : true/false 사용하면 webid를 session으로 사용 + UDP_BUFFER_CLEAR_PERIOD : 분 단위, default 6000분, 설정된 시간동안 사용되지 않은 udp buffer 제거 + + +# 2016-11-04 +- fix #3443 #3585 환경 설정 변경 추적 소스 깨짐 +- Improvement #3448 JSPD에서 SQL Text를 UTF-8로 변환 작업 요청 +- Improvement #3429 jspd-하이닉스 remote_call 패킷의 elapse_time이 항상 0 인 문제 +- fix #3609 [s.com] 게더가 hang 일때 비 정상적으로 jspd 랑 게더랑 끊겼다 붙었다 반복하다가 게더랑 연결이 안되는 현상 +- fix #3399 Jboss ConnecionPool 모니터링 개발 요청 + + diff --git a/intermax/2208.06_type4/jspd/license/apache-commons_LICENSE.txt b/intermax/2208.06_type4/jspd/license/apache-commons_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/apache-commons_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type4/jspd/license/asm-LICENSE.txt b/intermax/2208.06_type4/jspd/license/asm-LICENSE.txt new file mode 100755 index 0000000..94f3321 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/asm-LICENSE.txt @@ -0,0 +1,29 @@ +ASM is released under the following 3-Clause BSD License: + +ASM: a very small and fast Java bytecode manipulation framework +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/license/guava_LICENSE.txt b/intermax/2208.06_type4/jspd/license/guava_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/guava_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type4/jspd/license/javassist_License.html b/intermax/2208.06_type4/jspd/license/javassist_License.html new file mode 100755 index 0000000..7d842b4 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/javassist_License.html @@ -0,0 +1,373 @@ + + +Javassist License + + + + +
    MOZILLA PUBLIC LICENSE
    Version +1.1 +

    +


    +
    +

    1. Definitions. +

      1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. +

      1.1. ''Contributor'' means each entity that creates or contributes + to the creation of Modifications. +

      1.2. ''Contributor Version'' means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications made by + that particular Contributor. +

      1.3. ''Covered Code'' means the Original Code or Modifications or + the combination of the Original Code and Modifications, in each case including + portions thereof. +

      1.4. ''Electronic Distribution Mechanism'' means a mechanism + generally accepted in the software development community for the electronic + transfer of data. +

      1.5. ''Executable'' means Covered Code in any form other than Source + Code. +

      1.6. ''Initial Developer'' means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. +

      1.7. ''Larger Work'' means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. +

      1.8. ''License'' means this document. +

      1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. +

      1.9. ''Modifications'' means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: +

        A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. +

        B. Any new file that contains any part of the Original Code or + previous Modifications.
         

      1.10. ''Original Code'' + means Source Code of computer software code which is described in the Source + Code notice required by Exhibit A as Original Code, and which, at the + time of its release under this License is not already Covered Code governed by + this License. +

      1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation,  method, process, and + apparatus claims, in any patent Licensable by grantor. +

      1.11. ''Source Code'' means the preferred form of the Covered Code + for making modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control compilation and + installation of an Executable, or source code differential comparisons against + either the Original Code or another well known, available Covered Code of the + Contributor's choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software is widely + available for no charge. +

      1.12. "You'' (or "Your")  means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this License + or a future version of this License issued under Section 6.1. For legal + entities, "You'' includes any entity which controls, is controlled by, or is + under common control with You. For purposes of this definition, "control'' + means (a) the power, direct or indirect, to cause the direction or management + of such entity, whether by contract or otherwise, or (b) ownership of more + than fifty percent (50%) of the outstanding shares or beneficial ownership of + such entity.

    2. Source Code License. +
      2.1. The Initial Developer Grant.
      The Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license, subject to third + party intellectual property claims: +
        (a)  under intellectual property rights (other than + patent or trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original Code (or + portions thereof) with or without Modifications, and/or as part of a Larger + Work; and +

        (b) under Patents Claims infringed by the making, using or selling + of Original Code, to make, have made, use, practice, sell, and offer for + sale, and/or otherwise dispose of the Original Code (or portions thereof). +

          +
          (c) the licenses granted in this Section 2.1(a) and (b) + are effective on the date Initial Developer first distributes Original Code + under the terms of this License. +

          (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) separate + from the Original Code;  or 3) for infringements caused by: i) the + modification of the Original Code or ii) the combination of the Original + Code with other software or devices.
           

        2.2. Contributor + Grant.
        Subject to third party intellectual property claims, each + Contributor hereby grants You a world-wide, royalty-free, non-exclusive + license +

          (a)  under intellectual property rights (other + than patent or trademark) Licensable by Contributor, to use, reproduce, + modify, display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of a Larger + Work; and +

          (b) under Patent Claims infringed by the making, using, or selling + of  Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or portions + thereof); and 2) the combination of  Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). +

          (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of the Covered + Code. +

          (d)    Notwithstanding Section 2.2(b) above, no + patent license is granted: 1) for any code that Contributor has deleted from + the Contributor Version; 2)  separate from the Contributor + Version;  3)  for infringements caused by: i) third party + modifications of Contributor Version or ii)  the combination of + Modifications made by that Contributor with other software  (except as + part of the Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by that + Contributor.

      +


      3. Distribution Obligations. +

        3.1. Application of License.
        The Modifications which You create + or to which You contribute are governed by the terms of this License, + including without limitation Section 2.2. The Source Code version of + Covered Code may be distributed only under the terms of this License or a + future version of this License released under Section 6.1, and You must + include a copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code version + that alters or restricts the applicable version of this License or the + recipients' rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. +

        3.2. Availability of Source Code.
        Any Modification which You + create or to which You contribute must be made available in Source Code form + under the terms of this License either on the same media as an Executable + version or via an accepted Electronic Distribution Mechanism to anyone to whom + you made an Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) months + after the date it initially became available, or at least six (6) months after + a subsequent version of that particular Modification has been made available + to such recipients. You are responsible for ensuring that the Source Code + version remains available even if the Electronic Distribution Mechanism is + maintained by a third party. +

        3.3. Description of Modifications.
        You must cause all Covered + Code to which You contribute to contain a file documenting the changes You + made to create that Covered Code and the date of any change. You must include + a prominent statement that the Modification is derived, directly or + indirectly, from Original Code provided by the Initial Developer and including + the name of the Initial Developer in (a) the Source Code, and (b) in any + notice in an Executable version or related documentation in which You describe + the origin or ownership of the Covered Code. +

        3.4. Intellectual Property Matters +

          (a) Third Party Claims.
          If Contributor has knowledge that a + license under a third party's intellectual property rights is required to + exercise the rights granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code distribution + titled "LEGAL'' which describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If Contributor + obtains such knowledge after the Modification is made available as described + in Section 3.2, Contributor shall promptly modify the LEGAL file in all + copies Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) reasonably + calculated to inform those who received the Covered Code that new knowledge + has been obtained. +

          (b) Contributor APIs.
          If Contributor's Modifications include + an application programming interface and Contributor has knowledge of patent + licenses which are reasonably necessary to implement that API, Contributor + must also include this information in the LEGAL file. +
           

                  + (c)    Representations. +
          Contributor represents that, except as disclosed pursuant to Section + 3.4(a) above, Contributor believes that Contributor's Modifications are + Contributor's original creation(s) and/or Contributor has sufficient rights + to grant the rights conveyed by this License.
        +


        3.5. Required Notices.
        You must duplicate the notice in + Exhibit A in each file of the Source Code.  If it is not possible + to put such notice in a particular Source Code file due to its structure, then + You must include such notice in a location (such as a relevant directory) + where a user would be likely to look for such a notice.  If You created + one or more Modification(s) You may add your name as a Contributor to the + notice described in Exhibit A.  You must also duplicate this + License in any documentation for the Source Code where You describe + recipients' rights or ownership rights relating to Covered Code.  You may + choose to offer, and to charge a fee for, warranty, support, indemnity or + liability obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial Developer + or any Contributor. You must make it absolutely clear than any such warranty, + support, indemnity or liability obligation is offered by You alone, and You + hereby agree to indemnify the Initial Developer and every Contributor for any + liability incurred by the Initial Developer or such Contributor as a result of + warranty, support, indemnity or liability terms You offer. +

        3.6. Distribution of Executable Versions.
        You may distribute + Covered Code in Executable form only if the requirements of Section + 3.1-3.5 have been met for that Covered Code, and if You include a + notice stating that the Source Code version of the Covered Code is available + under the terms of this License, including a description of how and where You + have fulfilled the obligations of Section 3.2. The notice must be + conspicuously included in any notice in an Executable version, related + documentation or collateral in which You describe recipients' rights relating + to the Covered Code. You may distribute the Executable version of Covered Code + or ownership rights under a license of Your choice, which may contain terms + different from this License, provided that You are in compliance with the + terms of this License and that the license for the Executable version does not + attempt to limit or alter the recipient's rights in the Source Code version + from the rights set forth in this License. If You distribute the Executable + version under a different license You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by the + Initial Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of any such terms You offer. + +

        3.7. Larger Works.
        You may create a Larger Work by combining + Covered Code with other code not governed by the terms of this License and + distribute the Larger Work as a single product. In such a case, You must make + sure the requirements of this License are fulfilled for the Covered +Code.

      4. Inability to Comply Due to Statute or Regulation. +
        If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute, + judicial order, or regulation then You must: (a) comply with the terms of this + License to the maximum extent possible; and (b) describe the limitations and + the code they affect. Such description must be included in the LEGAL file + described in Section 3.4 and must be included with all distributions of + the Source Code. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it.
      5. Application of this License. +
        This License applies to code to which the Initial Developer has attached + the notice in Exhibit A and to related Covered Code.
      6. Versions +of the License. +
        6.1. New Versions.
        Netscape Communications Corporation + (''Netscape'') may publish revised and/or new versions of the License from + time to time. Each version will be given a distinguishing version number. +

        6.2. Effect of New Versions.
        Once Covered Code has been + published under a particular version of the License, You may always continue + to use it under the terms of that version. You may also choose to use such + Covered Code under the terms of any subsequent version of the License + published by Netscape. No one other than Netscape has the right to modify the + terms applicable to Covered Code created under this License. +

        6.3. Derivative Works.
        If You create or use a modified version + of this License (which you may only do in order to apply it to code which is + not already Covered Code governed by this License), You must (a) rename Your + license so that the phrases ''Mozilla'', ''MOZILLAPL'', ''MOZPL'', + ''Netscape'', "MPL", ''NPL'' or any confusingly similar phrase do not appear + in your license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license contains + terms which differ from the Mozilla Public License and Netscape Public + License. (Filling in the name of the Initial Developer, Original Code or + Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.)

      7. +DISCLAIMER OF WARRANTY. +
        COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, + FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE + QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED + CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY + OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR + CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS + LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER.
      8. TERMINATION. +
        8.1.  This License and the rights granted hereunder will + terminate automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall survive any + termination of this License. Provisions which, by their nature, must remain in + effect beyond the termination of this License shall survive. +

        8.2.  If You initiate litigation by asserting a patent + infringement claim (excluding declatory judgment actions) against Initial + Developer or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant")  alleging that: +

        (a)  such Participant's Contributor Version directly or + indirectly infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively, unless if within 60 + days after receipt of notice You either: (i)  agree in writing to pay + Participant a mutually agreeable reasonable royalty for Your past and future + use of Modifications made by such Participant, or (ii) withdraw Your + litigation claim with respect to the Contributor Version against such + Participant.  If within 60 days of notice, a reasonable royalty and + payment arrangement are not mutually agreed upon in writing by the parties or + the litigation claim is not withdrawn, the rights granted by Participant to + You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. +

        (b)  any software, hardware, or device, other than such + Participant's Contributor Version, directly or indirectly infringes any + patent, then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that Participant. +

        8.3.  If You assert a patent infringement claim against + Participant alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as by + license or settlement) prior to the initiation of patent infringement + litigation, then the reasonable value of the licenses granted by such + Participant under Sections 2.1 or 2.2 shall be taken into account in + determining the amount or value of any payment or license. +

        8.4.  In the event of termination under Sections 8.1 or 8.2 + above,  all end user license agreements (excluding distributors and + resellers) which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination.

      9. LIMITATION OF +LIABILITY. +
        UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING + NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY + OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY + OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, + INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT + LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR + MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH + PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS + LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR + LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND + LIMITATION MAY NOT APPLY TO YOU.
      10. U.S. GOVERNMENT END USERS. +
        The Covered Code is a ''commercial item,'' as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and + ''commercial computer software documentation,'' as such terms are used in 48 + C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. + 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users + acquire Covered Code with only those rights set forth herein.
      11. +MISCELLANEOUS. +
        This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by California law provisions + (except to the extent applicable law, if any, provides otherwise), excluding + its conflict-of-law provisions. With respect to disputes in which at least one + party is a citizen of, or an entity chartered or registered to do business in + the United States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with the + losing party responsible for costs, including without limitation, court costs + and reasonable attorneys' fees and expenses. The application of the United + Nations Convention on Contracts for the International Sale of Goods is + expressly excluded. Any law or regulation which provides that the language of + a contract shall be construed against the drafter shall not apply to this + License.
      12. RESPONSIBILITY FOR CLAIMS. +
        As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out of its + utilization of rights under this License and You agree to work with Initial + Developer and Contributors to distribute such responsibility on an equitable + basis. Nothing herein is intended or shall be deemed to constitute any + admission of liability.
      13. MULTIPLE-LICENSED CODE. +
        Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed".  "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under Your + choice of the MPL or the alternative licenses, if any, specified by the + Initial Developer in the file described in Exhibit A.
      +


      EXHIBIT A -Mozilla Public License. +

        The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at +
        http://www.mozilla.org/MPL/ +

        Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF
        ANY KIND, either express or implied. See the License + for the specific language governing rights and
        limitations under the + License. +

        The Original Code is Javassist. +

        The Initial Developer of the Original Code is Shigeru Chiba. + Portions created by the Initial Developer are
          + Copyright (C) 1999- Shigeru Chiba. All Rights Reserved. +

        Contributor(s): __Bill Burke, Jason T. Greene______________. + +

        Alternatively, the contents of this software may be used under the +terms of the GNU Lesser General Public License Version 2.1 or later +(the "LGPL"), or the Apache License Version 2.0 (the "AL"), +in which case the provisions of the LGPL or the AL are applicable +instead of those above. If you wish to allow use of your version of +this software only under the terms of either the LGPL or the AL, and not to allow others to +use your version of this software under the terms of the MPL, indicate +your decision by deleting the provisions above and replace them with +the notice and other provisions required by the LGPL or the AL. If you do not +delete the provisions above, a recipient may use your version of this +software under the terms of any one of the MPL, the LGPL or the AL. + +

      + + diff --git a/intermax/2208.06_type4/jspd/license/logback_LICENSE.txt b/intermax/2208.06_type4/jspd/license/logback_LICENSE.txt new file mode 100755 index 0000000..af39fcb --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/logback_LICENSE.txt @@ -0,0 +1,15 @@ +Logback LICENSE +--------------- + +Logback: the reliable, generic, fast and flexible logging framework. +Copyright (C) 1999-2015, QOS.ch. All rights reserved. + +This program and the accompanying materials are dual-licensed under +either the terms of the Eclipse Public License v1.0 as published by +the Eclipse Foundation + + or (per the licensee's choosing) + +under the terms of the GNU Lesser General Public License version 2.1 +as published by the Free Software Foundation. + diff --git a/intermax/2208.06_type4/jspd/license/netty_LICENSE.txt b/intermax/2208.06_type4/jspd/license/netty_LICENSE.txt new file mode 100755 index 0000000..d645695 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/netty_LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/intermax/2208.06_type4/jspd/license/slf4j_LICENSE.txt b/intermax/2208.06_type4/jspd/license/slf4j_LICENSE.txt new file mode 100755 index 0000000..315bd49 --- /dev/null +++ b/intermax/2208.06_type4/jspd/license/slf4j_LICENSE.txt @@ -0,0 +1,24 @@ +Copyright (c) 2004-2017 QOS.ch +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + diff --git a/intermax/2208.06_type4/jspd/log/imx/imxosm.log b/intermax/2208.06_type4/jspd/log/imx/imxosm.log new file mode 100644 index 0000000..778977d --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/imx/imxosm.log @@ -0,0 +1,1594 @@ +[29 09:43:52][8807][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[29 09:43:52][8807][INFO][check_double_execution] write pid. 8807 +[29 09:43:52][8807][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[29 09:43:52][8807][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 09:43:52][8807][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[29 09:43:52][8807][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 09:43:52][8807][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 09:43:52][8807][INFO][read_properties_common] imx.prop CPU100:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 09:43:52][8807][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 09:43:52][8807][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 09:43:52][8807][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[29 09:43:52][8807][INFO][check_os_info] OS Name : Linux +[29 09:43:52][8807][INFO][check_os_info] Nodename : kkam +[29 09:43:52][8807][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[29 09:43:52][8807][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[29 09:43:52][8807][INFO][check_os_info] Machine : x86_64 +[29 09:43:52][8807][INFO][MAIN] initialize resources. +[29 09:43:52][8807][INFO][osm_module_init] common.immf open success. +[29 09:43:52][8807][INFO][initialize_offset] initialize offset success! d67ab000 d67ab050 d67bb060 +[29 09:43:52][8807][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[29 09:43:52][8807][INFO][read_properties] jspd.prop TXN_IP= +[29 09:43:52][8807][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[29 09:43:52][8807][INFO][read_properties] jspd.prop UTS_IP= +[29 09:43:52][8807][INFO][run_thread] create success. THR_DGCONN (0) +[29 09:43:52][8807][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 09:43:52][8807][INFO][thr_DGConn] dg=100007f:1314 +[29 09:43:52][8807][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 09:43:52][8807][INFO][get_Hostname] Hostname:[kkam] +[29 09:43:52][8807][INFO][get_xm_sys_hostkey] xm_sys_hostkey:58D9286D +[29 09:43:52][8807][INFO][get_HostKey] Hostkey:[58D9286D] +[29 09:43:52][8807][INFO][thr_DGConn] connection success. +[29 09:43:52][8807][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 09:43:52][8807][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 09:43:52][8807][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 09:43:52][8807][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[29 09:43:52][8807][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 09:43:52][8807][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[29 09:43:52][8807][INFO][thread_docker_stat] thread terminate. +[29 09:43:52][8807][INFO][run_thread] create success. THR_JVMALERT (0) +[29 09:43:52][8807][INFO][run_thread] create success. THR_WASSTAT (0) +[29 09:44:01][8807][INFO][process_msg] timesync diff:-765 +[29 09:45:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 09:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 09:55:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:00:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:00:09][8807][INFO][process_msg] timesync diff:-762 +[29 10:05:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 10:10:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:11:00][8807][ERRO][processing_socket] get packet data failed(-1) +[29 10:11:00][8807][INFO][DisconnectDGServer] sock:3 +[29 10:11:05][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:10][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:15][8807][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 10:11:20][8807][INFO][thr_DGConn] connection success. +[29 10:11:20][8807][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 10:11:20][8807][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 10:11:20][8807][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 10:11:29][8807][INFO][process_msg] timesync diff:-341 +[29 10:13:56][8807][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=2575 module_type=1001 jvmtype=JSPD +[29 10:13:56][8807][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:2575 module_type:1001] +[29 10:13:57][8807][ERRO][MFJ-OSM-00020090] File open failed. FileName:/app/tmax/intermax/2208.06/jspd/data/agent/imxtxn (2) +[29 10:13:57][8807][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[29 10:13:59][8807][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=2575 prev_jvmpid=2575 +[29 10:13:59][8807][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:2575 module_type:1001] +[29 10:14:17][8807][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=2861 module_type=1001 jvmtype=JSPD +[29 10:14:17][8807][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:2861 module_type:1001] +[29 10:15:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:20:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:25:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:35:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:40:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 10:45:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 10:50:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 10:55:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:00:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:00:09][8807][INFO][process_msg] timesync diff:-753 +[29 11:05:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 11:10:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:15:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:20:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:25:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:35:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 11:40:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 11:45:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 11:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 11:55:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:00:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 12:00:09][8807][INFO][process_msg] timesync diff:-281 +[29 12:05:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:10:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:15:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:20:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 12:25:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:30:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:35:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 12:40:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:45:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 12:50:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 12:55:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:00:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:00:09][8807][INFO][process_msg] timesync diff:-174 +[29 13:05:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:10:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:15:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:20:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:25:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:30:00][8807][INFO][info_log] current tcp_queue[0] skip[0] +[29 13:35:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 13:40:00][8807][INFO][info_log] current tcp_queue[1] skip[0] +[29 13:45:00][8807][INFO][info_log] current tcp_queue[2] skip[0] +[29 13:50:00][8807][INFO][info_log] current tcp_queue[3] skip[0] +[29 13:50:50][8807][INFO][send_was_alert] (200102) alert_name:JVM Down pid:2575 +[29 13:50:50][8807][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=2575 +[29 13:50:50][8807][INFO][send_was_alert] (200102) alert_name:JVM Down pid:2861 +[29 13:50:50][8807][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=2861 +[29 13:50:50][8807][INFO][thread_wasstat] ALL JVM Down. 2(2) +[29 13:50:57][8807][INFO][thr_jvm_alert] finish normally. +[29 13:50:57][8807][INFO][thr_osm_module] finish normally. +[29 13:50:57][8807][INFO][thread_filesystem] finish normally. +[29 13:50:57][8807][INFO][process_main] finished. +[29 13:50:57][8807][INFO][thread_osstat_proclist] finish normally. +[29 13:50:57][8807][INFO][thread_shellcmd] finish normally. +[29 13:50:57][8807][INFO][DisconnectDGServer] sock:3 +[29 13:50:57][8807][INFO][thd_DGConn] finish normally. +[29 13:50:57][8807][INFO][thr_DGConn_sender] finish normally. +[29 13:50:59][8807][INFO][MAIN] imxosm terminated normally. +[29 13:51:00][8807][INFO][exit_handler] terminated. +[29 13:55:08][29962][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[29 13:55:08][29962][INFO][check_double_execution] write pid. 29962 +[29 13:55:08][29962][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[29 13:55:08][29962][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 13:55:08][29962][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[29 13:55:08][29962][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 13:55:08][29962][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 13:55:08][29962][INFO][read_properties_common] imx.prop CPU100:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 13:55:08][29962][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 13:55:08][29962][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 13:55:08][29962][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[29 13:55:08][29962][INFO][check_os_info] OS Name : Linux +[29 13:55:08][29962][INFO][check_os_info] Nodename : kkam +[29 13:55:08][29962][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[29 13:55:08][29962][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[29 13:55:08][29962][INFO][check_os_info] Machine : x86_64 +[29 13:55:08][29962][INFO][MAIN] initialize resources. +[29 13:55:08][29962][INFO][osm_module_init] common.immf open success. +[29 13:55:08][29962][INFO][initialize_offset] initialize offset success! 3ce84000 3ce84050 3ce94060 +[29 13:55:08][29962][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[29 13:55:08][29962][INFO][read_properties] jspd.prop TXN_IP= +[29 13:55:08][29962][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[29 13:55:08][29962][INFO][read_properties] jspd.prop UTS_IP= +[29 13:55:08][29962][INFO][run_thread] create success. THR_DGCONN (0) +[29 13:55:08][29962][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 13:55:08][29962][INFO][thr_DGConn] dg=100007f:1314 +[29 13:55:08][29962][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 13:55:08][29962][INFO][get_Hostname] Hostname:[kkam] +[29 13:55:08][29962][INFO][get_xm_sys_hostkey] xm_sys_hostkey:58D9286D +[29 13:55:08][29962][INFO][get_HostKey] Hostkey:[58D9286D] +[29 13:55:08][29962][INFO][thr_DGConn] connection success. +[29 13:55:08][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 13:55:08][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 13:55:08][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 13:55:09][29962][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[29 13:55:09][29962][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_JVMALERT (0) +[29 13:55:09][29962][INFO][run_thread] create success. THR_WASSTAT (0) +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=2575 module_type=0 jvmtype=JVM +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=2861 module_type=0 jvmtype=JVM +[29 13:55:09][29962][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=29847 module_type=1001 jvmtype=JSPD +[29 13:55:09][29962][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=2575 +[29 13:55:09][29962][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=2861 +[29 13:55:09][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 13:55:09][29962][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[29 13:55:09][29962][INFO][thread_docker_stat] thread terminate. +[29 13:55:12][29962][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[29 13:55:18][29962][INFO][process_msg] timesync diff:-192 +[29 13:55:26][29962][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=1001 jvmtype=JSPD +[29 13:55:26][29962][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:30137 module_type:1001] +[29 13:58:35][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:30137 +[29 13:58:35][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=30137 +[29 14:00:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:00:09][29962][INFO][process_msg] timesync diff:-675 +[29 14:05:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:05:35][29962][ERRO][processing_socket] get packet data failed(-1) +[29 14:05:35][29962][INFO][DisconnectDGServer] sock:3 +[29 14:05:38][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=29847 +[29 14:05:40][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 14:05:45][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 14:05:50][29962][INFO][thr_DGConn] connection success. +[29 14:05:50][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 14:05:50][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 14:05:50][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20221108 +[29 14:05:50][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=29847 prev_jvmpid=29847 +[29 14:05:50][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 14:05:50][29962][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:29847 module_type:1001] +[29 14:06:00][29962][INFO][process_msg] timesync diff:-456 +[29 14:06:35][29962][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=1001 jvmtype=JSPD +[29 14:06:35][29962][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:6823 module_type:1001] +[29 14:06:38][29962][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=6823 prev_jvmpid=6823 +[29 14:06:38][29962][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:6823 module_type:1001] +[29 14:07:20][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:6823 +[29 14:07:20][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=8 jvmpid=6823 +[29 14:10:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:11:02][29962][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=9985 module_type=1001 jvmtype=JSPD +[29 14:11:02][29962][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:9985 module_type:1001] +[29 14:11:29][29962][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9985 +[29 14:11:29][29962][INFO][thread_wasstat-PC] send JVM Down. wasid=9 jvmpid=9985 +[29 14:11:50][29962][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=10666 prev_jvmpid=0 +[29 14:11:50][29962][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:10666 module_type:1001] +[29 14:15:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:25:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:30:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:35:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:40:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 14:45:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 14:50:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 14:55:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:00:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:00:09][29962][INFO][process_msg] timesync diff:-796 +[29 15:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:15:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:20:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 15:25:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:30:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:35:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:40:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 15:45:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 15:50:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 15:55:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 16:00:00][29962][INFO][info_log] current tcp_queue[4] skip[0] +[29 16:00:09][29962][INFO][process_msg] timesync diff:-458 +[29 16:02:25][29962][ERRO][processing_socket] get packet data failed(-1) +[29 16:02:25][29962][INFO][DisconnectDGServer] sock:3 +[29 16:02:26][29962][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=29847 +[29 16:02:26][29962][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=0 prev_jvmpid=10666 +[29 16:02:30][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:02:35][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:02:40][29962][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[29 16:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:06:40][29962][INFO][thr_DGConn] connection success. +[29 16:06:40][29962][INFO][send_identity_unite]host_key[58D9286D],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[29 16:06:40][29962][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 16:06:41][29962][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[29 16:06:44][29962][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=10666 prev_jvmpid=0 +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:44][29962][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=29847 prev_jvmpid=0 +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:44][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:47][29962][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=10666 prev_jvmpid=10666 +[29 16:06:47][29962][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:10666 module_type:1001] +[29 16:06:47][29962][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=29847 prev_jvmpid=29847 +[29 16:06:47][29962][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:29847 module_type:1001] +[29 16:06:49][29962][INFO][process_msg] timesync diff:-226 +[29 16:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:15:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 16:25:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:30:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:35:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:40:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:45:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 16:50:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 16:55:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:00:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:00:09][29962][INFO][process_msg] timesync diff:-403 +[29 17:05:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:10:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:15:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 17:20:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:25:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:30:00][29962][INFO][info_log] current tcp_queue[1] skip[0] +[29 17:35:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:40:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:43:00][29962][INFO][get_dn_process] get_process_stat() has failed.[pid:32250] +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:44:00][29962][INFO][send_was_alert] (200102) alert_name:java pid:0 +[29 17:45:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:50:00][29962][INFO][info_log] current tcp_queue[2] skip[0] +[29 17:55:00][29962][INFO][info_log] current tcp_queue[0] skip[0] +[29 18:00:00][29962][INFO][info_log] current tcp_queue[3] skip[0] +[29 18:00:09][29962][INFO][process_msg] timesync diff:-521 +[29 18:01:50][29962][ERRO][MFJ-OSM-00040050] SIGTERM sig caught. +[29 18:01:50][29962][ERRO][xm_debug_logging] main_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/main.c][575] +[29 18:01:50][29962][ERRO][xm_debug_logging] dgconn_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][963] +[29 18:01:50][29962][ERRO][xm_debug_logging] dgconn_sender_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][315] +[29 18:01:50][29962][ERRO][xm_debug_logging] os_stat_proc_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][349] +[29 18:01:50][29962][ERRO][xm_debug_logging] docker_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][527] +[29 18:01:50][29962][ERRO][xm_debug_logging] shellcmd_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_shellcmd.c][312] +[29 18:01:50][29962][ERRO][xm_debug_logging] filesystem_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_fs.c][82] +[29 18:01:50][29962][ERRO][xm_debug_logging] osm_module_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][913] +[29 18:01:50][29962][ERRO][xm_debug_logging] was_jvm_alert_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][817] +[29 18:01:50][29962][ERRO][xm_debug_logging] was_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][661] +[29 18:01:50][29962][ERRO][MFJ-OSM-00040040] SIGHUP sig caught +[29 18:01:50][29962][INFO][exit_handler] terminated. +[06 17:05:15][9278][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[06 17:05:15][9278][INFO][check_double_execution] write pid. 9278 +[06 17:05:15][9278][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[06 17:05:15][9278][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[06 17:05:15][9278][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[06 17:05:15][9278][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[06 17:05:15][9278][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop DGADDR_LIST= +[06 17:05:15][9278][INFO][read_properties_common] imx.prop CPU100:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[06 17:05:15][9278][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[06 17:05:15][9278][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[06 17:05:15][9278][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[06 17:05:15][9278][INFO][check_os_info] OS Name : Linux +[06 17:05:15][9278][INFO][check_os_info] Nodename : kkam +[06 17:05:15][9278][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[06 17:05:15][9278][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[06 17:05:15][9278][INFO][check_os_info] Machine : x86_64 +[06 17:05:15][9278][INFO][MAIN] initialize resources. +[06 17:05:15][9278][INFO][osm_module_init] common.immf open success. +[06 17:05:15][9278][INFO][initialize_offset] initialize offset success! 27608000 27608050 27618060 +[06 17:05:15][9278][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[06 17:05:15][9278][INFO][read_properties] jspd.prop TXN_IP= +[06 17:05:15][9278][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[06 17:05:15][9278][INFO][read_properties] jspd.prop UTS_IP= +[06 17:05:15][9278][INFO][run_thread] create success. THR_DGCONN (0) +[06 17:05:15][9278][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[06 17:05:15][9278][INFO][thr_DGConn] dg=100007f:1314 +[06 17:05:15][9278][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[06 17:05:15][9278][INFO][get_Hostname] Hostname:[kkam] +[06 17:05:15][9278][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BEA19574 +[06 17:05:15][9278][INFO][get_HostKey] Hostkey:[BEA19574] +[06 17:05:15][9278][INFO][thr_DGConn] connection success. +[06 17:05:15][9278][INFO][send_identity_unite]host_key[BEA19574],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[06 17:05:15][9278][INFO][thr_DGConn] sock(3),data gather connect(1) +[06 17:05:15][9278][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[06 17:05:15][9278][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[06 17:05:15][9278][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_SHELLCMD (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_FILESYSTEM (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_OSM_MODULE (0) +[06 17:05:15][9278][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[06 17:05:15][9278][INFO][thread_docker_stat] thread terminate. +[06 17:05:15][9278][INFO][run_thread] create success. THR_JVMALERT (0) +[06 17:05:15][9278][INFO][run_thread] create success. THR_WASSTAT (0) +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=10666 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=9167 module_type=1001 jvmtype=JSPD +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=0 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=0 module_type=0 jvmtype=JVM +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=10666 +[06 17:05:15][9278][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:9167 module_type:1001] +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=30137 +[06 17:05:15][9278][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=6823 +[06 17:05:18][9278][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[06 17:05:24][9278][INFO][process_msg] timesync diff:-957 +[06 17:05:38][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=9511 prev_jvmpid=0 +[06 17:05:38][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:9511 module_type:1001] +[06 17:05:38][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:9511 module_type:1001] +[06 17:06:00][9278][INFO][get_dn_process] get_process_stat() has failed.[pid:9872] +[06 17:07:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:10:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:14:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:15:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:20:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:25:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:28:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 17:30:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:35:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:40:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 17:45:00][9278][INFO][info_log] current tcp_queue[4] skip[0] +[06 17:50:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 17:55:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 18:00:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:00:09][9278][INFO][process_msg] timesync diff:-572 +[06 18:05:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:10:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:15:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:16:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 18:20:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 18:25:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 18:30:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:35:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:40:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:45:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:50:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 18:55:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 18:58:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:00:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 19:00:09][9278][INFO][process_msg] timesync diff:-729 +[06 19:04:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:05:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 19:09:59][9278][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9167 +[06 19:09:59][9278][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=9167 +[06 19:10:00][9278][INFO][info_log] current tcp_queue[3] skip[0] +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:10:02][9278][INFO][send_was_alert] (200102) alert_name:JVM Down pid:9511 +[06 19:10:02][9278][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=9511 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:11:00][9278][INFO][send_was_alert] (200102) alert_name:java pid:0 +[06 19:14:35][9278][INFO][read_all_jvm_pids] modified jvm pid idx=1 wasid=5 jvmpid=4310 prev_jvmpid=0 +[06 19:14:35][9278][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:4310 module_type:1001] +[06 19:14:59][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=4620 prev_jvmpid=0 +[06 19:14:59][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[06 19:15:00][9278][INFO][info_log] current tcp_queue[1] skip[0] +[06 19:15:02][9278][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=4 jvmpid=4620 prev_jvmpid=4620 +[06 19:15:02][9278][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[06 19:20:00][9278][INFO][info_log] current tcp_queue[0] skip[0] +[06 19:25:00][9278][INFO][info_log] current tcp_queue[2] skip[0] +[06 19:27:07][9278][ERRO][MFJ-OSM-00040050] SIGTERM sig caught. +[06 19:27:07][9278][ERRO][xm_debug_logging] main_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/main.c][575] +[06 19:27:07][9278][ERRO][xm_debug_logging] dgconn_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][963] +[06 19:27:07][9278][ERRO][xm_debug_logging] dgconn_sender_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/common/thr_dgconn.c][315] +[06 19:27:07][9278][ERRO][xm_debug_logging] os_stat_proc_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][349] +[06 19:27:07][9278][ERRO][xm_debug_logging] docker_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_os.c][527] +[06 19:27:07][9278][ERRO][xm_debug_logging] shellcmd_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_shellcmd.c][312] +[06 19:27:07][9278][ERRO][xm_debug_logging] filesystem_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/thr_fs.c][82] +[06 19:27:07][9278][ERRO][xm_debug_logging] osm_module_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][913] +[06 19:27:07][9278][ERRO][xm_debug_logging] was_jvm_alert_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][817] +[06 19:27:07][9278][ERRO][xm_debug_logging] was_stat_thr [/home/mfjd/nfs/jenkins/package.intermax/imxosm/src/module/was/thr_was.c][661] +[06 19:27:07][9278][INFO][thr_DGConn_sender] finish normally. +[06 19:27:08][9278][INFO][thread_osstat_proclist] finish normally. +[06 19:27:08][9278][INFO][thread_filesystem] finish normally. +[06 19:27:08][9278][INFO][thr_jvm_alert] finish normally. +[06 19:27:08][9278][INFO][thr_osm_module] finish normally. +[06 19:27:08][9278][INFO][thread_shellcmd] finish normally. +[06 19:27:08][9278][INFO][exit_handler] terminated. +[03 10:00:17][20428][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 10:00:17][20428][INFO][check_double_execution] write pid. 20428 +[03 10:00:17][20428][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 10:00:17][20428][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 10:00:17][20428][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 10:00:17][20428][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 10:00:17][20428][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 10:00:17][20428][INFO][read_properties_common] imx.prop CPU100:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 10:00:17][20428][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 10:00:17][20428][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 10:00:17][20428][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 10:00:17][20428][INFO][check_os_info] OS Name : Linux +[03 10:00:17][20428][INFO][check_os_info] Nodename : kkam +[03 10:00:17][20428][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 10:00:17][20428][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 10:00:17][20428][INFO][check_os_info] Machine : x86_64 +[03 10:00:17][20428][INFO][MAIN] initialize resources. +[03 10:00:17][20428][INFO][osm_module_init] common.immf open success. +[03 10:00:17][20428][INFO][initialize_offset] initialize offset success! fe89c000 fe89c050 fe8ac060 +[03 10:00:17][20428][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 10:00:17][20428][INFO][read_properties] jspd.prop TXN_IP= +[03 10:00:17][20428][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 10:00:17][20428][INFO][read_properties] jspd.prop UTS_IP= +[03 10:00:17][20428][INFO][run_thread] create success. THR_DGCONN (0) +[03 10:00:17][20428][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 10:00:17][20428][INFO][thr_DGConn] dg=100007f:1314 +[03 10:00:17][20428][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 10:00:17][20428][INFO][get_Hostname] Hostname:[kkam] +[03 10:00:17][20428][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 10:00:17][20428][INFO][get_HostKey] Hostkey:[BA589C71] +[03 10:00:17][20428][INFO][thr_DGConn] connection success. +[03 10:00:17][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:00:17][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:00:17][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:00:18][20428][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 10:00:18][20428][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 10:00:18][20428][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 10:00:18][20428][INFO][thread_docker_stat] thread terminate. +[03 10:00:18][20428][INFO][run_thread] create success. THR_JVMALERT (0) +[03 10:00:18][20428][INFO][run_thread] create success. THR_WASSTAT (0) +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=20294 module_type=1001 jvmtype=JSPD +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=30137 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=6823 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=0 module_type=0 jvmtype=JVM +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[03 10:00:18][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:20294 module_type:1001] +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=30137 +[03 10:00:18][20428][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=6823 +[03 10:00:21][20428][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 10:00:26][20428][INFO][process_msg] timesync diff:-40 +[03 10:00:29][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=20544 prev_jvmpid=0 +[03 10:00:29][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:00:29][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:00:32][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=20544 prev_jvmpid=20544 +[03 10:00:32][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:20544 module_type:1001] +[03 10:05:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:10:00][20428][INFO][info_log] current tcp_queue[2] skip[0] +[03 10:15:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:15:00][20428][INFO][info_log] current tcp_queue[5] skip[0] +[03 10:20:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:24:56][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:20294 +[03 10:24:56][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=20294 +[03 10:24:59][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:20544 +[03 10:24:59][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=20544 +[03 10:25:00][20428][INFO][info_log] current tcp_queue[3] skip[0] +[03 10:25:00][20428][INFO][get_dn_process] get_process_stat() has failed.[pid:5824] +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:25:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:26:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:28:47][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=8724 prev_jvmpid=0 +[03 10:28:47][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:8724 module_type:1001] +[03 10:28:50][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=8724 prev_jvmpid=8724 +[03 10:28:50][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:8724 module_type:1001] +[03 10:28:59][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=8924 prev_jvmpid=0 +[03 10:28:59][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:8924 module_type:1001] +[03 10:29:02][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=8924 prev_jvmpid=8924 +[03 10:29:02][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:8924 module_type:1001] +[03 10:30:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:30:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:34:20][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8724 +[03 10:34:20][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=8724 +[03 10:34:23][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8924 +[03 10:34:23][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=8924 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:35:00][20428][INFO][info_log] current tcp_queue[12] skip[0] +[03 10:36:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=0 +[03 10:36:41][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:36:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=0 +[03 10:36:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:40:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:42:39][20428][ERRO][processing_socket] get packet data failed(-1) +[03 10:42:39][20428][INFO][DisconnectDGServer] sock:3 +[03 10:42:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=14890 +[03 10:42:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=0 prev_jvmpid=15118 +[03 10:42:44][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:42:49][20428][INFO][thr_DGConn] connection success. +[03 10:42:49][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:42:49][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:42:49][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:42:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=14890 +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:42:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=15118 +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:42:53][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:42:58][20428][INFO][process_msg] timesync diff:-427 +[03 10:45:00][20428][INFO][info_log] current tcp_queue[4] skip[0] +[03 10:47:17][20428][ERRO][processing_socket] get packet data failed(-1) +[03 10:47:17][20428][INFO][DisconnectDGServer] sock:3 +[03 10:47:20][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=0 prev_jvmpid=14890 +[03 10:47:20][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=0 prev_jvmpid=15118 +[03 10:47:22][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:47:27][20428][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[03 10:47:32][20428][INFO][thr_DGConn] connection success. +[03 10:47:32][20428][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 10:47:32][20428][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 10:47:32][20428][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 10:47:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=6 jvmpid=14890 prev_jvmpid=14890 +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:47:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=7 jvmpid=15118 prev_jvmpid=15118 +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:6 agent_pid:14890 module_type:1001] +[03 10:47:38][20428][INFO][send_osm_license_info] send license data [server_id:7 agent_pid:15118 module_type:1001] +[03 10:47:41][20428][INFO][process_msg] timesync diff:-214 +[03 10:49:26][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:14890 +[03 10:49:26][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=6 jvmpid=14890 +[03 10:49:29][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15118 +[03 10:49:29][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=7 jvmpid=15118 +[03 10:50:00][20428][INFO][info_log] current tcp_queue[1] skip[0] +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:50:00][20428][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 10:54:38][20428][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=29251 prev_jvmpid=0 +[03 10:54:38][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:38][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:41][20428][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=8 jvmpid=29251 prev_jvmpid=29251 +[03 10:54:41][20428][INFO][send_osm_license_info] send license data [server_id:8 agent_pid:29251 module_type:1001] +[03 10:54:50][20428][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=29448 prev_jvmpid=0 +[03 10:54:50][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:54:50][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:54:53][20428][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=9 jvmpid=29448 prev_jvmpid=29448 +[03 10:54:53][20428][INFO][send_osm_license_info] send license data [server_id:9 agent_pid:29448 module_type:1001] +[03 10:55:00][20428][INFO][info_log] current tcp_queue[0] skip[0] +[03 10:57:23][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:29251 +[03 10:57:23][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=8 jvmpid=29251 +[03 10:57:26][20428][INFO][send_was_alert] (200102) alert_name:JVM Down pid:29448 +[03 10:57:26][20428][INFO][thread_wasstat-PC] send JVM Down. wasid=9 jvmpid=29448 +[03 10:57:26][20428][INFO][thread_wasstat] ALL JVM Down. 6(6) +[03 10:57:33][20428][INFO][thr_osm_module] finish normally. +[03 10:57:33][20428][INFO][thread_osstat_proclist] finish normally. +[03 10:57:33][20428][INFO][thr_jvm_alert] finish normally. +[03 10:57:33][20428][INFO][process_main] finished. +[03 10:57:33][20428][INFO][thread_filesystem] finish normally. +[03 10:57:33][20428][INFO][thread_shellcmd] finish normally. +[03 10:57:33][20428][INFO][thr_DGConn_sender] finish normally. +[03 10:57:33][20428][INFO][DisconnectDGServer] sock:3 +[03 10:57:33][20428][INFO][thd_DGConn] finish normally. +[03 10:57:35][20428][INFO][MAIN] imxosm terminated normally. +[03 10:57:36][20428][INFO][exit_handler] terminated. +[03 11:03:53][4565][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 11:03:53][4565][INFO][check_double_execution] write pid. 4565 +[03 11:03:53][4565][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 11:03:53][4565][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:03:53][4565][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 11:03:53][4565][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 11:03:53][4565][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 11:03:53][4565][INFO][read_properties_common] imx.prop CPU100:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 11:03:53][4565][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 11:03:53][4565][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 11:03:53][4565][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 11:03:53][4565][INFO][check_os_info] OS Name : Linux +[03 11:03:53][4565][INFO][check_os_info] Nodename : kkam +[03 11:03:53][4565][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 11:03:53][4565][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 11:03:53][4565][INFO][check_os_info] Machine : x86_64 +[03 11:03:53][4565][INFO][MAIN] initialize resources. +[03 11:03:53][4565][INFO][osm_module_init] common.immf open success. +[03 11:03:53][4565][INFO][initialize_offset] initialize offset success! 4889e000 4889e050 488ae060 +[03 11:03:53][4565][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 11:03:53][4565][INFO][read_properties] jspd.prop TXN_IP= +[03 11:03:53][4565][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 11:03:53][4565][INFO][read_properties] jspd.prop UTS_IP= +[03 11:03:53][4565][INFO][run_thread] create success. THR_DGCONN (0) +[03 11:03:53][4565][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 11:03:53][4565][INFO][thr_DGConn] dg=100007f:1314 +[03 11:03:53][4565][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 11:03:53][4565][INFO][get_Hostname] Hostname:[kkam] +[03 11:03:53][4565][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 11:03:53][4565][INFO][get_HostKey] Hostkey:[BA589C71] +[03 11:03:53][4565][INFO][thr_DGConn] connection success. +[03 11:03:53][4565][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 11:03:53][4565][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 11:03:53][4565][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 11:03:53][4565][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 11:03:53][4565][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_JVMALERT (0) +[03 11:03:53][4565][INFO][run_thread] create success. THR_WASSTAT (0) +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=1001 jvmtype=JSPD +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[03 11:03:53][4565][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=1001 jvmtype=JSPD +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[03 11:03:53][4565][INFO][send_osm_license_info] send license data [server_id:5 agent_pid:4310 module_type:1001] +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[03 11:03:53][4565][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[03 11:03:53][4565][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:4418 module_type:1001] +[03 11:03:53][4565][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 11:03:53][4565][INFO][thread_docker_stat] thread terminate. +[03 11:03:54][4565][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 11:04:00][4565][INFO][get_dn_process] get_process_stat() has failed.[pid:4714] +[03 11:04:02][4565][INFO][process_msg] timesync diff:-732 +[03 11:04:02][4565][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=1001 jvmtype=JSPD +[03 11:04:02][4565][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:4665 module_type:1001] +[03 11:04:05][4565][INFO][read_all_jvm_pids] modified jvm pid idx=7 wasid=11 jvmpid=4665 prev_jvmpid=4665 +[03 11:04:05][4565][INFO][send_osm_license_info] send license data [server_id:11 agent_pid:4665 module_type:1001] +[03 11:05:00][4565][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:05:00][4565][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:05:00][4565][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4310 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=5 jvmpid=4310 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4418 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=10 jvmpid=4418 +[03 11:05:11][4565][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4665 +[03 11:05:11][4565][INFO][thread_wasstat-PC] send JVM Down. wasid=11 jvmpid=4665 +[03 11:05:11][4565][INFO][thread_wasstat] ALL JVM Down. 8(8) +[03 11:05:18][4565][INFO][thread_osstat_proclist] finish normally. +[03 11:05:18][4565][INFO][thr_osm_module] finish normally. +[03 11:05:18][4565][INFO][process_main] finished. +[03 11:05:18][4565][INFO][thread_filesystem] finish normally. +[03 11:05:18][4565][INFO][thr_jvm_alert] finish normally. +[03 11:05:18][4565][INFO][thr_DGConn_sender] finish normally. +[03 11:05:18][4565][INFO][DisconnectDGServer] sock:3 +[03 11:05:18][4565][INFO][thd_DGConn] finish normally. +[03 11:05:18][4565][INFO][thread_shellcmd] finish normally. +[03 11:05:20][4565][INFO][MAIN] imxosm terminated normally. +[03 11:05:21][4565][INFO][exit_handler] terminated. +[03 11:08:43][8480][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[03 11:08:43][8480][INFO][check_double_execution] write pid. 8480 +[03 11:08:43][8480][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[03 11:08:43][8480][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:08:43][8480][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[03 11:08:43][8480][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[03 11:08:43][8480][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop DGADDR_LIST= +[03 11:08:43][8480][INFO][read_properties_common] imx.prop CPU100:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[03 11:08:43][8480][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[03 11:08:43][8480][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[03 11:08:43][8480][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[03 11:08:43][8480][INFO][check_os_info] OS Name : Linux +[03 11:08:43][8480][INFO][check_os_info] Nodename : kkam +[03 11:08:43][8480][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[03 11:08:43][8480][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[03 11:08:43][8480][INFO][check_os_info] Machine : x86_64 +[03 11:08:43][8480][INFO][MAIN] initialize resources. +[03 11:08:43][8480][INFO][osm_module_init] common.immf open success. +[03 11:08:43][8480][INFO][initialize_offset] initialize offset success! 57fd1000 57fd1050 57fe1060 +[03 11:08:43][8480][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[03 11:08:43][8480][INFO][read_properties] jspd.prop TXN_IP= +[03 11:08:43][8480][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[03 11:08:43][8480][INFO][read_properties] jspd.prop UTS_IP= +[03 11:08:43][8480][INFO][run_thread] create success. THR_DGCONN (0) +[03 11:08:43][8480][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[03 11:08:43][8480][INFO][thr_DGConn] dg=100007f:1314 +[03 11:08:43][8480][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[03 11:08:43][8480][INFO][get_Hostname] Hostname:[kkam] +[03 11:08:43][8480][INFO][get_xm_sys_hostkey] xm_sys_hostkey:BA589C71 +[03 11:08:43][8480][INFO][get_HostKey] Hostkey:[BA589C71] +[03 11:08:43][8480][INFO][thr_DGConn] connection success. +[03 11:08:43][8480][INFO][send_identity_unite]host_key[BA589C71],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[03 11:08:43][8480][INFO][thr_DGConn] sock(3),data gather connect(1) +[03 11:08:43][8480][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[03 11:08:43][8480][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[03 11:08:43][8480][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_SHELLCMD (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_FILESYSTEM (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_OSM_MODULE (0) +[03 11:08:43][8480][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[03 11:08:43][8480][INFO][thread_docker_stat] thread terminate. +[03 11:08:43][8480][INFO][run_thread] create success. THR_JVMALERT (0) +[03 11:08:43][8480][INFO][run_thread] create success. THR_WASSTAT (0) +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=1001 jvmtype=JSPD +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[03 11:08:43][8480][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=8334 module_type=1001 jvmtype=JSPD +[03 11:08:43][8480][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[03 11:08:43][8480][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[03 11:08:43][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:8334 module_type:1001] +[03 11:08:45][8480][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[03 11:08:52][8480][INFO][process_msg] timesync diff:-575 +[03 11:08:53][8480][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=8563 module_type=1001 jvmtype=JSPD +[03 11:08:53][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:8563 module_type:1001] +[03 11:08:56][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=8563 prev_jvmpid=8563 +[03 11:08:56][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:8563 module_type:1001] +[03 11:09:17][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8334 +[03 11:09:17][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=8334 +[03 11:09:20][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:8563 +[03 11:09:20][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=8563 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:10:00][8480][INFO][info_log] current tcp_queue[9] skip[0] +[03 11:10:53][8480][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=10400 prev_jvmpid=0 +[03 11:10:53][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:10400 module_type:1001] +[03 11:11:11][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=10663 prev_jvmpid=0 +[03 11:11:11][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:10663 module_type:1001] +[03 11:11:14][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=10663 prev_jvmpid=10663 +[03 11:11:14][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:10663 module_type:1001] +[03 11:12:56][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:10400 +[03 11:12:56][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=10400 +[03 11:12:59][8480][INFO][send_was_alert] (200102) alert_name:JVM Down pid:10663 +[03 11:12:59][8480][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=10663 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:13:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:14:26][8480][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=13281 prev_jvmpid=0 +[03 11:14:26][8480][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:13281 module_type:1001] +[03 11:14:38][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=13475 prev_jvmpid=0 +[03 11:14:38][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:13475 module_type:1001] +[03 11:14:41][8480][INFO][read_all_jvm_pids] modified jvm pid idx=9 wasid=13 jvmpid=13475 prev_jvmpid=13475 +[03 11:14:41][8480][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:13475 module_type:1001] +[03 11:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:20:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 11:25:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 11:27:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 11:30:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 11:35:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 11:40:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 11:45:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 11:50:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 11:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 12:00:09][8480][INFO][process_msg] timesync diff:-602 +[03 12:05:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 12:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:25:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:30:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:36:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 12:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:45:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:45:00][8480][INFO][get_dn_process] get_process_stat() has failed.[pid:13329] +[03 12:46:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 12:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 12:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 12:57:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 13:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:00:09][8480][INFO][process_msg] timesync diff:-788 +[03 13:05:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 13:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 13:15:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:25:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 13:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 13:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 13:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 13:55:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 14:00:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 14:00:09][8480][INFO][process_msg] timesync diff:-175 +[03 14:05:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:15:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:20:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:25:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:27:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 14:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 14:33:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 14:35:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:40:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 14:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 14:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:00:09][8480][INFO][process_msg] timesync diff:-313 +[03 15:05:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 15:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:12:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 15:15:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 15:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 15:24:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 15:25:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:30:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 15:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 15:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 15:55:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 15:59:59][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 16:00:09][8480][INFO][process_msg] timesync diff:-522 +[03 16:01:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:05:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:07:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:10:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 16:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 16:25:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 16:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:35:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:40:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 16:50:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 16:55:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 17:00:09][8480][INFO][process_msg] timesync diff:-775 +[03 17:05:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:10:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:15:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 17:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 17:30:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 17:31:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 17:35:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 17:40:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 17:42:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 17:45:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 17:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 17:55:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:00:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:00:09][8480][INFO][process_msg] timesync diff:-532 +[03 18:05:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:10:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 18:15:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 18:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[03 18:40:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 18:45:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:50:00][8480][INFO][info_log] current tcp_queue[0] skip[0] +[03 18:55:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 19:00:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 19:00:09][8480][INFO][process_msg] timesync diff:-696 +[03 19:01:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 19:05:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:10:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:15:00][8480][INFO][info_log] current tcp_queue[2] skip[0] +[03 19:20:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:25:00][8480][INFO][info_log] current tcp_queue[4] skip[0] +[03 19:30:00][8480][INFO][info_log] current tcp_queue[1] skip[0] +[03 19:33:00][8480][INFO][get_dn_process] get_process_stat() has failed.[pid:13402] +[03 19:34:00][8480][INFO][send_was_alert] (200102) alert_name:java pid:0 +[03 19:35:00][8480][INFO][info_log] current tcp_queue[3] skip[0] +[15 09:45:22][7599][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 09:45:22][7599][INFO][check_double_execution] write pid. 7599 +[15 09:45:22][7599][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 09:45:22][7599][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 09:45:22][7599][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 09:45:22][7599][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 09:45:22][7599][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 09:45:22][7599][INFO][read_properties_common] imx.prop CPU100:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 09:45:22][7599][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 09:45:22][7599][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 09:45:22][7599][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 09:45:22][7599][INFO][check_os_info] OS Name : Linux +[15 09:45:22][7599][INFO][check_os_info] Nodename : kkam +[15 09:45:22][7599][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 09:45:22][7599][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 09:45:22][7599][INFO][check_os_info] Machine : x86_64 +[15 09:45:22][7599][INFO][MAIN] initialize resources. +[15 09:45:22][7599][INFO][osm_module_init] common.immf open success. +[15 09:45:22][7599][INFO][initialize_offset] initialize offset success! a58a4000 a58a4050 a58b4060 +[15 09:45:22][7599][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 09:45:22][7599][INFO][read_properties] jspd.prop TXN_IP= +[15 09:45:22][7599][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 09:45:22][7599][INFO][read_properties] jspd.prop UTS_IP= +[15 09:45:22][7599][INFO][run_thread] create success. THR_DGCONN (0) +[15 09:45:22][7599][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 09:45:22][7599][INFO][thr_DGConn] dg=100007f:1314 +[15 09:45:22][7599][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 09:45:22][7599][INFO][get_Hostname] Hostname:[kkam] +[15 09:45:22][7599][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 09:45:22][7599][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 09:45:22][7599][INFO][thr_DGConn] connection success. +[15 09:45:22][7599][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 09:45:22][7599][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 09:45:22][7599][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 09:45:22][7599][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 09:45:22][7599][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_JVMALERT (0) +[15 09:45:22][7599][INFO][run_thread] create success. THR_WASSTAT (0) +[15 09:45:23][7599][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 09:45:23][7599][INFO][thread_docker_stat] thread terminate. +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=1001 jvmtype=JSPD +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:4 agent_pid:4620 module_type:1001] +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:10 agent_pid:4418 module_type:1001] +[15 09:45:23][7599][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:5103 module_type:1001] +[15 09:45:23][7599][INFO][send_osm_license_info] send license data [server_id:13 agent_pid:5282 module_type:1001] +[15 09:45:24][7599][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 09:45:26][7599][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=12 jvmpid=5103 prev_jvmpid=5103 +[15 09:45:26][7599][INFO][send_osm_license_info] send license data [server_id:12 agent_pid:5103 module_type:1001] +[15 09:45:31][7599][INFO][process_msg] timesync diff:-68 +[15 09:50:00][7599][INFO][info_log] current tcp_queue[2] skip[0] +[15 09:55:00][7599][INFO][info_log] current tcp_queue[1] skip[0] +[15 09:56:00][7599][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 09:56:00][7599][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 09:58:08][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:5103 +[15 09:58:08][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=12 jvmpid=5103 +[15 09:58:14][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:5282 +[15 09:58:14][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=13 jvmpid=5282 +[15 09:58:23][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4620 +[15 09:58:23][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=4 jvmpid=4620 +[15 09:58:23][7599][INFO][send_was_alert] (200102) alert_name:JVM Down pid:4418 +[15 09:58:23][7599][INFO][thread_wasstat-PC] send JVM Down. wasid=10 jvmpid=4418 +[15 09:58:23][7599][INFO][thread_wasstat] ALL JVM Down. 10(10) +[15 09:58:30][7599][INFO][thread_osstat_proclist] finish normally. +[15 09:58:30][7599][INFO][process_main] finished. +[15 09:58:30][7599][INFO][thread_filesystem] finish normally. +[15 09:58:30][7599][INFO][thr_jvm_alert] finish normally. +[15 09:58:30][7599][INFO][thr_osm_module] finish normally. +[15 09:58:30][7599][INFO][thr_DGConn_sender] finish normally. +[15 09:58:30][7599][INFO][DisconnectDGServer] sock:3 +[15 09:58:30][7599][INFO][thd_DGConn] finish normally. +[15 09:58:30][7599][INFO][thread_shellcmd] finish normally. +[15 09:58:32][7599][INFO][MAIN] imxosm terminated normally. +[15 09:58:33][7599][INFO][exit_handler] terminated. +[15 11:25:45][15238][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 11:25:45][15238][INFO][check_double_execution] write pid. 15238 +[15 11:25:45][15238][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 11:25:45][15238][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:25:45][15238][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 11:25:45][15238][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 11:25:45][15238][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 11:25:45][15238][INFO][read_properties_common] imx.prop CPU100:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 11:25:45][15238][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 11:25:45][15238][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 11:25:45][15238][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 11:25:45][15238][INFO][check_os_info] OS Name : Linux +[15 11:25:45][15238][INFO][check_os_info] Nodename : kkam +[15 11:25:45][15238][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 11:25:45][15238][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 11:25:45][15238][INFO][check_os_info] Machine : x86_64 +[15 11:25:45][15238][INFO][MAIN] initialize resources. +[15 11:25:45][15238][INFO][osm_module_init] common.immf open success. +[15 11:25:45][15238][INFO][initialize_offset] initialize offset success! d0522000 d0522050 d0532060 +[15 11:25:45][15238][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 11:25:45][15238][INFO][read_properties] jspd.prop TXN_IP= +[15 11:25:45][15238][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 11:25:45][15238][INFO][read_properties] jspd.prop UTS_IP= +[15 11:25:45][15238][INFO][run_thread] create success. THR_DGCONN (0) +[15 11:25:45][15238][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 11:25:45][15238][INFO][thr_DGConn] dg=100007f:1314 +[15 11:25:45][15238][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 11:25:45][15238][INFO][get_Hostname] Hostname:[kkam] +[15 11:25:45][15238][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 11:25:45][15238][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 11:25:45][15238][INFO][thr_DGConn] connection success. +[15 11:25:45][15238][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:25:45][15238][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:25:45][15238][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:25:46][15238][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 11:25:46][15238][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_JVMALERT (0) +[15 11:25:46][15238][INFO][run_thread] create success. THR_WASSTAT (0) +[15 11:25:46][15238][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 11:25:46][15238][INFO][thread_docker_stat] thread terminate. +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=15132 module_type=1001 jvmtype=JSPD +[15 11:25:46][15238][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=21640 module_type=0 jvmtype=JVM +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 11:25:46][15238][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:15132 module_type:1001] +[15 11:25:46][15238][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=21640 +[15 11:25:48][15238][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 11:25:54][15238][INFO][process_msg] timesync diff:-26 +[15 11:26:11][15238][INFO][read_all_jvm_pids] modified jvm pid idx=11 wasid=15 jvmpid=15495 prev_jvmpid=0 +[15 11:26:11][15238][INFO][send_osm_license_info] send license data [server_id:15 agent_pid:15495 module_type:1001] +[15 11:26:11][15238][INFO][send_osm_license_info] send license data [server_id:15 agent_pid:15495 module_type:1001] +[15 11:30:00][15238][INFO][info_log] current tcp_queue[2] skip[0] +[15 11:35:00][15238][INFO][info_log] current tcp_queue[1] skip[0] +[15 11:39:47][15238][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15132 +[15 11:39:47][15238][INFO][thread_wasstat-PC] send JVM Down. wasid=14 jvmpid=15132 +[15 11:39:50][15238][INFO][send_was_alert] (200102) alert_name:JVM Down pid:15495 +[15 11:39:50][15238][INFO][thread_wasstat-PC] send JVM Down. wasid=15 jvmpid=15495 +[15 11:39:50][15238][INFO][thread_wasstat] ALL JVM Down. 12(12) +[15 11:39:57][15238][INFO][process_main] finished. +[15 11:39:57][15238][INFO][thread_filesystem] finish normally. +[15 11:39:57][15238][INFO][thread_osstat_proclist] finish normally. +[15 11:39:57][15238][INFO][thr_jvm_alert] finish normally. +[15 11:39:57][15238][INFO][thr_osm_module] finish normally. +[15 11:39:57][15238][INFO][thr_DGConn_sender] finish normally. +[15 11:39:57][15238][INFO][DisconnectDGServer] sock:3 +[15 11:39:57][15238][INFO][thd_DGConn] finish normally. +[15 11:39:57][15238][INFO][thread_shellcmd] finish normally. +[15 11:39:59][15238][INFO][MAIN] imxosm terminated normally. +[15 11:40:00][15238][INFO][exit_handler] terminated. +[15 11:42:38][27281][NOTI]g_imx_home[/app/tmax/intermax/2208.06/jspd] +[15 11:42:38][27281][INFO][check_double_execution] write pid. 27281 +[15 11:42:38][27281][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 11:42:38][27281][INFO][MAIN] HOME: /app/tmax/intermax/2208.06/jspd +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:42:38][27281][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 11:42:38][27281][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 11:42:38][27281][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 11:42:38][27281][INFO][read_properties_common] imx.prop CPU100:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 11:42:38][27281][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 11:42:38][27281][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 11:42:38][27281][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 11:42:38][27281][INFO][check_os_info] OS Name : Linux +[15 11:42:38][27281][INFO][check_os_info] Nodename : kkam +[15 11:42:38][27281][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 11:42:38][27281][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 11:42:38][27281][INFO][check_os_info] Machine : x86_64 +[15 11:42:38][27281][INFO][MAIN] initialize resources. +[15 11:42:38][27281][INFO][osm_module_init] common.immf open success. +[15 11:42:38][27281][INFO][initialize_offset] initialize offset success! fae0000 fae0050 faf0060 +[15 11:42:38][27281][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 11:42:38][27281][INFO][read_properties] jspd.prop TXN_IP= +[15 11:42:38][27281][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 11:42:38][27281][INFO][read_properties] jspd.prop UTS_IP= +[15 11:42:38][27281][INFO][run_thread] create success. THR_DGCONN (0) +[15 11:42:38][27281][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 11:42:38][27281][INFO][thr_DGConn] dg=100007f:1314 +[15 11:42:38][27281][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 11:42:38][27281][INFO][get_Hostname] Hostname:[kkam] +[15 11:42:38][27281][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 11:42:38][27281][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 11:42:38][27281][INFO][thr_DGConn] connection success. +[15 11:42:38][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:42:38][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:42:38][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:42:38][27281][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 11:42:38][27281][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 11:42:38][27281][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 11:42:38][27281][INFO][thread_docker_stat] thread terminate. +[15 11:42:38][27281][INFO][run_thread] create success. THR_JVMALERT (0) +[15 11:42:38][27281][INFO][run_thread] create success. THR_WASSTAT (0) +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=27178 module_type=1001 jvmtype=JSPD +[15 11:42:38][27281][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=15495 module_type=0 jvmtype=JVM +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 11:42:38][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:42:38][27281][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=15495 +[15 11:42:39][27281][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06/jspd imxtxn 64) +[15 11:42:47][27281][INFO][process_msg] timesync diff:-800 +[15 11:43:05][27281][INFO][read_all_jvm_pids] new jvm info idx=12 wasid=16 jvmpid=27583 module_type=1001 jvmtype=JSPD +[15 11:43:05][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:43:08][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:43:08][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:44:57][27281][ERRO][processing_socket] get packet data failed(-1) +[15 11:44:57][27281][INFO][DisconnectDGServer] sock:3 +[15 11:44:59][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=0 prev_jvmpid=27178 +[15 11:44:59][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=0 prev_jvmpid=27583 +[15 11:45:00][27281][INFO][info_log] current tcp_queue[2] skip[0] +[15 11:45:00][27281][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 11:45:00][27281][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 11:45:02][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:45:07][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:45:12][27281][INFO][thr_DGConn] connection success. +[15 11:45:12][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:45:12][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:45:12][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:45:17][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=27178 prev_jvmpid=27178 +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:45:17][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:45:17][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:45:21][27281][INFO][process_msg] timesync diff:-555 +[15 11:48:28][27281][ERRO][processing_socket] get packet data failed(-1) +[15 11:48:28][27281][INFO][DisconnectDGServer] sock:3 +[15 11:48:29][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=0 prev_jvmpid=27178 +[15 11:48:29][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=0 prev_jvmpid=27583 +[15 11:48:33][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:38][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:43][27281][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 11:48:48][27281][INFO][thr_DGConn] connection success. +[15 11:48:48][27281][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06/jspd] +[15 11:48:48][27281][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 11:48:49][27281][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 11:48:58][27281][INFO][process_msg] timesync diff:-415 +[15 11:49:02][27281][INFO][read_all_jvm_pids] modified jvm pid idx=10 wasid=14 jvmpid=27178 prev_jvmpid=27178 +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:49:02][27281][INFO][read_all_jvm_pids] modified jvm pid idx=12 wasid=16 jvmpid=27583 prev_jvmpid=27583 +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:14 agent_pid:27178 module_type:1001] +[15 11:49:02][27281][INFO][send_osm_license_info] send license data [server_id:16 agent_pid:27583 module_type:1001] +[15 11:50:00][27281][INFO][info_log] current tcp_queue[2] skip[0] +[15 12:04:16][14765][NOTI]g_imx_home[/app/tmax/intermax/2208.06_type4/jspd] +[15 12:04:16][14765][INFO][check_double_execution] write pid. 14765 +[15 12:04:16][14765][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 12:04:16][14765][INFO][MAIN] HOME: /app/tmax/intermax/2208.06_type4/jspd +[15 12:04:16][14765][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:04:16][14765][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 12:04:16][14765][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 12:04:16][14765][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 12:04:16][14765][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 12:04:16][14765][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 12:04:16][14765][INFO][read_properties_common] imx.prop CPU100:1 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 12:04:16][14765][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 12:04:16][14765][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 12:04:16][14765][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 12:04:16][14765][INFO][check_os_info] OS Name : Linux +[15 12:04:16][14765][INFO][check_os_info] Nodename : kkam +[15 12:04:16][14765][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 12:04:16][14765][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 12:04:16][14765][INFO][check_os_info] Machine : x86_64 +[15 12:04:16][14765][INFO][MAIN] initialize resources. +[15 12:04:16][14765][INFO][osm_module_init] common.immf open success. +[15 12:04:16][14765][INFO][initialize_offset] initialize offset success! 48f76000 48f76050 48f86060 +[15 12:04:16][14765][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 12:04:16][14765][INFO][read_properties] jspd.prop TXN_IP= +[15 12:04:16][14765][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 12:04:16][14765][INFO][read_properties] jspd.prop UTS_IP= +[15 12:04:16][14765][INFO][run_thread] create success. THR_DGCONN (0) +[15 12:04:16][14765][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 12:04:16][14765][INFO][thr_DGConn] dg=100007f:1314 +[15 12:04:16][14765][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 12:04:16][14765][INFO][get_Hostname] Hostname:[kkam] +[15 12:04:16][14765][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 12:04:16][14765][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 12:04:16][14765][INFO][thr_DGConn] connection success. +[15 12:04:16][14765][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06_type4/jspd] +[15 12:04:16][14765][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 12:04:16][14765][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 12:04:16][14765][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 12:04:16][14765][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 12:04:16][14765][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 12:04:16][14765][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 12:04:16][14765][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 12:04:16][14765][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 12:04:16][14765][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 12:04:16][14765][INFO][thread_docker_stat] thread terminate. +[15 12:04:16][14765][INFO][run_thread] create success. THR_JVMALERT (0) +[15 12:04:16][14765][INFO][run_thread] create success. THR_WASSTAT (0) +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=27178 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=15495 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=12 wasid=16 jvmpid=27583 module_type=0 jvmtype=JVM +[15 12:04:16][14765][INFO][read_all_jvm_pids] new jvm info idx=13 wasid=18 jvmpid=14632 module_type=1001 jvmtype=JSPD +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=14 jvmpid=27178 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=15495 +[15 12:04:16][14765][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=16 jvmpid=27583 +[15 12:04:16][14765][INFO][send_osm_license_info] send license data [server_id:18 agent_pid:14632 module_type:1001] +[15 12:04:18][14765][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06_type4/jspd imxtxn 64) +[15 12:04:25][14765][INFO][process_msg] timesync diff:-487 +[15 12:04:32][14765][INFO][read_all_jvm_pids] new jvm info idx=14 wasid=19 jvmpid=14964 module_type=1001 jvmtype=JSPD +[15 12:04:32][14765][INFO][send_osm_license_info] send license data [server_id:19 agent_pid:14964 module_type:1001] +[15 12:04:35][14765][INFO][read_all_jvm_pids] modified jvm pid idx=14 wasid=19 jvmpid=14964 prev_jvmpid=14964 +[15 12:04:35][14765][INFO][send_osm_license_info] send license data [server_id:19 agent_pid:14964 module_type:1001] +[15 12:05:00][14765][INFO][info_log] current tcp_queue[1] skip[0] +[15 12:06:00][14765][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:09:23][14765][INFO][send_was_alert] (200102) alert_name:JVM Down pid:14632 +[15 12:09:23][14765][INFO][thread_wasstat-PC] send JVM Down. wasid=18 jvmpid=14632 +[15 12:09:26][14765][INFO][send_was_alert] (200102) alert_name:JVM Down pid:14964 +[15 12:09:26][14765][INFO][thread_wasstat-PC] send JVM Down. wasid=19 jvmpid=14964 +[15 12:09:26][14765][INFO][thread_wasstat] ALL JVM Down. 15(15) +[15 12:09:33][14765][INFO][thr_jvm_alert] finish normally. +[15 12:09:33][14765][INFO][process_main] finished. +[15 12:09:33][14765][INFO][thread_filesystem] finish normally. +[15 12:09:33][14765][INFO][thr_osm_module] finish normally. +[15 12:09:33][14765][INFO][thread_osstat_proclist] finish normally. +[15 12:09:33][14765][INFO][thr_DGConn_sender] finish normally. +[15 12:09:33][14765][INFO][DisconnectDGServer] sock:3 +[15 12:09:33][14765][INFO][thd_DGConn] finish normally. +[15 12:09:33][14765][INFO][thread_shellcmd] finish normally. +[15 12:09:35][14765][INFO][MAIN] imxosm terminated normally. +[15 12:09:36][14765][INFO][exit_handler] terminated. +[15 12:12:17][21955][NOTI]g_imx_home[/app/tmax/intermax/2208.06_type4/jspd] +[15 12:12:17][21955][INFO][check_double_execution] write pid. 21955 +[15 12:12:17][21955][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 22-10-04 05:33:19 Version 5.3.0 (mc:3283755,cc:a8269e) +[15 12:12:17][21955][INFO][MAIN] HOME: /app/tmax/intermax/2208.06_type4/jspd +[15 12:12:17][21955][INFO][read_properties_common] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:12:17][21955][ERRO][MFJ-OSM-00020020] Wrong option value.[file:jspd.prop],[WR_ADDR] +[15 12:12:17][21955][WARN][set_dgaddr_list] jspd.prop Wrong option value.[DGADDR_LIST] idx[0], data:[] +[15 12:12:17][21955][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[15 12:12:17][21955][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[15 12:12:17][21955][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop DGADDR_LIST= +[15 12:12:17][21955][INFO][read_properties_common] imx.prop CPU100:1 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20220613 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[15 12:12:17][21955][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[15 12:12:17][21955][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[15 12:12:17][21955][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:1000 +[15 12:12:17][21955][INFO][check_os_info] OS Name : Linux +[15 12:12:17][21955][INFO][check_os_info] Nodename : kkam +[15 12:12:17][21955][INFO][check_os_info] Release : 3.10.0-1062.12.1.el7.x86_64 +[15 12:12:17][21955][INFO][check_os_info] Version : #1 SMP Tue Feb 4 23:02:59 UTC 2020 +[15 12:12:17][21955][INFO][check_os_info] Machine : x86_64 +[15 12:12:17][21955][INFO][MAIN] initialize resources. +[15 12:12:17][21955][INFO][osm_module_init] common.immf open success. +[15 12:12:17][21955][INFO][initialize_offset] initialize offset success! 36b43000 36b43050 36b53060 +[15 12:12:17][21955][INFO][read_properties] jspd.prop TXN_ADDR=7404 +[15 12:12:17][21955][INFO][read_properties] jspd.prop TXN_IP= +[15 12:12:17][21955][INFO][read_properties] jspd.prop UTS_ADDR=7504 +[15 12:12:17][21955][INFO][read_properties] jspd.prop UTS_IP= +[15 12:12:17][21955][INFO][run_thread] create success. THR_DGCONN (0) +[15 12:12:17][21955][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[15 12:12:17][21955][INFO][thr_DGConn] dg=100007f:1314 +[15 12:12:17][21955][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[15 12:12:17][21955][INFO][get_Hostname] Hostname:[kkam] +[15 12:12:17][21955][INFO][get_xm_sys_hostkey] xm_sys_hostkey:E42E6B82 +[15 12:12:17][21955][INFO][get_HostKey] Hostkey:[E42E6B82] +[15 12:12:17][21955][INFO][thr_DGConn] connection success. +[15 12:12:17][21955][INFO][send_identity_unite]host_key[E42E6B82],agt ver[Build 22-10-04 05:33:19 Version 5.3.0 ],agt path[/app/tmax/intermax/2208.06_type4/jspd] +[15 12:12:17][21955][INFO][thr_DGConn] sock(3),data gather connect(1) +[15 12:12:17][21955][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20220613, g_current_gather_version : 20220613 +[15 12:12:17][21955][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20220613) +[15 12:12:17][21955][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_SHELLCMD (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_FILESYSTEM (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_OSM_MODULE (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_JVMALERT (0) +[15 12:12:17][21955][INFO][run_thread] create success. THR_WASSTAT (0) +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=4 jvmpid=4620 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5 jvmpid=4310 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=6 jvmpid=14890 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=7 jvmpid=15118 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=8 jvmpid=29251 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=9 jvmpid=29448 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=10 jvmpid=4418 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=11 jvmpid=4665 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=12 jvmpid=5103 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=13 jvmpid=5282 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=14 jvmpid=27178 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=15 jvmpid=15495 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=12 wasid=16 jvmpid=27583 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=13 wasid=18 jvmpid=21822 module_type=1001 jvmtype=JSPD +[15 12:12:17][21955][INFO][read_all_jvm_pids] new jvm info idx=14 wasid=19 jvmpid=14964 module_type=0 jvmtype=JVM +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=4 jvmpid=4620 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=5 jvmpid=4310 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=6 jvmpid=14890 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=7 jvmpid=15118 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=8 jvmpid=29251 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=9 jvmpid=29448 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=10 jvmpid=4418 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=11 jvmpid=4665 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=12 jvmpid=5103 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=13 jvmpid=5282 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=14 jvmpid=27178 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=15 jvmpid=15495 +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=16 jvmpid=27583 +[15 12:12:17][21955][INFO][send_osm_license_info] send license data [server_id:18 agent_pid:21822 module_type:1001] +[15 12:12:17][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=19 jvmpid=14964 +[15 12:12:17][21955][INFO][thread_docker_stat] docker id file(/proc/1/cpuset) is not exist or not docker type.(ret:-2) +[15 12:12:17][21955][INFO][thread_docker_stat] thread terminate. +[15 12:12:18][21955][INFO][runprocess] execute process. (/app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh /app/tmax/intermax/2208.06_type4/jspd imxtxn 64) +[15 12:12:26][21955][INFO][process_msg] timesync diff:-383 +[15 12:12:35][21955][INFO][read_all_jvm_pids] new jvm info idx=15 wasid=21 jvmpid=22206 module_type=1001 jvmtype=JSPD +[15 12:12:35][21955][INFO][send_osm_license_info] send license data [server_id:21 agent_pid:22206 module_type:1001] +[15 12:12:38][21955][INFO][read_all_jvm_pids] modified jvm pid idx=15 wasid=21 jvmpid=22206 prev_jvmpid=22206 +[15 12:12:38][21955][INFO][send_osm_license_info] send license data [server_id:21 agent_pid:22206 module_type:1001] +[15 12:15:00][21955][INFO][info_log] current tcp_queue[0] skip[0] +[15 12:20:00][21955][INFO][info_log] current tcp_queue[4] skip[0] +[15 12:25:00][21955][INFO][info_log] current tcp_queue[3] skip[0] +[15 12:29:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:30:00][21955][INFO][info_log] current tcp_queue[1] skip[0] +[15 12:31:04][21955][ERRO][processing_socket] get packet data failed(-1) +[15 12:31:04][21955][INFO][DisconnectDGServer] sock:3 +[15 12:31:05][21955][INFO][read_all_jvm_pids] modified jvm pid idx=15 wasid=21 jvmpid=0 prev_jvmpid=22206 +[15 12:31:05][21955][INFO][thread_wasstat-PC] JVM Down. but, not send for the first time. wasid=18 jvmpid=21822 +[15 12:31:09][21955][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:31:14][21955][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:31:19][21955][ERRO][MFJ-OSM-00060020] Connection failed for DataDather Server. Socket:-1 Interval:5000(ms) (111) +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 +[15 12:32:00][21955][INFO][send_was_alert] (200102) alert_name:java pid:0 diff --git a/intermax/2208.06_type4/jspd/log/imx/imxtxn.log b/intermax/2208.06_type4/jspd/log/imx/imxtxn.log new file mode 100644 index 0000000..3804e5e --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/imx/imxtxn.log @@ -0,0 +1,17548 @@ +[29 10:13:57][2671][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[29 10:13:57][2671][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 10:13:57][2671][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[29 10:13:57][2671][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 10:13:57][2671][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[29 10:13:57][2671][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 10:13:57][2671][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[29 10:13:57][2671][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 10:13:57][2671][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 10:13:57][2671][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 10:13:57][2671][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 10:13:57][2671][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 10:13:57][2671][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 10:13:57][2671][INFO][MAIN] hostname[kkam] +[29 10:13:57][2671][INFO][check_double_execution] write pid. 2671 +[29 10:13:57][2671][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[29 10:13:57][2671][INFO][create_new_dg_connection] thread create: -1522166016 +[29 10:13:57][2671][INFO][add_thread_handle] idx[0],handle[0xa5459700] +[29 10:13:57][2671][INFO][add_thread_handle] idx[1],handle[0xa4a58700] +[29 10:13:57][2671][INFO][create_new_dg_connection] thread create: -1532655872 +[29 10:13:57][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:13:57][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:13:57][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:13:57][2671][INFO]thr_udp_wasconn pthread_create created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[2],handle[0x9fdec700] +[29 10:13:57][2671][INFO]thr_udp_wasconn pthread_create created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[3],handle[0x9f3eb700] +[29 10:13:57][2671][INFO][CollectStart] log thread id (start_collect2_thread) : -1633769728 created +[29 10:13:57][2671][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[4],handle[0x9dfe9700] +[29 10:13:57][2671][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 10:13:57][2671][INFO][add_thread_handle] idx[5],handle[0x9d30c700] +[29 10:13:57][2671][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 10:13:57][2671][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 10:13:57][2671][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 10:14:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:14:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:14:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:14:58][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:14:58][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:15:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:15:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:15:00][2671][INFO][info_log] [0] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 10:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:15:00][2671][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 10:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:15:03][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:15:03][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:15:03][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:16:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:16:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:16:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:16:04][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:16:04][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:16:09][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:16:09][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:16:09][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:17:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:17:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:17:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:17:10][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:17:10][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:17:15][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:17:15][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:17:15][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:18:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:18:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:18:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:18:16][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:18:16][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:18:21][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:18:21][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:18:21][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:19:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:19:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:19:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:19:22][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:19:22][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:19:27][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:19:27][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:19:27][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:20:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:20:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:20:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:20:28][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:20:28][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:20:33][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:20:33][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:20:33][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:21:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:21:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:21:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:21:35][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:21:35][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:21:40][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:21:40][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:21:40][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:22:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:22:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:22:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:22:41][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:22:41][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:22:46][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:22:46][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:22:46][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:23:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:23:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:23:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:23:47][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:23:47][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:23:52][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:23:52][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:23:52][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:24:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:24:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:24:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:24:53][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:24:53][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:24:58][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:24:58][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:24:58][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:25:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:25:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:25:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:25:59][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:25:59][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:26:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:26:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:26:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:26:04][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:26:04][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:26:04][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:27:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:27:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:27:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:27:05][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:27:05][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:27:10][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:27:10][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:27:10][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:28:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:28:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:28:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:28:11][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:28:11][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:28:16][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:28:16][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:28:16][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:29:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:29:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:29:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:29:17][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:29:17][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:29:22][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:29:22][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:29:22][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:30:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:30:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:30:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:30:23][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:30:23][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:30:28][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:30:28][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:30:28][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:31:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:31:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:31:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:31:29][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:31:29][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:31:34][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:31:34][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:31:34][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:32:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:32:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:32:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:32:35][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:32:35][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:32:40][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:32:40][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:32:41][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:33:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:33:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:33:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:33:42][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:33:42][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:33:47][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:33:47][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:33:47][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:34:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:34:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:34:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:34:48][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:34:48][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:34:53][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:34:53][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:34:53][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:35:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:35:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:35:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:35:54][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:35:54][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:35:59][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:35:59][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:35:59][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:36:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:36:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:36:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:37:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:37:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:37:00][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:37:00][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:37:05][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:37:05][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:37:05][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:38:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:38:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:38:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:38:06][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:38:06][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:38:11][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:38:11][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:38:11][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:39:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:39:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:39:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:39:12][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:39:12][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:39:17][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:39:17][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:39:17][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:40:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:40:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:40:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:40:18][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:40:18][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:40:23][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:40:23][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:40:23][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:41:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:41:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:41:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:41:24][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:41:24][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:41:29][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:41:29][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:41:29][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:42:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:42:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:42:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:42:30][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:42:30][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:42:35][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:42:35][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:42:35][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:43:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:43:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:43:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:43:37][2671][ERRO][processing_socket] get packet data failed(-1) +[29 10:43:37][2671][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 10:43:42][2671][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1522166016] +[29 10:43:42][2671][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 10:43:42][2671][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 10:44:00][2671][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 10:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[29 10:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:44:00][2671][INFO][info_log] udp recv list by wasid [] +[29 10:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:44:00][2671][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1647, skip_count: 0 bind_count:0 +[29 10:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:45:00][2671][INFO][info_log] [0] udp recv(572.00b) 22 0 | 22 0 | 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 10:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:48:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 10:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:50:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:51:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:52:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:54:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:55:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:56:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:57:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:58:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 10:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 10:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 10:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 10:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 10:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 10:59:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 10:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 10:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 10:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 10:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:00:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:01:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:02:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:03:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:05:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:06:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:09:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:10:00][2671][INFO][info_log] [0] udp recv(1.01k) 39 0 | 40 0 | 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:10:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:10:00][2671][INFO][info_log] wasid:4, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:10:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[0/0] +[29 11:10:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(0), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3396, skip_count: 0 bind_count:0 +[29 11:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:11:00][2671][INFO][info_log] [0] udp recv(1.65k) 51 0 | 51 0 | 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:11:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:11:00][2671][INFO][info_log] wasid:4, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:11:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[6/6] +[29 11:11:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(6), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:11:00][2671][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 11:11:00][2671][INFO][info_log] wasid:5, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 11:11:00][2671][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[5/5] +[29 11:11:00][2671][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(5), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 11:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:12:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:13:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:14:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:15:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:16:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:17:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:18:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:19:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:20:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:21:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:22:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:23:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:24:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:26:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:27:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:28:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:29:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:30:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:32:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:33:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:34:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:35:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:36:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:37:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:38:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:39:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:40:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:41:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:42:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:43:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 11:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:44:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:45:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:49:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:50:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:51:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:52:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:54:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 11:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:55:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:56:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:57:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 11:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:58:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 11:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 11:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 11:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 11:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 11:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 11:59:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 11:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 11:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 11:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 11:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:00:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:01:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:02:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:03:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:05:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:06:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:09:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:10:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:11:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:12:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:13:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:14:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:15:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:16:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:17:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:18:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:19:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:20:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:21:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:22:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:23:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:24:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:26:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:27:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:28:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:29:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:30:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:32:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:33:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:34:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:35:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:36:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:37:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:38:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:39:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:40:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:41:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:42:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:43:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:44:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:45:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:47:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:50:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:51:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:52:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:52:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:52:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:52:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:52:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:52:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:52:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:52:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:52:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:52:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:52:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:53:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:53:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:53:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:53:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:53:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:53:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:53:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:53:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:53:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:53:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:53:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:54:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:54:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:54:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:54:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:54:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:54:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:54:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:54:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:54:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:54:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:54:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:55:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:55:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:55:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:55:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:55:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:55:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:55:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:55:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:55:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:55:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:55:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:56:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:56:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:56:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:56:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:56:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 12:56:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:56:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:56:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:56:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:56:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:56:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:57:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:57:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:57:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:57:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:57:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:57:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:57:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:57:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:57:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:57:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:57:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:58:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:58:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:58:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:58:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:58:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:58:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:58:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:58:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:58:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:58:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:58:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 12:59:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 12:59:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 12:59:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 12:59:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 12:59:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:59:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 12:59:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 12:59:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 12:59:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 12:59:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 12:59:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:00:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:00:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:00:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:00:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:00:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:00:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:00:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:00:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:00:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:00:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:00:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:01:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:01:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:01:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:01:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:01:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:01:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:01:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:01:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:01:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:01:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:01:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:02:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:02:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:02:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:02:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:02:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:02:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:02:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:02:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:02:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:02:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:02:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:03:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:03:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:03:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:03:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:03:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:03:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:03:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:03:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:03:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:03:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:03:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:04:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:04:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:04:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:04:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:04:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:04:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:04:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:04:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:04:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:04:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:04:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:05:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:05:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(2)(1) +[29 13:05:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:05:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:05:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:05:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:05:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:05:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:05:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:05:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:05:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:06:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:06:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:06:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:06:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:06:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:06:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:06:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:06:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:06:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:06:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:06:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:07:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:07:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:07:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:07:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:07:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:07:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:07:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:07:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:07:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:07:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:07:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:08:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:08:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:08:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:08:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:08:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:08:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:08:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:08:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:08:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:08:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:08:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:09:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:09:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:09:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:09:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:09:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:09:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:09:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:09:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:09:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:09:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:09:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:10:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:10:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:10:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:10:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:10:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:10:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:10:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:10:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:10:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:10:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:10:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:11:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:11:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:11:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:11:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:11:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:11:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:11:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:11:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:11:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:11:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:11:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:12:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:12:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:12:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:12:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:12:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:12:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:12:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:12:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:12:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:12:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:12:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:13:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:13:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:13:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:13:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:13:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:13:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:13:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:13:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:13:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:13:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:13:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:14:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:14:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:14:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:14:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:14:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:14:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:14:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:14:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:14:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:14:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:14:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:15:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:15:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:15:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:15:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:15:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:15:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:15:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:15:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:15:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:15:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:15:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:16:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:16:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:16:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:16:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:16:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:16:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:16:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:16:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:16:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:16:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:16:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:17:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:17:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:17:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:17:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:17:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:17:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:17:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:17:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:17:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:17:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:17:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:18:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:18:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:18:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:18:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:18:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:18:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:18:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:18:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:18:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:18:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:18:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:19:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:19:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:19:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:19:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:19:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:19:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:19:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:19:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:19:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:19:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:19:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:20:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:20:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:20:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:20:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:20:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:20:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:20:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:20:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:20:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:20:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:20:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:21:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:21:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:21:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:21:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:21:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:21:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:21:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:21:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:21:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:21:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:21:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:22:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:22:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:22:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:22:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:22:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:22:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:22:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:22:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:22:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:22:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:22:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:23:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:23:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:23:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:23:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:23:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:23:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:23:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:23:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:23:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:23:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:23:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:24:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:24:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:24:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:24:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:24:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:24:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:24:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:24:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:24:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:24:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:24:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:25:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:25:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:25:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:25:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:25:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:25:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:25:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:25:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:25:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:25:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:25:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:26:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:26:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:26:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:26:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:26:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:26:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:26:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:26:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:26:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:26:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:26:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:27:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:27:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:27:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:27:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:27:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:27:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:27:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:27:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:27:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:27:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:27:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:28:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:28:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:28:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:28:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:28:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:28:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:28:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:28:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:28:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:28:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:28:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:29:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:29:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:29:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:29:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:29:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:29:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:29:00][2671][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:29:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:29:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:29:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:29:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:30:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:30:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:30:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:30:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:30:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:30:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:30:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:30:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:30:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:30:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:30:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:31:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:31:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:31:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:31:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:31:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:31:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:31:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:31:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:31:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:31:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:31:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:32:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:32:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:32:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:32:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:32:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:32:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:32:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:32:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:32:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:32:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:32:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:33:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:33:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:33:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:33:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:33:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:33:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:33:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:33:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:33:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:33:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:33:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:34:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:34:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:34:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:34:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:34:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:34:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:34:00][2671][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:34:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:34:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:34:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:34:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:35:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:35:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:35:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:35:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:35:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:35:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:35:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:35:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:35:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:35:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:35:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:36:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:36:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:36:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:36:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:36:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:36:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:36:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:36:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:36:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:36:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:36:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:37:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:37:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:37:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:37:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:37:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:37:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:37:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:37:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:37:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:37:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:37:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:38:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:38:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:38:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:38:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:38:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:38:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:38:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:38:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:38:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:38:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:38:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:39:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:39:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:39:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:39:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:39:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:39:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:39:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:39:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:39:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:39:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:39:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:40:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:40:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:40:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:40:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:40:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:40:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:40:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:40:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:40:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:40:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:40:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:41:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:41:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:41:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:41:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:41:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:41:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:41:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:41:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:41:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:41:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:41:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:42:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:42:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:42:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:42:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:42:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:42:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:42:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:42:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:42:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:42:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:42:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:43:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:43:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:43:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:43:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:43:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:43:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:43:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:43:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:43:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:43:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:43:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:44:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:44:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:44:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:44:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:44:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:44:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:44:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:44:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:44:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:44:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:44:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:45:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:45:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:45:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:45:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:45:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:45:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:45:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:45:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:45:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:45:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:45:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:46:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:46:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:46:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:46:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:46:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:46:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:46:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:46:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:46:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:46:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:46:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:47:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:47:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:47:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:47:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:47:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:47:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:47:00][2671][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:47:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:47:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:47:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:47:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:48:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:48:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:48:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:48:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:48:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:48:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:48:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:48:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:48:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:48:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:48:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:49:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:49:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:49:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:49:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:49:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:49:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:49:00][2671][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:49:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:49:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:49:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:49:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:50:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:50:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:50:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:50:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:50:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:50:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:50:00][2671][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:50:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:50:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:50:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:50:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:51:00][2671][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:51:00][2671][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:51:00][2671][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:51:00][2671][INFO][info_log] udp recv list by wasid [4/5/] +[29 13:51:00][2671][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:51:00][2671][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:51:00][2671][INFO][info_log] [0] udp recv(884.00b) 34 0 | 34 0 | 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:51:00][2671][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:51:00][2671][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:51:00][2671][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:51:00][2671][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:51:01][2671][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[29 13:51:01][2671][INFO][MAIN] imxosm is wrong. +[29 13:51:01][2671][INFO][thread_tcpconn] end +[29 13:51:04][2671][INFO][wait_all_thread_stop] all thread terminated. +[29 13:55:12][30036][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[29 13:55:12][30036][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[29 13:55:12][30036][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[29 13:55:12][30036][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 13:55:12][30036][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[29 13:55:12][30036][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 13:55:12][30036][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[29 13:55:12][30036][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 13:55:12][30036][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 13:55:12][30036][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 13:55:12][30036][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 13:55:12][30036][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 13:55:12][30036][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 13:55:12][30036][INFO][MAIN] hostname[kkam] +[29 13:55:12][30036][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[29 13:55:12][30036][INFO][check_double_execution] write pid. 30036 +[29 13:55:12][30036][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[29 13:55:12][30036][INFO][create_new_dg_connection] thread create: -457029888 +[29 13:55:12][30036][INFO][add_thread_handle] idx[0],handle[0xe4c24700] +[29 13:55:12][30036][INFO][add_thread_handle] idx[1],handle[0xe4223700] +[29 13:55:12][30036][INFO][create_new_dg_connection] thread create: -467519744 +[29 13:55:12][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 13:55:12][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 13:55:12][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 13:55:12][30036][INFO]thr_udp_wasconn pthread_create created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[2],handle[0xe360f700] +[29 13:55:12][30036][INFO]thr_udp_wasconn pthread_create created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[3],handle[0xe2c0e700] +[29 13:55:12][30036][INFO][CollectStart] log thread id (start_collect2_thread) : -501164288 created +[29 13:55:12][30036][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 13:55:12][30036][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 13:55:12][30036][INFO][add_thread_handle] idx[4],handle[0xe0ff2700] +[29 13:55:12][30036][INFO][add_thread_handle] idx[4],handle[0xcffff700] +[29 13:55:12][30036][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 13:55:12][30036][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 13:55:12][30036][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 13:56:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2025, skip_count: 0 bind_count:0 +[29 13:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:56:00][30036][INFO][info_log] [0] udp recv(718.00b) 28 0 | 28 0 | 0 0 | 0 +[29 13:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:56:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 13:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 13:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:58:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 13:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 13:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 13:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 13:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 13:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 13:59:00][30036][INFO][info_log] [0] udp recv(832.00b) 32 0 | 32 0 | 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 13:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 13:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 13:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 13:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:00:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:01:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:02:00][30036][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:03:00][30036][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:04:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[29 14:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:05:00][30036][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:05:35][30036][ERRO][processing_socket] get packet data failed(-1) +[29 14:05:35][30036][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 14:05:50][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 14:05:50][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 14:05:50][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 14:06:00][30036][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2430, skip_count: 0 bind_count:0 +[29 14:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/] +[29 14:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:06:00][30036][INFO][info_log] [0] udp recv(390.00b) 15 0 | 15 0 | 0 0 | 0 +[29 14:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:3780, skip_count: 0 bind_count:0 +[29 14:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:07:00][30036][INFO][info_log] [0] udp recv(718.00b) 28 0 | 28 0 | 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:07:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:08:00][30036][INFO][info_log] [0] udp recv(702.00b) 27 0 | 27 0 | 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:09:00][30036][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:10:00][30036][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] tcp send queue count: 3 (127.0.0.1:1314), send size:4860, skip_count: 0 bind_count:0 +[29 14:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/] +[29 14:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:11:00][30036][INFO][info_log] [0] udp recv(536.00b) 21 0 | 21 0 | 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:11:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6345, skip_count: 0 bind_count:0 +[29 14:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:12:00][30036][INFO][info_log] [0] udp recv(848.00b) 33 0 | 33 0 | 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:12:00][30036][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[29 14:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:13:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:14:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6636, skip_count: 0 bind_count:0 +[29 14:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:15:00][30036][INFO][info_log] [0] udp recv(1.68k) 50 0 | 51 0 | 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:15:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:15:00][30036][INFO][info_log] wasid:6, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:15:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[7/6] +[29 14:15:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(7), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:15:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:15:00][30036][INFO][info_log] wasid:9, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:15:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(3), lazy[4/3] +[29 14:15:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:16:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:16:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:17:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:20:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 14:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:22:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 39 0 | 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:23:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:24:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:25:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:26:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:27:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:28:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:29:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:31:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:32:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:33:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:34:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:36:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:37:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:38:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:39:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:40:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:41:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:42:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] tcp send queue count: 5 (127.0.0.1:1314), send size:6714, skip_count: 0 bind_count:0 +[29 14:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:44:00][30036][INFO][info_log] [0] udp recv(1.96k) 57 0 | 57 0 | 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:44:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:44:00][30036][INFO][info_log] wasid:6, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:44:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[9/9] +[29 14:44:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(9), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:44:00][30036][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[29 14:44:00][30036][INFO][info_log] wasid:9, jsp:0, jsp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:0 +[29 14:44:00][30036][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(2), lazy[8/8] +[29 14:44:00][30036][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(8), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[29 14:45:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6519, skip_count: 0 bind_count:0 +[29 14:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:45:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:46:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:49:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:51:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 14:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:52:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:54:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:55:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:56:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 14:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 14:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 14:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 14:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 14:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 14:59:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 14:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 14:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 14:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 14:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:00:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:02:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:03:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:04:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:05:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:06:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:07:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:08:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:09:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:10:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:11:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:12:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:13:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:14:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:15:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:16:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:17:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:20:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:21:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:22:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:23:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:24:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:25:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:26:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:27:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:28:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:29:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:30:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:31:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:32:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:33:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:34:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:35:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:36:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:37:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:38:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:40:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:41:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:44:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:45:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:46:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:48:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:49:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:50:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:51:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:52:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 15:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:54:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:55:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:56:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:57:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:58:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 15:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 15:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 15:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 15:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 15:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 15:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 15:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 15:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 15:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 15:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:00:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:01:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[29 16:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:02:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:02:25][30036][ERRO][processing_socket] get packet data failed(-1) +[29 16:02:25][30036][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[29 16:03:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:2808, skip_count: 0 bind_count:0 +[29 16:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:03:00][30036][INFO][info_log] [0] udp recv(468.00b) 18 0 | 18 0 | 0 0 | 0 +[29 16:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:04:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:05:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[29 16:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[29 16:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:06:00][30036][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:06:40][30036][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-457029888] +[29 16:06:40][30036][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[29 16:06:41][30036][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[29 16:07:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:2592, skip_count: 0 bind_count:0 +[29 16:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:07:00][30036][INFO][info_log] [0] udp recv(260.00b) 10 0 | 10 0 | 0 0 | 0 +[29 16:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:08:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:09:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:10:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:11:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:12:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:13:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:14:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:15:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:16:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:17:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:18:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:19:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:20:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:22:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:23:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:24:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:25:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:26:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:27:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:28:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:29:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:31:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:32:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:33:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:34:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:36:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:37:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:38:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:40:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:41:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:44:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:45:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:46:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:47:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:49:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:51:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:52:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:53:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:54:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:55:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:56:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:57:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 16:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 16:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 16:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 16:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 16:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 16:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 16:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 16:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 16:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 16:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 16:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:00:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:02:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:02:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:02:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:02:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:02:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:02:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:02:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:02:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:02:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:02:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:02:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:03:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:03:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:03:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:03:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:03:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:03:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:03:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:03:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:03:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:03:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:03:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:04:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:04:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:04:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:04:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:04:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:04:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:04:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:04:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:04:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:04:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:04:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:05:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:05:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:05:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:05:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:05:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:05:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:05:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:05:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:05:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:05:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:05:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:06:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:06:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:06:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:06:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:06:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:06:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:06:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:06:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:06:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:06:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:06:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:07:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:07:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:07:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:07:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:07:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:07:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:07:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:07:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:07:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:07:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:07:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:08:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:08:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:08:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:08:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:08:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:08:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:08:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:08:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:08:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:08:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:08:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:09:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:09:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:09:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:09:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:09:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:09:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:09:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:09:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:09:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:09:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:09:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:10:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:10:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:10:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:10:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:10:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:10:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:10:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:10:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:10:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:10:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:10:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:11:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:11:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:11:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:11:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:11:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:11:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:11:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:11:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:11:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:11:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:11:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:12:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:12:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:12:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:12:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:12:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:12:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:12:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:12:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:12:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:12:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:12:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:13:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:13:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:13:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:13:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:13:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:13:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:13:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:13:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:13:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:13:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:13:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:14:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:14:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:14:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:14:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:14:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:14:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:14:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:14:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:14:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:14:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:14:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:15:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:15:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:15:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:15:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:15:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:15:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:15:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:15:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:15:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:15:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:15:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:16:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:16:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:16:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:16:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:16:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:16:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:16:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:16:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:16:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:16:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:16:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:17:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:17:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:17:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:17:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:17:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:17:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:17:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:17:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:17:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:17:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:17:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:18:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:18:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:18:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:18:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:18:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:18:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:18:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:18:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:18:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:18:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:18:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:19:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:19:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:19:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:19:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:19:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:19:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:19:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:19:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:19:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:19:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:19:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:20:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:20:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:20:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:20:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:20:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:20:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:20:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:20:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:20:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:20:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:20:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:21:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:21:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:21:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:21:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:21:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:21:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:21:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:21:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:21:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:21:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:21:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:22:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:22:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:22:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:22:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:22:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:22:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:22:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:22:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:22:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:23:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:23:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:23:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:23:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:23:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:23:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:23:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:23:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:23:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:24:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:24:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:24:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:24:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:24:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:24:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:24:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:24:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:24:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:25:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:25:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:25:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:25:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:25:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:25:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:25:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:25:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:25:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:26:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:26:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:26:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:26:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:26:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:26:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:26:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:26:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:26:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:27:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:27:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:27:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:27:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:27:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:27:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:27:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:27:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:27:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:28:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:28:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:28:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:28:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:28:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:28:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:28:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:28:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:28:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:29:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:29:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:29:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:29:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:29:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:29:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:29:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:29:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:29:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:30:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:30:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:30:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:30:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:30:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:30:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:30:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:30:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:30:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:31:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:31:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:31:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:31:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:31:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:31:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:31:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:31:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:31:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:32:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:32:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:32:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:32:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:32:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:32:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:32:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:32:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:32:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:33:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:33:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:33:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:33:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:33:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:33:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:33:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:33:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:33:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:34:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:34:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:34:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:34:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:34:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:34:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:34:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:34:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:34:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:35:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:35:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:35:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:35:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:35:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:35:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:35:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:35:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:35:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:36:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:36:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:36:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:36:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:36:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:36:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:36:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:36:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:36:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:37:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:37:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:37:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:37:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:37:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:37:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:37:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:37:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:37:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:38:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:38:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:38:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:38:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:38:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:38:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:38:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:38:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:38:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:39:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:39:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:39:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:39:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:39:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:39:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:39:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:39:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:39:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:40:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:40:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:40:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:40:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:40:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:40:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:40:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:40:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:40:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:41:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:41:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:41:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:41:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:41:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:41:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:41:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:41:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:41:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:42:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:42:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:42:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:42:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:42:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:42:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:42:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:42:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:42:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:43:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:43:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:43:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:43:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:43:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:43:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:43:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:43:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:43:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:44:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:44:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:44:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:44:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:44:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:44:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:44:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:44:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:44:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:45:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:45:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:45:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:45:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:45:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:45:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:45:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:45:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:45:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:46:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:46:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:46:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:46:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:46:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:46:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:46:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:46:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:46:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:47:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:47:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:47:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:47:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:47:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:47:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:47:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:47:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:47:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:47:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:47:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:48:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:48:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:48:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:48:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:48:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:48:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:48:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:48:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:48:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:48:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:48:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:49:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:49:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:49:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:49:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:49:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:49:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:49:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:49:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:49:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:49:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:49:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:50:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:50:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:50:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:50:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:50:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:50:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:50:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:50:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:50:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:50:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:50:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:51:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:51:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:51:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:51:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:51:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:51:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:51:00][30036][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:51:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:51:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:51:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:51:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:52:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:52:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:52:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:52:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:52:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:52:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:52:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:52:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:52:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:52:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:52:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:53:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:53:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:53:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:53:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:53:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[29 17:53:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:53:00][30036][INFO][info_log] [0] udp recv(1.04k) 41 0 | 39 0 | 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:53:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:53:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:53:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:53:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:54:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:54:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:54:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:54:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:54:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:54:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:54:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:54:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:54:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:54:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:54:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:55:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:55:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:55:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:55:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:55:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:55:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:55:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:55:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:55:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:55:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:55:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:56:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:56:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:56:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:56:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:56:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:56:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:56:00][30036][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:56:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:56:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:56:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:56:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:57:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:57:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:57:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:57:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:57:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:57:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:57:00][30036][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:57:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:57:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:57:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:57:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:58:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:58:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:58:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:58:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:58:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:58:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:58:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:58:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:58:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:58:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:58:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:59:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:59:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:59:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:59:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 17:59:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:59:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:59:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:59:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:59:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:59:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:59:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 18:00:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:00:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:00:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:00:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 18:00:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:00:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:00:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:00:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:00:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:00:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:00:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] tcp send queue count: 6 (127.0.0.1:1314), send size:9720, skip_count: 0 bind_count:0 +[29 18:01:00][30036][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:01:00][30036][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:01:00][30036][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:01:00][30036][INFO][info_log] udp recv list by wasid [6/7/8/9/4/5/] +[29 18:01:00][30036][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:01:00][30036][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:01:00][30036][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:01:00][30036][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:01:00][30036][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:01:00][30036][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:01:00][30036][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:01:50][30036][INFO][exit_handler] SIGTERM sig caught +[29 18:01:50][30036][INFO][SIGNAL_HANDLER] SIGHUP sig caught +[29 18:01:50][30036][ERRO][xm_debug_logging] main_thr [source/main.c][916] +[29 18:01:50][30036][ERRO][xm_debug_logging] tcpconn_thr [source/thrcomm.c][912] +[29 18:01:50][30036][ERRO][xm_debug_logging] tcpsender_thr [source/thrcomm.c][412] +[29 18:01:50][30036][ERRO][xm_debug_logging] udp_recv_thr[0] [source/thr_udp.c][732] +[29 18:01:50][30036][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[0][0] [source/thr_udp.c][678] +[29 18:01:50][30036][ERRO][xm_debug_logging] udp_recv_thr[1] [source/thr_udp.c][732] +[29 18:01:50][30036][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[1][0] [source/thr_udp.c][678] +[29 18:01:50][30036][ERRO][xm_debug_logging] collect2_thr [source/collect.c][1161] +[29 18:01:50][30036][ERRO][xm_debug_logging] lazy_txn_delete_thr [source/collect.c][607] +[29 18:01:50][30036][ERRO][xm_debug_logging] lazy_txn_sql_delete_thr [source/collect.c][706] +[29 18:01:50][30036][ERRO][xm_debug_logging] udpsender_thr [source/collect.c][2437] +[06 17:05:18][9336][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[06 17:05:18][9336][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[06 17:05:18][9336][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[06 17:05:18][9336][INFO]XM_LOG_OPT: 0 [opt_num:0] +[06 17:05:18][9336][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[06 17:05:18][9336][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[06 17:05:18][9336][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[06 17:05:18][9336][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[06 17:05:18][9336][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[06 17:05:18][9336][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[06 17:05:18][9336][INFO][read_properties] imx.prop AGENT_MODE:2 +[06 17:05:18][9336][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[06 17:05:18][9336][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[06 17:05:18][9336][INFO][MAIN] hostname[kkam] +[06 17:05:18][9336][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[06 17:05:18][9336][INFO][check_double_execution] write pid. 9336 +[06 17:05:18][9336][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[06 17:05:18][9336][INFO][create_new_dg_connection] thread create: -1239005440 +[06 17:05:18][9336][INFO][add_thread_handle] idx[0],handle[0xb6264700] +[06 17:05:18][9336][INFO][add_thread_handle] idx[1],handle[0xb5863700] +[06 17:05:18][9336][INFO][create_new_dg_connection] thread create: -1249495296 +[06 17:05:18][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:05:18][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:05:18][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:05:18][9336][INFO]thr_udp_wasconn pthread_create created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[2],handle[0xb4c4f700] +[06 17:05:18][9336][INFO]thr_udp_wasconn pthread_create created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[3],handle[0xaffff700] +[06 17:05:18][9336][INFO][CollectStart] log thread id (start_collect2_thread) : -1352669440 created +[06 17:05:18][9336][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[4],handle[0xaebfd700] +[06 17:05:18][9336][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[06 17:05:18][9336][INFO][add_thread_handle] idx[5],handle[0xae1fc700] +[06 17:05:18][9336][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[06 17:05:18][9336][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[06 17:05:18][9336][INFO][collect_initialize] thread_udpsender pthread_create created. +[06 17:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:06:00][9336][INFO][info_log] [0] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[06 17:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:06:00][9336][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[06 17:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:06:19][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:06:19][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:06:24][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:06:24][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:06:24][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:07:25][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:07:25][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:07:30][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:07:30][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:07:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:08:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:08:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:08:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:08:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:08:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:09:38][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:09:38][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:09:43][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:09:43][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:09:43][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:10:44][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:10:44][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:10:49][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:10:49][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:10:49][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:11:50][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:11:50][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:11:55][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:11:55][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:11:55][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:12:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:12:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:13:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:13:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:13:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:14:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:14:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:14:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:14:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:14:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:15:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:15:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:15:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:15:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:15:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:15:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:15:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:15:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:15:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:16:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:16:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:16:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:16:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:16:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:16:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:16:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:16:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:17:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:17:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:17:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:17:20][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:17:20][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:17:25][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:17:25][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:17:25][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:18:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:18:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:18:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:18:26][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:18:26][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:18:31][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:18:31][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:18:31][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:19:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:19:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:19:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:19:32][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:19:32][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:19:37][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:19:37][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:19:37][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:20:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:20:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:20:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:20:39][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:20:39][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:20:44][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:20:44][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:20:44][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:21:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:21:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:21:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:21:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:21:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:21:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:21:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:21:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:22:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:22:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:22:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:22:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:22:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:22:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:22:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:22:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:23:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:23:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:23:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:23:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:23:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:24:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:24:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:24:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:24:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:24:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:24:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:25:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:25:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:25:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:25:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:25:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:25:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:25:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:25:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:26:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:26:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:26:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:26:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:26:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:26:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:26:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:26:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:27:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:27:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:27:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:27:15][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:27:15][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:27:20][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:27:20][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:27:20][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:28:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:28:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:28:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:28:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:28:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:28:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:28:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:28:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:28:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:28:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:28:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:28:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:28:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:28:21][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:28:21][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:28:26][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:28:26][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:28:26][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:29:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:29:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:29:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:29:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:29:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:29:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:29:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:29:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:29:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:29:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:29:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:29:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:29:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:29:27][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:29:27][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:29:32][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:29:32][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:29:32][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:30:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:30:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:30:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:30:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:30:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:30:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:30:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:30:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:30:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:30:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:30:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:30:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:30:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:30:33][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:30:33][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:30:38][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:30:38][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:30:38][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:31:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:31:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:31:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:31:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:31:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:31:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:31:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:31:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:31:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:31:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:31:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:31:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:31:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:31:40][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:31:40][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:31:45][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:31:45][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:31:45][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:32:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:32:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:32:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:32:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:32:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:32:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:32:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:32:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:32:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:32:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:32:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:32:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:32:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:32:46][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:32:46][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:32:51][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:32:51][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:32:51][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:33:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:33:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:33:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:33:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:33:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:33:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:33:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:33:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:33:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:33:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:33:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:33:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:33:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:33:52][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:33:52][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:33:57][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:33:57][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:33:57][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:34:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:34:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:34:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:34:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:34:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:34:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:34:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:34:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:34:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:34:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:34:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:34:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:34:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:34:58][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:34:58][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:35:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:35:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:35:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:35:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:35:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:35:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:35:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:35:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:35:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:35:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:35:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:35:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:35:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:35:03][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:35:03][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:35:03][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:36:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:36:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:36:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:36:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:36:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:36:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:36:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:36:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:36:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:36:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:36:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:36:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:36:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:36:04][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:36:04][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:36:09][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:36:09][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:36:09][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:37:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:37:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:37:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:37:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:37:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:37:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:37:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:37:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:37:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:37:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:37:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:37:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:37:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:37:10][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:37:10][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:37:15][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:37:15][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:37:15][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:38:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:38:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:38:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:38:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:38:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:38:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:38:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:38:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:38:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:38:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:38:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:38:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:38:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:38:16][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:38:16][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:38:21][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:38:21][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:38:21][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:39:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:39:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:39:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:39:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:39:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:39:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:39:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:39:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:39:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:39:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:39:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:39:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:39:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:39:22][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:39:22][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:39:27][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:39:27][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:39:27][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:40:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:40:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:40:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:40:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:40:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:40:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:40:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:40:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:40:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:40:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:40:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:40:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:40:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:40:29][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:40:29][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:40:34][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:40:34][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:40:34][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:41:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:41:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:41:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:41:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:41:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:41:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:41:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:41:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:41:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:41:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:41:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:41:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:41:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:41:35][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:41:35][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:41:40][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:41:40][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:41:40][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:42:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:42:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:42:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:42:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:42:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:42:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:42:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:42:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:42:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:42:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:42:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:42:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:42:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:42:41][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:42:41][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:42:46][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:42:46][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:42:46][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:43:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:43:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:43:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:43:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:43:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:43:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:43:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:43:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:43:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:43:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:43:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:43:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:43:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:43:47][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:43:47][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:43:52][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:43:52][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:43:52][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:44:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:44:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:44:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:44:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:44:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:44:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:44:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:44:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:44:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:44:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:44:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:44:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:44:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:44:53][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:44:53][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:44:58][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:44:58][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:44:58][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:45:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:45:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:45:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:45:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:45:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:45:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:45:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:45:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:45:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:45:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:45:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:45:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:45:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:45:59][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:45:59][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:46:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:46:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:46:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:46:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:46:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:46:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:46:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:46:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:46:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:46:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:46:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:46:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:46:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:46:04][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:46:04][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:46:04][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:47:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:47:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:47:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:47:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:47:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:47:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:47:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:47:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:47:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:47:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:47:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:47:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:47:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:47:05][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:47:05][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:47:10][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:47:10][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:47:10][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:48:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:48:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:48:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:48:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:48:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:48:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:48:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:48:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:48:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:48:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:48:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:48:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:48:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:48:11][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:48:11][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:48:16][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:48:16][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:48:16][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:49:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:49:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:49:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:49:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:49:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:49:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:49:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:49:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:49:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:49:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:49:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:49:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:49:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:49:17][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:49:17][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:49:22][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:49:22][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:49:22][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:50:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:50:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:50:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:50:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:50:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:50:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:50:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:50:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:50:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:50:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:50:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:50:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:50:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:50:23][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:50:23][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:50:28][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:50:28][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:50:28][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:51:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:51:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:51:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:51:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:51:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:51:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:51:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:51:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:51:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:51:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:51:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:51:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:51:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:51:30][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:51:30][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:51:35][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:51:35][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:51:35][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:52:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:52:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:52:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:52:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:52:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:52:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:52:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:52:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:52:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:52:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:52:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:52:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:52:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:52:36][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:52:36][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:52:41][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:52:41][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:52:41][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:53:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:53:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:53:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:53:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:53:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:53:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:53:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:53:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:53:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:53:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:53:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:53:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:53:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:53:42][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:53:42][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:53:47][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:53:47][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:53:47][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:54:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:54:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:54:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:54:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:54:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:54:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:54:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:54:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:54:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:54:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:54:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:54:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:54:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:54:48][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:54:48][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:54:53][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:54:53][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:54:53][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:55:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:55:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:55:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:55:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:55:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:55:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:55:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:55:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:55:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:55:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:55:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:55:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:55:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:55:54][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:55:54][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:55:59][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:55:59][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:55:59][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:56:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:56:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:56:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:56:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:56:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:56:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:56:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:56:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:56:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:56:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:56:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:56:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:56:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:57:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:57:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:57:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:57:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:57:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:57:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:57:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:57:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:57:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:57:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:57:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:57:00][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:57:00][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:57:05][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:57:05][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:57:05][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:58:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:58:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:58:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:58:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:58:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:58:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:58:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:58:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:58:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:58:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:58:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:58:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:58:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:58:06][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:58:06][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:58:11][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:58:11][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:58:11][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 17:59:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 17:59:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 17:59:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 17:59:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 17:59:00][9336][INFO][info_log] udp recv list by wasid [] +[06 17:59:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:59:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 17:59:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:59:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 17:59:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 17:59:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 17:59:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 17:59:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 17:59:12][9336][ERRO][processing_socket] get packet data failed(-1) +[06 17:59:12][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 17:59:17][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 17:59:17][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 17:59:17][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:00:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:00:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:00:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:00:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:00:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:00:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:00:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:00:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:00:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:00:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:00:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:00:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:00:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:00:18][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:00:18][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:00:23][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:00:23][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:00:23][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:01:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:01:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:01:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:01:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:01:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:01:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:01:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:01:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:01:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:01:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:01:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:01:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:01:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:01:24][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:01:24][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:01:29][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:01:29][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:01:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:02:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:02:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:02:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:02:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:02:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:02:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:02:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:02:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:02:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:02:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:02:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:02:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:02:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:02:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:02:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:02:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:02:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:02:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:03:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:03:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:03:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:03:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:03:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:03:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:03:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:03:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:03:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:03:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:03:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:03:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:03:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:03:37][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:03:37][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:03:42][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:03:42][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:03:42][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:04:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:04:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:04:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:04:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:04:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:04:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:04:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:04:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:04:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:04:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:04:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:04:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:04:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:04:43][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:04:43][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:04:48][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:04:48][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:04:48][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:05:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:05:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:05:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:05:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:05:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:05:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:05:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:05:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:05:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:05:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:05:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:05:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:05:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:05:49][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:05:49][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:05:54][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:05:54][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:05:54][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:06:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:06:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:06:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:06:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:07:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:07:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:07:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:08:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:08:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:08:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:08:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:08:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:09:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:09:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:09:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:09:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:09:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:10:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:10:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:10:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:10:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:10:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:11:21][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:11:21][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:11:26][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:11:26][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:11:26][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:12:27][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:12:27][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:12:32][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:12:32][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:12:32][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:13:33][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:13:33][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:13:38][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:13:38][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:13:38][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:14:39][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:14:39][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:14:44][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:14:44][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:14:44][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:15:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:15:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:15:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:15:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:15:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:15:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:15:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:15:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:15:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:16:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:16:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:16:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:16:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:16:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:16:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:16:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:16:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:17:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:17:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:17:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:17:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:17:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:18:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:18:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:18:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:18:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:18:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:18:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:19:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:19:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:19:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:19:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:19:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:19:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:19:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:19:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:20:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:20:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:20:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:20:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:20:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:20:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:20:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:20:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:21:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:21:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:21:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:21:16][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:21:16][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:21:21][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:21:21][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:21:21][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:22:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:22:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:22:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:22:22][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:22:22][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:22:27][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:22:27][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:22:27][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:23:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:23:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:23:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:23:28][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:23:28][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:23:33][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:23:33][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:23:33][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:24:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:24:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:24:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:24:34][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:24:34][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:24:39][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:24:39][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:24:39][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:25:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:25:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:25:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:25:40][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:25:40][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:25:45][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:25:45][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:25:45][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:26:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:26:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:26:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:26:46][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:26:46][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:26:51][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:26:51][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:26:51][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:27:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:27:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:27:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:27:52][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:27:52][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:27:57][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:27:57][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:27:57][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:28:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:28:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:28:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:28:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:28:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:28:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:28:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:28:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:28:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:28:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:28:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:28:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:28:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:28:59][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:28:59][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:29:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:29:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:29:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:29:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:29:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:29:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:29:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:29:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:29:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:29:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:29:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:29:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:29:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:29:04][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:29:04][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:29:04][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:30:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:30:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:30:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:30:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:30:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:30:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:30:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:30:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:30:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:30:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:30:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:30:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:30:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:30:05][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:30:05][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:30:10][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:30:10][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:30:10][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:31:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:31:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:31:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:31:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:31:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:31:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:31:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:31:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:31:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:31:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:31:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:31:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:31:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:31:11][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:31:11][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:31:16][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:31:16][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:31:16][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:32:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:32:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:32:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:32:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:32:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:32:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:32:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:32:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:32:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:32:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:32:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:32:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:32:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:32:17][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:32:17][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:32:22][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:32:22][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:32:22][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:33:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:33:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:33:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:33:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:33:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:33:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:33:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:33:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:33:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:33:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:33:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:33:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:33:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:33:23][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:33:23][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:33:28][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:33:28][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:33:28][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:34:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:34:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:34:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:34:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:34:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:34:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:34:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:34:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:34:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:34:29][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:34:29][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:34:34][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:34:34][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:34:34][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:34:59][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:34:59][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:34:59][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:34:59][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:34:59][9336][INFO][info_log] udp recv list by wasid [] +[06 18:34:59][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:59][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:34:59][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:59][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:34:59][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:34:59][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:34:59][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:34:59][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:35:35][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:35:35][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:35:40][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:35:40][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:35:40][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:36:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:36:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:36:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:36:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:36:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:36:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:36:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:36:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:36:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:36:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:36:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:36:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:36:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:36:41][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:36:41][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:36:46][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:36:46][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:36:46][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:37:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:37:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:37:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:37:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:37:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:37:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:37:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:37:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:37:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:37:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:37:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:37:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:37:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:37:48][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:37:48][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:37:53][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:37:53][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:37:53][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:38:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:38:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:38:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:38:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:38:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:38:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:38:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:38:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:38:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:38:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:38:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:38:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:38:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:38:54][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:38:54][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:38:59][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:38:59][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:38:59][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:39:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:39:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:39:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:39:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:39:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:39:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:39:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:39:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:39:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:39:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:39:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:39:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:39:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:40:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:40:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:40:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:40:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:40:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:40:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:40:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:40:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:40:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:40:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:40:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:40:00][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:40:00][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:40:05][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:40:05][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:40:05][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:41:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:41:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:41:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:41:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:41:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:41:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:41:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:41:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:41:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:41:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:41:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:41:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:41:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:41:06][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:41:06][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:41:11][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:41:11][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:41:11][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:42:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:42:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:42:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:42:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:42:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:42:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:42:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:42:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:42:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:42:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:42:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:42:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:42:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:42:12][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:42:12][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:42:17][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:42:17][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:42:17][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:43:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:43:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:43:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:43:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:43:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:43:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:43:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:43:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:43:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:43:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:43:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:43:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:43:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:43:18][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:43:18][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:43:23][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:43:23][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:43:23][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:44:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:44:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:44:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:44:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:44:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:44:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:44:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:44:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:44:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:44:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:44:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:44:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:44:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:44:24][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:44:24][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:44:29][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:44:29][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:44:29][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:45:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:45:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:45:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:45:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:45:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:45:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:45:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:45:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:45:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:45:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:45:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:45:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:45:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:45:30][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:45:30][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:45:35][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:45:35][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:45:35][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:46:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:46:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:46:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:46:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:46:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:46:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:46:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:46:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:46:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:46:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:46:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:46:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:46:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:46:36][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:46:36][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:46:41][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:46:41][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:46:41][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:47:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:47:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:47:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:47:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:47:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:47:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:47:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:47:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:47:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:47:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:47:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:47:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:47:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:47:42][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:47:42][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:47:47][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:47:47][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:47:47][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:48:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:48:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:48:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:48:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:48:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:48:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:48:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:48:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:48:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:48:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:48:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:48:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:48:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:48:49][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:48:49][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:48:54][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:48:54][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:48:54][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:49:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:49:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:49:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:49:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:49:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:49:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:49:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:49:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:49:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:49:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:49:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:49:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:49:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:49:55][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:49:55][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:50:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:50:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:50:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:50:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:50:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:50:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:50:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:50:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:50:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:50:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:50:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:50:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:50:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:50:00][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:50:00][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:50:00][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:51:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:51:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:51:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:51:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:51:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:51:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:51:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:51:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:51:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:51:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:51:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:51:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:51:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:51:01][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:51:01][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:51:06][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:51:06][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:51:06][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:52:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:52:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:52:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:52:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:52:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:52:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:52:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:52:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:52:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:52:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:52:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:52:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:52:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:52:07][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:52:07][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:52:12][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:52:12][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:52:12][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:53:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:53:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:53:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:53:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:53:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:53:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:53:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:53:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:53:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:53:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:53:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:53:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:53:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:53:13][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:53:13][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:53:18][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:53:18][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:53:18][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:54:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:54:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:54:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:54:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:54:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:54:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:54:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:54:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:54:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:54:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:54:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:54:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:54:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:54:19][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:54:19][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:54:24][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:54:24][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:54:24][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:55:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:55:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:55:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:55:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:55:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:55:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:55:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:55:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:55:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:55:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:55:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:55:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:55:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:55:25][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:55:25][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:55:30][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:55:30][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:55:30][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:56:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:56:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:56:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:56:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:56:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:56:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:56:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:56:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:56:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:56:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:56:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:56:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:56:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:56:31][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:56:31][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:56:36][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:56:36][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:56:36][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:57:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:57:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:57:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:57:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:57:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:57:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:57:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:57:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:57:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:57:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:57:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:57:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:57:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:57:37][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:57:37][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:57:42][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:57:42][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:57:42][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:58:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:58:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:58:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:58:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:58:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:58:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:58:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:58:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:58:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:58:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:58:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:58:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:58:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:58:43][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:58:43][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:58:48][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:58:48][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:58:48][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 18:59:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 18:59:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 18:59:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 18:59:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 18:59:00][9336][INFO][info_log] udp recv list by wasid [] +[06 18:59:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:59:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 18:59:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:59:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 18:59:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 18:59:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 18:59:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 18:59:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 18:59:50][9336][ERRO][processing_socket] get packet data failed(-1) +[06 18:59:50][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 18:59:55][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 18:59:55][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 18:59:55][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:00:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:00:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:00:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:00:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:00:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:00:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:00:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:00:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:00:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:00:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:00:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:00:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:00:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:00:56][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:00:56][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:01:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:01:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:01:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:01:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:01:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:01:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:01:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:01:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:01:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:01:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:01:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:01:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:01:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:01:01][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:01:01][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:01:01][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:02:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:02:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:02:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:02:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:02:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:02:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:02:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:02:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:02:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:02:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:02:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:02:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:02:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:02:02][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:02:02][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:02:07][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:02:07][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:02:07][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:03:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:03:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:03:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:03:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:03:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:03:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:03:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:03:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:03:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:03:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:03:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:03:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:03:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:03:08][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:03:08][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:03:13][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:03:13][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:03:13][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:04:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:04:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:04:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:04:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:04:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:04:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:04:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:04:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:04:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:04:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:04:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:04:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:04:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:04:14][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:04:14][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:04:19][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:04:19][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:04:19][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:05:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:05:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:05:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:05:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:05:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:05:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:05:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:05:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:05:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:05:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:05:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:05:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:05:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:05:20][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:05:20][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:05:25][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:05:25][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:05:25][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:06:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:06:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:06:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:06:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:06:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:06:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:06:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:06:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:06:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:06:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:06:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:06:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:06:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:06:26][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:06:26][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:06:31][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:06:31][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:06:31][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:07:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:07:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:07:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:07:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:07:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:07:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:07:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:07:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:07:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:07:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:07:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:07:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:07:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:07:32][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:07:32][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:07:37][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:07:37][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:07:37][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:08:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:08:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:08:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:08:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:08:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:08:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:08:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:08:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:08:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:08:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:08:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:08:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:08:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:08:38][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:08:38][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:08:43][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:08:43][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:08:43][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:09:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:09:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:09:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:09:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:09:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:09:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:09:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:09:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:09:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:09:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:09:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:09:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:09:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:09:45][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:09:45][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:09:50][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:09:50][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:09:50][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:10:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:10:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:10:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:10:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:10:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:10:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:10:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:10:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:10:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:10:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:10:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:10:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:10:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:10:51][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:10:51][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:10:56][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:10:56][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:10:56][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:11:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:11:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:11:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:11:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:11:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:11:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:11:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:11:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:11:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:11:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:11:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:11:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:11:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:11:57][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:11:57][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:12:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:12:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:12:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:12:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:12:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:12:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:12:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:12:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:12:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:12:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:12:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:12:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:12:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:12:02][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:12:02][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:12:02][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:13:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:13:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:13:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:13:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:13:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:13:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:13:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:13:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:13:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:13:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:13:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:13:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:13:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:13:03][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:13:03][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:13:08][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:13:08][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:13:08][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:14:00][9336][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:0, skip_count: 0 bind_count:0 +[06 19:14:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:14:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(0)(1)(1) +[06 19:14:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:14:00][9336][INFO][info_log] udp recv list by wasid [] +[06 19:14:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:14:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:14:00][9336][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:14:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:14:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:14:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:14:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:14:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:14:09][9336][ERRO][processing_socket] get packet data failed(-1) +[06 19:14:09][9336][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[06 19:14:14][9336][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1239005440] +[06 19:14:14][9336][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[06 19:14:14][9336][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[06 19:15:00][9336][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:594, skip_count: 0 bind_count:0 +[06 19:15:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:15:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:15:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:15:00][9336][INFO][info_log] udp recv list by wasid [5/] +[06 19:15:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:15:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:15:00][9336][INFO][info_log] [0] udp recv(240.00b) 10 0 | 10 0 | 0 0 | 0 +[06 19:15:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:15:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:15:00][9336][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[06 19:15:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:15:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3159, skip_count: 0 bind_count:0 +[06 19:16:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:16:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:16:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:16:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:16:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:16:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:16:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:16:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:16:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:16:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:16:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:17:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:17:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:17:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:17:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:17:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:17:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:17:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:17:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:17:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:17:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:17:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:18:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:18:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:18:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:18:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:18:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:18:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:18:00][9336][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:18:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:18:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:18:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:18:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:19:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:19:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:19:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:19:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:19:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:19:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:19:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:19:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:19:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:19:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:19:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:20:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:20:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:20:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:20:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:20:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:20:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:20:00][9336][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:20:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:20:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:20:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:20:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:21:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:21:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:21:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:21:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:21:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:21:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:21:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:21:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:21:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:21:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:21:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:22:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:22:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:22:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:22:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:22:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:22:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:22:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:22:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:22:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:22:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:22:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:23:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:23:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:23:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:23:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:23:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:23:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:23:00][9336][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:23:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:23:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:23:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:23:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:24:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:24:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:24:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:24:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:24:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[06 19:24:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:24:00][9336][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:24:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:24:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:24:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:24:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:25:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:25:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:25:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:25:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:25:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:25:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:25:00][9336][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:25:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:25:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:25:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:25:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:26:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:26:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:26:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:26:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:26:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[06 19:26:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:26:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:26:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:26:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:26:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:26:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[06 19:27:00][9336][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[06 19:27:00][9336][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[06 19:27:00][9336][INFO][info_log] udp recv count by ports 0:0 1:0 +[06 19:27:00][9336][INFO][info_log] udp recv list by wasid [5/4/] +[06 19:27:00][9336][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:27:00][9336][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[06 19:27:00][9336][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[06 19:27:00][9336][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[06 19:27:00][9336][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[06 19:27:00][9336][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[06 19:27:00][9336][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[06 19:27:07][9336][INFO][exit_handler] SIGTERM sig caught +[06 19:27:07][9336][INFO][SIGNAL_HANDLER] SIGHUP sig caught +[06 19:27:07][9336][ERRO][xm_debug_logging] main_thr [source/main.c][916] +[06 19:27:07][9336][ERRO][xm_debug_logging] tcpconn_thr [source/thrcomm.c][912] +[06 19:27:07][9336][ERRO][xm_debug_logging] tcpsender_thr [source/thrcomm.c][416] +[06 19:27:07][9336][ERRO][xm_debug_logging] udp_recv_thr[0] [source/thr_udp.c][732] +[06 19:27:07][9336][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[0][0] [source/thr_udp.c][678] +[06 19:27:07][9336][ERRO][xm_debug_logging] udp_recv_thr[1] [source/thr_udp.c][732] +[06 19:27:07][9336][ERRO][xm_debug_logging] proc_udp_msg_queue_thr[1][0] [source/thr_udp.c][678] +[06 19:27:07][9336][ERRO][xm_debug_logging] collect2_thr [source/collect.c][1275] +[06 19:27:07][9336][ERRO][xm_debug_logging] lazy_txn_delete_thr [source/collect.c][607] +[06 19:27:07][9336][ERRO][xm_debug_logging] lazy_txn_sql_delete_thr [source/collect.c][706] +[06 19:27:07][9336][ERRO][xm_debug_logging] udpsender_thr [source/collect.c][2437] +[03 10:00:21][20485][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 10:00:21][20485][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 10:00:21][20485][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 10:00:21][20485][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 10:00:21][20485][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 10:00:21][20485][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 10:00:21][20485][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 10:00:21][20485][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 10:00:21][20485][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 10:00:21][20485][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 10:00:21][20485][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 10:00:21][20485][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 10:00:21][20485][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 10:00:21][20485][INFO][MAIN] hostname[kkam] +[03 10:00:21][20485][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 10:00:21][20485][INFO][check_double_execution] write pid. 20485 +[03 10:00:21][20485][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 10:00:21][20485][INFO][create_new_dg_connection] thread create: 458417920 +[03 10:00:21][20485][INFO][add_thread_handle] idx[0],handle[0x1b52e700] +[03 10:00:21][20485][INFO][add_thread_handle] idx[1],handle[0x1ab2d700] +[03 10:00:21][20485][INFO][create_new_dg_connection] thread create: 447928064 +[03 10:00:21][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:00:21][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:00:21][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:00:21][20485][INFO]thr_udp_wasconn pthread_create created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[2],handle[0x19f19700] +[03 10:00:21][20485][INFO]thr_udp_wasconn pthread_create created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[3],handle[0x19518700] +[03 10:00:21][20485][INFO][CollectStart] log thread id (start_collect2_thread) : 414283520 created +[03 10:00:21][20485][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[4],handle[0x13fff700] +[03 10:00:21][20485][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 10:00:21][20485][INFO][add_thread_handle] idx[5],handle[0x135fe700] +[03 10:00:23][20485][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 10:00:23][20485][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 10:00:23][20485][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 10:01:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1674, skip_count: 0 bind_count:0 +[03 10:01:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:01:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:01:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:01:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:01:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:01:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:01:00][20485][INFO][info_log] [0] udp recv(588.00b) 23 0 | 23 0 | 0 0 | 0 +[03 10:01:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:01:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:01:00][20485][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 10:01:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:01:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:02:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:02:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:02:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:02:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:02:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:02:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:02:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:02:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:02:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:02:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:02:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:03:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:03:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:03:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:03:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:03:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:03:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:03:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:03:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:03:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:03:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:03:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:04:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:04:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:04:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:04:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:04:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:04:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:04:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:04:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:04:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:04:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:04:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:05:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:05:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:05:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:05:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:05:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:05:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:05:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:05:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:05:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:05:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:05:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:06:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:06:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:06:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:06:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:06:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:06:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:06:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:06:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:06:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:06:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:06:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:07:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:07:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:07:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:07:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:07:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:07:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:07:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:07:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:07:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:07:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:07:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:08:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:08:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:08:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:08:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:08:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:08:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:08:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:08:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:08:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:08:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:08:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:09:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:09:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:09:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:09:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:09:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:09:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:09:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:09:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:09:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:09:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:09:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:10:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:10:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:10:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:10:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:10:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:10:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:10:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:10:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:10:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:10:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:10:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:11:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:11:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:11:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:11:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:11:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:11:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:11:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:11:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:11:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:11:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:11:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:12:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:12:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:12:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:12:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:12:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:12:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:12:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:12:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:12:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:12:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:12:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:13:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:13:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:13:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:13:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:13:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:13:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:13:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:13:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:13:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:13:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:13:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:14:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:14:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:14:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:14:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:14:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:14:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:14:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:14:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:14:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:14:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:14:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:15:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:15:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:15:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:15:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:15:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:15:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:15:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:15:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:15:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:15:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:15:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:16:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:16:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:16:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:16:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:16:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:16:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:16:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:16:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:16:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:16:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:16:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:17:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:17:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:17:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:17:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:17:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:17:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:17:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:17:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:17:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:17:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:17:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:18:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:18:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:18:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:18:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:18:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:18:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:18:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:18:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:18:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:18:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:18:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:19:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:19:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:19:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:19:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:19:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:19:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:19:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:19:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:19:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:19:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:19:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:20:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:20:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:20:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:20:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:20:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:20:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:20:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:20:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:20:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:20:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:20:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:21:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:21:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:21:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:21:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:21:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:21:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:21:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:21:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:21:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:21:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:21:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:22:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:22:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:22:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:22:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:22:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:22:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:22:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:22:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:22:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:22:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:22:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:23:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:23:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:23:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:23:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:23:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:23:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:23:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:23:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:23:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:23:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:23:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:24:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:24:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:24:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:24:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:24:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:24:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:24:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:24:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:24:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:24:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:24:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:25:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:25:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:25:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:25:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:25:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:25:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:25:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:25:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:25:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:25:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:25:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:26:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:26:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:26:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:26:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:26:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:26:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:26:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:26:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:26:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:26:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:26:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:27:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:27:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:27:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:27:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:27:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:27:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:27:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:27:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:27:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:27:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:27:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:28:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:28:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:28:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:28:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:28:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:28:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:28:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:28:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:28:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:28:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:28:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:29:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:29:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:29:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:29:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:29:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:29:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:29:00][20485][INFO][info_log] [0] udp recv(110.00b) 5 0 | 5 0 | 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:29:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:29:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:29:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:29:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:30:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:30:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:30:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:30:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:30:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:30:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:30:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:30:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:30:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:30:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:30:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:31:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:31:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:31:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:31:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:31:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:31:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:31:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:31:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:31:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:31:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:31:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:32:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:32:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:32:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:32:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:32:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:32:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:32:00][20485][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:32:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:32:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:32:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:32:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:33:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:33:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:33:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:33:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:33:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:33:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:33:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:33:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:33:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:33:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:33:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:34:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:34:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:34:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:34:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:34:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:34:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:34:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:34:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:34:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:34:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:34:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:35:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:35:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:35:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:35:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:35:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:35:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:35:00][20485][INFO][info_log] [0] udp recv(390.00b) 15 0 | 15 0 | 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:35:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:35:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:35:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:35:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:36:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:36:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:36:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:36:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:36:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:36:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:36:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:36:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:36:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:36:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:36:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:37:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:37:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:37:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:37:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:37:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:37:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:37:00][20485][INFO][info_log] [0] udp recv(240.00b) 10 0 | 10 0 | 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:37:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:37:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:37:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:37:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:38:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:38:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:38:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:38:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:38:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:38:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:38:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:38:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:38:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:38:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:38:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:39:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:39:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:39:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:39:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:39:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:39:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:39:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:39:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:39:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:39:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:39:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:40:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:40:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:40:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:40:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:40:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:40:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:40:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:40:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:40:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:40:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:40:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:41:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:41:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:41:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:41:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:41:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:41:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:41:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:41:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:41:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:41:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:41:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:42:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:42:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:42:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:42:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:42:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:42:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:42:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:42:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:42:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:42:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:42:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:42:39][20485][ERRO][processing_socket] get packet data failed(-1) +[03 10:42:39][20485][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[03 10:42:49][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:42:49][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:42:49][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:43:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2700, skip_count: 0 bind_count:0 +[03 10:43:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:43:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:43:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:43:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:43:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:43:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:43:00][20485][INFO][info_log] [0] udp recv(858.00b) 33 0 | 32 0 | 0 0 | 0 +[03 10:43:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:43:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:43:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:43:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:43:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:44:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:44:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:44:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:44:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:44:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:44:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:44:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:44:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:44:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:44:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:44:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:45:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:45:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:45:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:45:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:45:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 10:45:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:45:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:45:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:45:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:45:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:45:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:46:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:46:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:46:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:46:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:46:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:46:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:46:00][20485][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:46:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:46:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:46:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:46:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:47:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:47:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:47:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:47:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:47:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:47:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:47:00][20485][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:47:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:47:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:47:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:47:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:47:17][20485][ERRO][processing_socket] get packet data failed(-1) +[03 10:47:17][20485][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[03 10:47:32][20485][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[458417920] +[03 10:47:32][20485][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 10:47:32][20485][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 10:48:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2430, skip_count: 0 bind_count:0 +[03 10:48:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:48:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:48:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:48:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:48:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:48:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:48:00][20485][INFO][info_log] [0] udp recv(702.00b) 27 0 | 27 0 | 0 0 | 0 +[03 10:48:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:48:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:48:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:48:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:48:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:49:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:49:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:49:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:49:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:49:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:49:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:49:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:49:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:49:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:49:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:49:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:50:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:50:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:50:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:50:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:50:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:50:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:50:00][20485][INFO][info_log] [0] udp recv(442.00b) 17 0 | 17 0 | 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:50:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:50:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:50:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:50:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:51:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:51:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:51:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:51:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:51:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:51:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:51:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:51:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:51:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:51:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:51:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:52:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:52:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:52:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:52:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:52:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:52:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:52:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:52:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:52:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:52:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:52:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:53:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:53:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:53:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:53:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:53:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:53:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:53:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:53:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:53:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:53:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:53:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 10:54:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:54:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:54:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:54:00][20485][INFO][info_log] udp recv list by wasid [6/7/] +[03 10:54:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:54:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:54:00][20485][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:54:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:54:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:54:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:54:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:3888, skip_count: 0 bind_count:0 +[03 10:55:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:55:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:55:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:55:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:55:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:55:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:55:00][20485][INFO][info_log] [0] udp recv(292.00b) 12 0 | 12 0 | 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:55:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:55:00][20485][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 10:55:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:55:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[03 10:56:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:56:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:56:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:56:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:56:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:56:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:56:00][20485][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:56:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:56:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:56:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:56:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] tcp send queue count: 4 (127.0.0.1:1314), send size:6480, skip_count: 0 bind_count:0 +[03 10:57:00][20485][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 10:57:00][20485][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 10:57:00][20485][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 10:57:00][20485][INFO][info_log] udp recv list by wasid [6/7/8/9/] +[03 10:57:00][20485][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:57:00][20485][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 10:57:00][20485][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 10:57:00][20485][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 10:57:00][20485][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 10:57:00][20485][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 10:57:00][20485][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 10:57:36][20485][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 10:57:36][20485][INFO][MAIN] imxosm is wrong. +[03 10:57:37][20485][INFO][thread_tcpconn] end +[03 10:57:39][20485][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 10:57:39][20485][INFO][wait_all_thread_stop] all thread terminated. +[03 10:57:39][20485][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:03:54][4595][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 11:03:54][4595][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:03:54][4595][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 11:03:54][4595][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 11:03:54][4595][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 11:03:54][4595][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 11:03:54][4595][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 11:03:54][4595][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 11:03:54][4595][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 11:03:54][4595][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:03:54][4595][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 11:03:54][4595][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 11:03:54][4595][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 11:03:54][4595][INFO][MAIN] hostname[kkam] +[03 11:03:54][4595][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:03:54][4595][INFO][check_double_execution] write pid. 4595 +[03 11:03:54][4595][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 11:03:54][4595][INFO][create_new_dg_connection] thread create: 1631655680 +[03 11:03:54][4595][INFO][add_thread_handle] idx[0],handle[0x61411700] +[03 11:03:54][4595][INFO][add_thread_handle] idx[1],handle[0x60a10700] +[03 11:03:54][4595][INFO][create_new_dg_connection] thread create: 1621165824 +[03 11:03:54][4595][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[1631655680] +[03 11:03:54][4595][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 11:03:54][4595][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 11:03:54][4595][INFO]thr_udp_wasconn pthread_create created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[2],handle[0x5bdec700] +[03 11:03:54][4595][INFO]thr_udp_wasconn pthread_create created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[3],handle[0x5b3eb700] +[03 11:03:54][4595][INFO][CollectStart] log thread id (start_collect2_thread) : 1520346880 created +[03 11:03:54][4595][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[4],handle[0x59fe9700] +[03 11:03:54][4595][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 11:03:54][4595][INFO][add_thread_handle] idx[5],handle[0x595e8700] +[03 11:03:54][4595][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 11:03:54][4595][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 11:03:54][4595][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 11:04:00][4595][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:108, skip_count: 0 bind_count:0 +[03 11:04:00][4595][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:04:00][4595][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:04:00][4595][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:04:00][4595][INFO][info_log] udp recv list by wasid [10/] +[03 11:04:00][4595][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:04:00][4595][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:04:00][4595][INFO][info_log] [0] udp recv(68.00b) 3 0 | 3 0 | 0 0 | 0 +[03 11:04:00][4595][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:04:00][4595][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:04:00][4595][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:04:00][4595][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:04:00][4595][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3051, skip_count: 0 bind_count:0 +[03 11:05:00][4595][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:05:00][4595][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:05:00][4595][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:05:00][4595][INFO][info_log] udp recv list by wasid [10/11/] +[03 11:05:00][4595][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:05:00][4595][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:05:00][4595][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:05:00][4595][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:05:00][4595][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:05:00][4595][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:05:00][4595][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:05:21][4595][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:05:21][4595][INFO][MAIN] imxosm is wrong. +[03 11:05:22][4595][INFO][thread_tcpconn] end +[03 11:05:24][4595][INFO][wait_all_thread_stop] all thread terminated. +[03 11:05:24][4595][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:05:24][4595][INFO][thr_udp_recv] recvfrom() has failed(ret:0) +[03 11:08:45][8520][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[03 11:08:45][8520][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[03 11:08:45][8520][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[03 11:08:45][8520][INFO]XM_LOG_OPT: 0 [opt_num:0] +[03 11:08:45][8520][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[03 11:08:45][8520][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[03 11:08:45][8520][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[03 11:08:45][8520][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[03 11:08:45][8520][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[03 11:08:45][8520][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[03 11:08:45][8520][INFO][read_properties] imx.prop AGENT_MODE:2 +[03 11:08:45][8520][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[03 11:08:45][8520][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[03 11:08:45][8520][INFO][MAIN] hostname[kkam] +[03 11:08:45][8520][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[03 11:08:45][8520][INFO][check_double_execution] write pid. 8520 +[03 11:08:45][8520][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[03 11:08:45][8520][INFO][create_new_dg_connection] thread create: -1635588352 +[03 11:08:45][8520][INFO][add_thread_handle] idx[0],handle[0x9e82e700] +[03 11:08:45][8520][INFO][add_thread_handle] idx[1],handle[0x9de2d700] +[03 11:08:45][8520][INFO][create_new_dg_connection] thread create: -1646078208 +[03 11:08:45][8520][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1635588352] +[03 11:08:45][8520][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[03 11:08:45][8520][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[03 11:08:45][8520][INFO]thr_udp_wasconn pthread_create created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[2],handle[0x9d219700] +[03 11:08:45][8520][INFO]thr_udp_wasconn pthread_create created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[3],handle[0x97fff700] +[03 11:08:45][8520][INFO][CollectStart] log thread id (start_collect2_thread) : -1755322624 created +[03 11:08:45][8520][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[03 11:08:45][8520][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[03 11:08:45][8520][INFO][add_thread_handle] idx[4],handle[0x96bfd700] +[03 11:08:45][8520][INFO][add_thread_handle] idx[4],handle[0x961fc700] +[03 11:08:45][8520][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[03 11:08:45][8520][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[03 11:08:45][8520][INFO][collect_initialize] thread_udpsender pthread_create created. +[03 11:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:459, skip_count: 0 bind_count:0 +[03 11:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:09:00][8520][INFO][info_log] [0] udp recv(198.00b) 8 0 | 8 0 | 0 0 | 0 +[03 11:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:09:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:10:00][8520][INFO][info_log] [0] udp recv(338.00b) 13 0 | 13 0 | 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:11:00][8520][INFO][info_log] [0] udp recv(68.00b) 3 0 | 3 0 | 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:11:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:12:00][8520][INFO][info_log] [0] udp recv(952.00b) 37 0 | 37 0 | 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:12:00][8520][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[03 11:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:13:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:14:00][8520][INFO][info_log] [0] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:15:00][8520][INFO][info_log] [0] udp recv(500.00b) 20 0 | 20 0 | 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:15:00][8520][INFO][info_log] [1] udp recv(32.00b) 2 0 | 2 0 | 0 0 | 0 +[03 11:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:19:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:20:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:21:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:22:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:29:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:33:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:34:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:37:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 11:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:42:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:43:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:44:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:47:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:54:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:56:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:58:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 11:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 11:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 11:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 11:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 11:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 11:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 11:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 11:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 11:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 11:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:00:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:01:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:03:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:09:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:12:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:15:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:16:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:18:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:23:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:26:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:29:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:32:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:33:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:34:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:36:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:37:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:42:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:43:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:50:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:51:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 12:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:54:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:55:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:56:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:58:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 12:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 12:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 12:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 12:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 12:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 12:59:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 12:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 12:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 12:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 12:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:00:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:01:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:01:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:01:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:01:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:01:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:01:59][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:01:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:01:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:01:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:01:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:08:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:10:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 13:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:14:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:16:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:18:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:21:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:22:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:24:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:25:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:26:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:27:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:34:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:34:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:34:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:34:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:34:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:34:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:34:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:34:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:34:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:34:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:45:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:46:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 13:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:55:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:58:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 13:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 13:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 13:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 13:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 13:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 13:59:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 13:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 13:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 13:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 13:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:03:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:08:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:11:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:17:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:18:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:22:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:23:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:27:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:28:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:31:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:32:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:34:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:41:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:42:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:43:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:44:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 14:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 41 0 | 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 14:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:57:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:58:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 14:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 14:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 14:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 14:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 14:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 14:59:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 14:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 14:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 14:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 14:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:00:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:02:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:03:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 15:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:10:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:11:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:12:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:13:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:16:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:19:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:20:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:21:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:22:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:23:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:24:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:30:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:31:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:31:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:31:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:31:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:31:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:31:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:31:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:31:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:31:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:31:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:31:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:33:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:35:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:37:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:38:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:40:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:41:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:43:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:44:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:45:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:47:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:51:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:52:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:53:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 15:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:54:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:56:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:57:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:58:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 15:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 15:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 15:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 15:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 15:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 15:59:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 15:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 15:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 15:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 15:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:02:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:03:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:04:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:08:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:16:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:17:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:25:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:26:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 16:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:28:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:29:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:30:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:31:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:32:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:34:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:36:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:38:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:39:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:41:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:42:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:46:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:47:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:48:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:51:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:52:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 39 0 | 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 16:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:54:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 16:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:55:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 42 0 | 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:58:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 16:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 16:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 16:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 16:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 16:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 16:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 16:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 16:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 16:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 16:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:00:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:01:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:09:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:14:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:15:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:16:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:17:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:22:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:24:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:25:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:30:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:31:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:35:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:36:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:37:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:38:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:39:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:40:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:41:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:42:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:43:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:48:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 17:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:49:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:50:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:51:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:52:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:53:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:54:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:55:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:57:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:58:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 17:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 17:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 17:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 17:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 17:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 17:59:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 17:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 17:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 17:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 17:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:01:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:02:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:03:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:05:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:06:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:07:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:08:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:09:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:10:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:11:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:11:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:11:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:11:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:11:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:11:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:11:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:11:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:11:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:11:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:11:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:13:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:14:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:16:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:17:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:20:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:20:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:20:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:20:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:20:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:20:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:20:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:20:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:20:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:20:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:20:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:21:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:22:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:23:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:25:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:26:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:27:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:29:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 18:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:30:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:31:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 40 0 | 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:32:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:33:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:36:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:36:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:36:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:36:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:36:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:36:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:36:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:36:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:36:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:36:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:36:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:37:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:37:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:37:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:37:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:37:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:37:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:37:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:37:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:37:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:37:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:37:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:38:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:38:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:38:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:38:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:38:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:38:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:38:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:38:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:38:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:38:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:38:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:39:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:39:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:39:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:39:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:39:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:39:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:39:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:39:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:39:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:39:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:39:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:40:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:40:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:40:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:40:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:40:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:40:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:40:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:40:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:40:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:40:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:40:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:41:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:41:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:41:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:41:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:41:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:41:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:41:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:41:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:41:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:41:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:41:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:42:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:42:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:42:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:42:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:42:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:42:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:42:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:42:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:42:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:42:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:42:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:43:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:43:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:43:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:43:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:43:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:43:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:43:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:43:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:43:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:43:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:43:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:44:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:44:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:44:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:44:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:44:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:44:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:44:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:44:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:44:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:44:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:44:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:45:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:45:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:45:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:45:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:45:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:45:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:45:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:45:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:45:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:45:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:45:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:46:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:46:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:46:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:46:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:46:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:46:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:46:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:46:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:46:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:46:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:46:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:47:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:47:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:47:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:47:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:47:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:47:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:47:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:47:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:47:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:47:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:47:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:48:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:48:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:48:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:48:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:48:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:48:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:48:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:48:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:48:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:48:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:48:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:49:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:49:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:49:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:49:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:49:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:49:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:49:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:49:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:49:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:49:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:49:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:50:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:50:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:50:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:50:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:50:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:50:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:50:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:50:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:50:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:50:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:50:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:51:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:51:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:51:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:51:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:51:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:51:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:51:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:51:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:51:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:51:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:51:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:52:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:52:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:52:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:52:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:52:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:52:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:52:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:52:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:52:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:52:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:52:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:53:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:53:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:53:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:53:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:53:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:53:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:53:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:53:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:53:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:53:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:53:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:54:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:54:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:54:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:54:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:54:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[03 18:54:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:54:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:54:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:54:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:54:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:54:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:55:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:55:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:55:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:55:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:55:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 18:55:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:55:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:55:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:55:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:55:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:55:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:56:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:56:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:56:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:56:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:56:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:56:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:56:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:56:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:56:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:56:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:56:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:57:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:57:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:57:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:57:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:57:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:57:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:57:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:57:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:57:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:57:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:57:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:58:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:58:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:58:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:58:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:58:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:58:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:58:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:58:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:58:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:58:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:58:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 18:59:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 18:59:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 18:59:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 18:59:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 18:59:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:59:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 18:59:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 18:59:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 18:59:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 18:59:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 18:59:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:00:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:00:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:00:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:00:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:00:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:00:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:00:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:00:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:00:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:00:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:00:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:01:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:01:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:01:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:01:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:01:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:01:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:01:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:01:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:01:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:01:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:01:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:02:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:02:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:02:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:02:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:02:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:02:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:02:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:02:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:02:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:02:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:02:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:03:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:03:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:03:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:03:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:03:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:03:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:03:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:03:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:03:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:03:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:03:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:04:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:04:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:04:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:04:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:04:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:04:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:04:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:04:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:04:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:04:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:04:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:05:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:05:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:05:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:05:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:05:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:05:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:05:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:05:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:05:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:05:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:05:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:06:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:06:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:06:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:06:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:06:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:06:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:06:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:06:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:06:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:06:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:06:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:07:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:07:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:07:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:07:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:07:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:07:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:07:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:07:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:07:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:07:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:07:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:08:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:08:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:08:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:08:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:08:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:08:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:08:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:08:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:08:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:08:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:08:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:09:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:09:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:09:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:09:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:09:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:09:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:09:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:09:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:09:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:09:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:09:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:10:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:10:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:10:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:10:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:10:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:10:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:10:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:10:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:10:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:10:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:10:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:10:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:10:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:10:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:10:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:10:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:10:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:10:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:10:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:12:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:12:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:12:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:12:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:12:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:12:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:12:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:12:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:12:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:12:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:12:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:13:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:13:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:13:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:13:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:13:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:13:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:13:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:13:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:13:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:13:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:13:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:14:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:14:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:14:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:14:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:14:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:14:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:14:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:14:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:14:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:14:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:14:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:15:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:15:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:15:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:15:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:15:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:15:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:15:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:15:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:15:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:15:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:15:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:16:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:16:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:16:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:16:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:16:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:16:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:16:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:16:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:16:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:16:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:16:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:17:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:17:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:17:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:17:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:17:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:17:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:17:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:17:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:17:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:17:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:17:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:18:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:18:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:18:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:18:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:18:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:18:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:18:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:18:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:18:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:18:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:18:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:19:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:19:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:19:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:19:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:19:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:19:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:19:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:19:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:19:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:19:59][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:19:59][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:19:59][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:19:59][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:19:59][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:59][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:19:59][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:19:59][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:19:59][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:19:59][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:19:59][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:21:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:21:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:21:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:21:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:21:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:21:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:21:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:21:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:21:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:21:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:21:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:22:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:22:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:22:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:22:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:22:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:22:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:22:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 42 0 | 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:22:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:22:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:22:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:22:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:23:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:23:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:23:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:23:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:23:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:23:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:23:00][8520][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:23:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:23:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:23:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:23:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:24:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:24:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:24:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:24:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:24:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:24:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:24:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:24:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:24:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:24:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:24:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:25:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:25:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:25:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:25:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:25:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:25:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:25:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:25:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:25:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:25:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:25:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:26:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:26:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:26:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:26:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:26:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:26:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:26:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:26:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:26:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:26:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:26:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:27:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:27:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:27:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:27:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:27:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:27:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:27:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:27:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:27:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:27:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:27:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:28:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:28:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:28:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:28:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:28:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:28:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:28:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:28:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:28:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:28:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:28:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:29:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:29:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:29:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:29:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:29:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:29:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:29:00][8520][INFO][info_log] [0] udp recv(1.07k) 42 0 | 41 0 | 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:29:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:29:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:29:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:29:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:30:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:30:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:30:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:30:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:30:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:30:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:30:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:30:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:30:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:30:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:30:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:31:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:31:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:31:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:31:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:31:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:31:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:31:00][8520][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:31:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:31:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:31:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:31:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:32:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:32:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:32:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:32:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:32:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[03 19:32:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:32:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 38 0 | 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:32:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:32:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:32:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:32:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:33:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:33:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:33:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:33:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:33:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:33:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:33:00][8520][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:33:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:33:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:33:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:33:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:34:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:34:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:34:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:34:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:34:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:34:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:34:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:34:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:34:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:34:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:34:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[03 19:35:00][8520][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[03 19:35:00][8520][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[03 19:35:00][8520][INFO][info_log] udp recv count by ports 0:0 1:0 +[03 19:35:00][8520][INFO][info_log] udp recv list by wasid [12/13/] +[03 19:35:00][8520][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:35:00][8520][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[03 19:35:00][8520][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[03 19:35:00][8520][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[03 19:35:00][8520][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[03 19:35:00][8520][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[03 19:35:00][8520][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:45:24][7636][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 09:45:24][7636][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 09:45:24][7636][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 09:45:24][7636][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 09:45:24][7636][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 09:45:24][7636][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 09:45:24][7636][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 09:45:24][7636][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 09:45:24][7636][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 09:45:24][7636][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 09:45:24][7636][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 09:45:24][7636][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 09:45:24][7636][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 09:45:24][7636][INFO][MAIN] hostname[kkam] +[15 09:45:24][7636][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 09:45:24][7636][INFO][check_double_execution] write pid. 7636 +[15 09:45:24][7636][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 09:45:24][7636][INFO][create_new_dg_connection] thread create: -1892092160 +[15 09:45:24][7636][INFO][add_thread_handle] idx[0],handle[0x8f38f700] +[15 09:45:24][7636][INFO][add_thread_handle] idx[1],handle[0x8e98e700] +[15 09:45:24][7636][INFO][create_new_dg_connection] thread create: -1902582016 +[15 09:45:24][7636][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1892092160] +[15 09:45:24][7636][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 09:45:24][7636][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 09:45:24][7636][INFO]thr_udp_wasconn pthread_create created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[2],handle[0x8dd7a700] +[15 09:45:24][7636][INFO]thr_udp_wasconn pthread_create created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[3],handle[0x8d379700] +[15 09:45:24][7636][INFO][CollectStart] log thread id (start_collect2_thread) : -2013268224 created +[15 09:45:24][7636][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[4],handle[0x875fe700] +[15 09:45:24][7636][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 09:45:24][7636][INFO][add_thread_handle] idx[5],handle[0x86bfd700] +[15 09:45:24][7636][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 09:45:24][7636][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 09:45:24][7636][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 09:46:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1836, skip_count: 0 bind_count:0 +[15 09:46:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:46:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:46:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:46:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:46:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:46:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:46:00][7636][INFO][info_log] [0] udp recv(650.00b) 25 0 | 25 0 | 0 0 | 0 +[15 09:46:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:46:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:46:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:46:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:46:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:47:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:47:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:47:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:47:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:47:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:47:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:47:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:47:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:47:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:47:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:47:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:48:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:48:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:48:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:48:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:48:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:48:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:48:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:48:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:48:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:48:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:48:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:49:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:49:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:49:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:49:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:49:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 09:49:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:49:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:49:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:49:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:49:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:49:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:50:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:50:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:50:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:50:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:50:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 09:50:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:50:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:50:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:50:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:50:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:50:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:51:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:51:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:51:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:51:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:51:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:51:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:51:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:51:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:51:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:51:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:51:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:52:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:52:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:52:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:52:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:52:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:52:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:52:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:52:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:52:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:52:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:52:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:53:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:53:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:53:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:53:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:53:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:53:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:53:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:53:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:53:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:53:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:53:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:54:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:54:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:54:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:54:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:54:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:54:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:54:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:54:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:54:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:54:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:54:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:55:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:55:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:55:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:55:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:55:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:55:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:55:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:55:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:55:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:55:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:55:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:56:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:56:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:56:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:56:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:56:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:56:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:56:00][7636][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:56:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:56:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:56:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:56:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:57:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:57:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:57:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:57:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:57:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:57:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:57:00][7636][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:57:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:57:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:57:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:57:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 09:58:00][7636][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 09:58:00][7636][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 09:58:00][7636][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 09:58:00][7636][INFO][info_log] udp recv list by wasid [13/12/] +[15 09:58:00][7636][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:58:00][7636][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 09:58:00][7636][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 09:58:00][7636][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 09:58:00][7636][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 09:58:00][7636][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 09:58:00][7636][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 09:58:33][7636][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 09:58:33][7636][INFO][MAIN] imxosm is wrong. +[15 09:58:35][7636][INFO][thread_tcpconn] end +[15 09:58:36][7636][INFO][wait_all_thread_stop] all thread terminated. +[15 11:25:48][15283][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 11:25:48][15283][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:25:48][15283][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 11:25:48][15283][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 11:25:48][15283][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 11:25:48][15283][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 11:25:48][15283][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 11:25:48][15283][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 11:25:48][15283][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 11:25:48][15283][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:25:48][15283][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 11:25:48][15283][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 11:25:48][15283][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 11:25:48][15283][INFO][MAIN] hostname[kkam] +[15 11:25:48][15283][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:25:48][15283][INFO][check_double_execution] write pid. 15283 +[15 11:25:48][15283][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 11:25:48][15283][INFO][create_new_dg_connection] thread create: -1255958784 +[15 11:25:48][15283][INFO][add_thread_handle] idx[0],handle[0xb5239700] +[15 11:25:48][15283][INFO][add_thread_handle] idx[1],handle[0xb4838700] +[15 11:25:48][15283][INFO][create_new_dg_connection] thread create: -1266448640 +[15 11:25:48][15283][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1255958784] +[15 11:25:48][15283][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:25:48][15283][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:25:48][15283][INFO]thr_udp_wasconn pthread_create created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[2],handle[0xb3c24700] +[15 11:25:48][15283][INFO]thr_udp_wasconn pthread_create created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[3],handle[0xb3223700] +[15 11:25:48][15283][INFO][CollectStart] log thread id (start_collect2_thread) : -1300093184 created +[15 11:25:48][15283][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[4],handle[0xb1e21700] +[15 11:25:48][15283][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 11:25:48][15283][INFO][add_thread_handle] idx[5],handle[0xb1013700] +[15 11:25:49][15283][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 11:25:49][15283][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 11:25:49][15283][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 11:26:00][15283][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:216, skip_count: 0 bind_count:0 +[15 11:26:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:26:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:26:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:26:00][15283][INFO][info_log] udp recv list by wasid [14/] +[15 11:26:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:26:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:26:00][15283][INFO][info_log] [0] udp recv(104.00b) 4 0 | 4 0 | 0 0 | 0 +[15 11:26:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:26:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:26:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:26:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:26:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2862, skip_count: 0 bind_count:0 +[15 11:27:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:27:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:27:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:27:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:27:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:27:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:27:00][15283][INFO][info_log] [0] udp recv(952.00b) 37 0 | 37 0 | 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:27:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:27:00][15283][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 11:27:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:27:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:28:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:28:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:28:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:28:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:28:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:28:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:28:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:28:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:28:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:28:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:28:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:29:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:29:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:29:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:29:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:29:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:29:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:29:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:29:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:29:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:29:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:29:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:30:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:30:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:30:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:30:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:30:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:30:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:30:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:30:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:30:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:30:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:30:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:31:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:31:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:31:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:31:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:31:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:31:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:31:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:31:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:31:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:31:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:31:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:32:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:32:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:32:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:32:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:32:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:32:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:32:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:32:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:32:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:32:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:32:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:33:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:33:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:33:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:33:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:33:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:33:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:33:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:33:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:33:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:33:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:33:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:34:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:34:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:34:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:34:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:34:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:34:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:34:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:34:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:34:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:34:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:34:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:35:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:35:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:35:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:35:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:35:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:35:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:35:00][15283][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:35:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:35:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:35:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:35:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:36:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:36:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:36:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:36:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:36:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:36:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:36:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:36:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:36:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:36:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:36:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:37:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:37:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:37:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:37:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:37:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:37:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:37:00][15283][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:37:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:37:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:37:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:37:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:38:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:38:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:38:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:38:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:38:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:38:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:38:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:38:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:38:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:38:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:38:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:39:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:39:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:39:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:39:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:39:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:39:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:39:00][15283][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:39:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:39:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:39:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:39:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:40:00][15283][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:40:00][15283][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:40:00][15283][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:40:00][15283][INFO][info_log] udp recv list by wasid [14/15/] +[15 11:40:00][15283][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:40:00][15283][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:40:00][15283][INFO][info_log] [0] udp recv(832.00b) 32 0 | 33 0 | 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:40:00][15283][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:40:00][15283][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:40:00][15283][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:40:00][15283][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:40:01][15283][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:40:01][15283][INFO][MAIN] imxosm is wrong. +[15 11:40:01][15283][INFO][thread_tcpconn] end +[15 11:40:04][15283][INFO][wait_all_thread_stop] all thread terminated. +[15 11:42:39][27306][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 11:42:39][27306][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 11:42:39][27306][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 11:42:39][27306][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 11:42:39][27306][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 11:42:39][27306][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 11:42:39][27306][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 11:42:39][27306][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 11:42:39][27306][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 11:42:39][27306][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 11:42:39][27306][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 11:42:39][27306][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 11:42:39][27306][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 11:42:39][27306][INFO][MAIN] hostname[kkam] +[15 11:42:39][27306][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 11:42:39][27306][INFO][check_double_execution] write pid. 27306 +[15 11:42:39][27306][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 11:42:39][27306][INFO][create_new_dg_connection] thread create: 616879872 +[15 11:42:39][27306][INFO][add_thread_handle] idx[0],handle[0x24c4d700] +[15 11:42:39][27306][INFO][add_thread_handle] idx[1],handle[0x2424c700] +[15 11:42:39][27306][INFO][create_new_dg_connection] thread create: 606390016 +[15 11:42:39][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:42:39][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:42:39][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:42:39][27306][INFO]thr_udp_wasconn pthread_create created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[2],handle[0x23638700] +[15 11:42:39][27306][INFO]thr_udp_wasconn pthread_create created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[3],handle[0x22c37700] +[15 11:42:39][27306][INFO][CollectStart] log thread id (start_collect2_thread) : 572745472 created +[15 11:42:39][27306][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[4],handle[0x21835700] +[15 11:42:39][27306][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 11:42:39][27306][INFO][add_thread_handle] idx[5],handle[0x20d40700] +[15 11:42:39][27306][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 11:42:39][27306][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 11:42:39][27306][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 11:43:00][27306][INFO][info_log] tcp send queue count: 1 (127.0.0.1:1314), send size:513, skip_count: 0 bind_count:0 +[15 11:43:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:43:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:43:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:43:00][27306][INFO][info_log] udp recv list by wasid [14/] +[15 11:43:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:43:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:43:00][27306][INFO][info_log] [0] udp recv(182.00b) 7 0 | 7 0 | 0 0 | 0 +[15 11:43:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:43:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:43:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:43:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:43:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2970, skip_count: 0 bind_count:0 +[15 11:44:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:44:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:44:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:44:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:44:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:44:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:44:00][27306][INFO][info_log] [0] udp recv(1004.00b) 39 0 | 38 0 | 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:44:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:44:00][27306][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 11:44:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:44:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:44:57][27306][ERRO][processing_socket] get packet data failed(-1) +[15 11:44:57][27306][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 11:45:00][27306][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:3132, skip_count: 0 bind_count:0 +[15 11:45:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:45:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:45:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:45:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:45:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:45:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:45:00][27306][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 11:45:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:45:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:45:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:45:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:45:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:45:12][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:45:12][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:45:12][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:46:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2538, skip_count: 0 bind_count:0 +[15 11:46:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:46:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:46:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:46:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:46:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:46:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:46:00][27306][INFO][info_log] [0] udp recv(728.00b) 28 0 | 28 0 | 0 0 | 0 +[15 11:46:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:46:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:46:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:46:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:46:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:47:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:47:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:47:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:47:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:47:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:47:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:47:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:47:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:47:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:47:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:47:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:48:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:48:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:48:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:48:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:48:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:48:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:48:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:48:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:48:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:48:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:48:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:48:28][27306][ERRO][processing_socket] get packet data failed(-1) +[15 11:48:28][27306][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 11:48:48][27306][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[616879872] +[15 11:48:48][27306][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 11:48:49][27306][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 11:49:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:2106, skip_count: 0 bind_count:0 +[15 11:49:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:49:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:49:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:49:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:49:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:49:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:49:00][27306][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[15 11:49:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:49:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:49:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:49:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:49:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:50:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:50:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:50:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:50:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:50:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:50:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:50:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:50:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:50:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:50:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:50:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:51:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:51:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:51:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:51:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:51:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:51:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:51:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:51:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:51:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:51:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:51:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:52:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:52:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:52:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:52:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:52:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:52:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:52:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:52:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:52:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:52:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:52:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:53:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:53:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:53:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:53:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:53:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 11:53:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:53:00][27306][INFO][info_log] [0] udp recv(1.02k) 40 0 | 39 0 | 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:53:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:53:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:53:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:53:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 11:54:00][27306][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 11:54:00][27306][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 11:54:00][27306][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 11:54:00][27306][INFO][info_log] udp recv list by wasid [14/16/] +[15 11:54:00][27306][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:54:00][27306][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 11:54:00][27306][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 11:54:00][27306][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 11:54:00][27306][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 11:54:00][27306][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 11:54:00][27306][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:04:18][14849][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 12:04:18][14849][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:04:18][14849][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 12:04:18][14849][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 12:04:18][14849][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 12:04:18][14849][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 12:04:18][14849][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 12:04:18][14849][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 12:04:18][14849][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 12:04:18][14849][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 12:04:18][14849][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 12:04:18][14849][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 12:04:18][14849][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 12:04:18][14849][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 12:04:18][14849][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 12:04:18][14849][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:04:18][14849][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 12:04:18][14849][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 12:04:18][14849][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 12:04:18][14849][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 12:04:18][14849][INFO][MAIN] hostname[kkam] +[15 12:04:18][14849][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 12:04:18][14849][INFO][check_double_execution] write pid. 14849 +[15 12:04:18][14849][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 12:04:18][14849][INFO][create_new_dg_connection] thread create: -1493637376 +[15 12:04:18][14849][INFO][add_thread_handle] idx[0],handle[0xa6f8e700] +[15 12:04:18][14849][INFO][add_thread_handle] idx[1],handle[0xa658d700] +[15 12:04:18][14849][INFO][create_new_dg_connection] thread create: -1504127232 +[15 12:04:18][14849][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[-1493637376] +[15 12:04:18][14849][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 12:04:18][14849][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 12:04:18][14849][INFO]thr_udp_wasconn pthread_create created. +[15 12:04:18][14849][INFO][add_thread_handle] idx[2],handle[0xa5979700] +[15 12:04:18][14849][INFO]thr_udp_wasconn pthread_create created. +[15 12:04:18][14849][INFO][add_thread_handle] idx[3],handle[0xa4f78700] +[15 12:04:18][14849][INFO][CollectStart] log thread id (start_collect2_thread) : -1610615040 created +[15 12:04:18][14849][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 12:04:18][14849][INFO][add_thread_handle] idx[4],handle[0x9f5fe700] +[15 12:04:18][14849][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 12:04:18][14849][INFO][add_thread_handle] idx[5],handle[0x9ebfd700] +[15 12:04:18][14849][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 12:04:18][14849][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 12:04:18][14849][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 12:05:00][14849][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1728, skip_count: 0 bind_count:0 +[15 12:05:00][14849][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:05:00][14849][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:05:00][14849][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:05:00][14849][INFO][info_log] udp recv list by wasid [18/19/] +[15 12:05:00][14849][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:05:00][14849][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:05:00][14849][INFO][info_log] [0] udp recv(588.00b) 23 0 | 23 0 | 0 0 | 0 +[15 12:05:00][14849][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:05:00][14849][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:05:00][14849][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 12:05:00][14849][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:05:00][14849][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:06:00][14849][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:06:00][14849][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:06:00][14849][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:06:00][14849][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:06:00][14849][INFO][info_log] udp recv list by wasid [18/19/] +[15 12:06:00][14849][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:00][14849][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:06:00][14849][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:06:00][14849][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:00][14849][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:06:00][14849][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:06:00][14849][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:06:00][14849][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:06:59][14849][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:06:59][14849][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:06:59][14849][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:06:59][14849][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:06:59][14849][INFO][info_log] udp recv list by wasid [18/19/] +[15 12:06:59][14849][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:59][14849][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:06:59][14849][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:06:59][14849][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:06:59][14849][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:06:59][14849][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:06:59][14849][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:06:59][14849][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:08:00][14849][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:08:00][14849][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:08:00][14849][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:08:00][14849][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:08:00][14849][INFO][info_log] udp recv list by wasid [18/19/] +[15 12:08:00][14849][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 12:08:00][14849][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:08:00][14849][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 12:08:00][14849][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:08:00][14849][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:08:00][14849][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:08:00][14849][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:08:00][14849][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:09:00][14849][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:09:00][14849][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:09:00][14849][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:09:00][14849][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:09:00][14849][INFO][info_log] udp recv list by wasid [18/19/] +[15 12:09:00][14849][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:09:00][14849][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:09:00][14849][INFO][info_log] [0] udp recv(1.02k) 40 0 | 41 0 | 0 0 | 0 +[15 12:09:00][14849][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:09:00][14849][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:09:00][14849][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:09:00][14849][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:09:00][14849][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:09:36][14849][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 12:09:36][14849][INFO][MAIN] imxosm is wrong. +[15 12:09:36][14849][INFO][thread_tcpconn] end +[15 12:09:39][14849][INFO][wait_all_thread_stop] all thread terminated. +[15 12:12:18][21995][INFO]Start imxtxn. version Build 22-10-04 05:34:26 Version 5.3.0 . [DEBUG] +[15 12:12:18][21995][INFO][read_properties] jspd.prop WR_ADDR=127.0.0.1:1314 +[15 12:12:18][21995][INFO][setDGAddrFromStr] ip[127.0.0.1],port[1314] +[15 12:12:18][21995][INFO]XM_LOG_OPT: 0 [opt_num:0] +[15 12:12:18][21995][INFO][read_properties] jspd.prop WR_ADDR:127.0.0.1:1314 +[15 12:12:18][21995][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[15 12:12:18][21995][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[15 12:12:18][21995][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20220721 +[15 12:12:18][21995][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[15 12:12:18][21995][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[15 12:12:18][21995][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[15 12:12:18][21995][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[15 12:12:18][21995][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[15 12:12:18][21995][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[15 12:12:18][21995][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[15 12:12:18][21995][INFO][read_properties] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[15 12:12:18][21995][INFO][read_properties] imx.prop AGENT_MODE:2 +[15 12:12:18][21995][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[15 12:12:18][21995][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[15 12:12:18][21995][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[15 12:12:18][21995][INFO][MAIN] hostname[kkam] +[15 12:12:18][21995][ERRO][process_check] get_process_name_by_pid() has failed.(-1) +[15 12:12:18][21995][INFO][check_double_execution] write pid. 21995 +[15 12:12:18][21995][INFO][create_new_dg_connection] 127.0.0.1:1314 (7f0000010522) +[15 12:12:18][21995][INFO][create_new_dg_connection] thread create: 1995036416 +[15 12:12:18][21995][INFO][add_thread_handle] idx[0],handle[0x76e9d700] +[15 12:12:18][21995][INFO][add_thread_handle] idx[1],handle[0x7649c700] +[15 12:12:18][21995][INFO][create_new_dg_connection] thread create: 1984546560 +[15 12:12:18][21995][INFO][thread_tcpconn] client connected. ip[127.0.0.1],sock[3],thread_id[1995036416] +[15 12:12:18][21995][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20220721) +[15 12:12:18][21995][INFO][thread_tcpconn] response identity_imx. continue...[ver:20220721] +[15 12:12:18][21995][INFO]thr_udp_wasconn pthread_create created. +[15 12:12:18][21995][INFO][add_thread_handle] idx[2],handle[0x75888700] +[15 12:12:18][21995][INFO]thr_udp_wasconn pthread_create created. +[15 12:12:18][21995][INFO][add_thread_handle] idx[3],handle[0x74e87700] +[15 12:12:18][21995][INFO][CollectStart] log thread id (start_collect2_thread) : 1879045888 created +[15 12:12:18][21995][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[15 12:12:18][21995][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[15 12:12:18][21995][INFO][add_thread_handle] idx[4],handle[0x6f5fe700] +[15 12:12:18][21995][INFO][add_thread_handle] idx[4],handle[0x6ebfd700] +[15 12:12:19][21995][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[15 12:12:19][21995][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[15 12:12:19][21995][INFO][collect_initialize] thread_udpsender pthread_create created. +[15 12:13:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:1620, skip_count: 0 bind_count:0 +[15 12:13:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:13:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:13:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:13:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:13:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:13:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:13:00][21995][INFO][info_log] [0] udp recv(562.00b) 22 0 | 22 0 | 0 0 | 0 +[15 12:13:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:13:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:13:00][21995][INFO][info_log] [1] udp recv(16.00b) 1 0 | 1 0 | 0 0 | 0 +[15 12:13:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:13:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:14:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:14:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:14:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:14:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:14:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:14:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:14:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:14:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:14:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:14:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:14:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:14:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:14:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:15:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:15:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:15:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:15:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:15:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:15:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 12:15:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:15:00][21995][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 12:15:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:15:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:15:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:15:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:15:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:16:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:16:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:16:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:16:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:16:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:16:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:16:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:16:00][21995][INFO][info_log] [0] udp recv(1.04k) 41 0 | 42 0 | 0 0 | 0 +[15 12:16:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:16:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:16:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:16:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:16:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:17:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:17:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:17:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:17:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:17:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:17:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:17:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:17:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:17:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:17:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:17:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:17:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:17:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:18:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:18:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:18:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:18:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:18:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:18:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:18:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:18:00][21995][INFO][info_log] [0] udp recv(988.00b) 38 0 | 38 0 | 0 0 | 0 +[15 12:18:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:18:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:18:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:18:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:18:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:18:59][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:19:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:19:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:19:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:19:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:19:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:19:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:19:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:19:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:19:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:19:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:19:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:19:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:20:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:20:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:20:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:20:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:20:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:20:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:20:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:20:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:20:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:20:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:20:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:20:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:20:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:21:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:21:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:21:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:21:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:21:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:21:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:21:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:21:00][21995][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 12:21:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:21:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:21:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:21:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:21:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:22:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:22:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:22:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:22:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:22:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:22:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:22:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:22:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:22:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:22:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:22:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:22:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:22:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:23:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:23:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:23:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:23:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:23:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:23:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:23:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:23:00][21995][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 12:23:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:23:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:23:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:23:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:23:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:24:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:24:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:24:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:24:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:24:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:24:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:24:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:24:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:24:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:24:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:24:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:24:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:24:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:25:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:25:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:25:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:25:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:25:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:25:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:25:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:25:00][21995][INFO][info_log] [0] udp recv(1.04k) 41 0 | 41 0 | 0 0 | 0 +[15 12:25:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:25:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:25:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:25:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:25:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:26:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:26:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:26:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:26:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:26:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:26:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:26:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:26:00][21995][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 39 0 | 0 0 | 0 +[15 12:26:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:26:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:26:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:26:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:26:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:27:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:27:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:27:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:27:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:27:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:27:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:27:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:27:00][21995][INFO][info_log] [0] udp recv(1.02k) 40 0 | 40 0 | 0 0 | 0 +[15 12:27:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:27:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:27:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:27:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:27:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:28:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:28:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:28:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:28:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:28:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:28:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 12:28:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:28:00][21995][INFO][info_log] [0] udp recv(1.04k) 41 0 | 40 0 | 0 0 | 0 +[15 12:28:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:28:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:28:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:28:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:28:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:29:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:29:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:29:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:29:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:29:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:29:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:29:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:29:00][21995][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 12:29:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:29:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:29:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:29:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:29:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:30:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:30:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:30:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:30:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:30:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:30:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:2(132.00b) , skip_q:0 , drop_q:0 +[15 12:30:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:30:00][21995][INFO][info_log] [0] udp recv(1.07k) 42 0 | 40 0 | 0 0 | 0 +[15 12:30:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:30:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:30:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:30:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:30:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:31:00][21995][INFO][info_log] tcp send queue count: 2 (127.0.0.1:1314), send size:3240, skip_count: 0 bind_count:0 +[15 12:31:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:31:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:31:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:31:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:31:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[15 12:31:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:31:00][21995][INFO][info_log] [0] udp recv(1014.00b) 39 0 | 40 0 | 0 0 | 0 +[15 12:31:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:31:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:31:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:31:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:31:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[15 12:31:04][21995][ERRO][processing_socket] get packet data failed(-1) +[15 12:31:04][21995][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(3) +[15 12:32:00][21995][INFO][info_log] tcp send queue count: 0 (127.0.0.1:1314), send size:270, skip_count: 0 bind_count:0 +[15 12:32:00][21995][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[15 12:32:00][21995][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[15 12:32:00][21995][INFO][info_log] udp recv count by ports 0:0 1:0 +[15 12:32:00][21995][INFO][info_log] udp recv list by wasid [18/21/] +[15 12:32:00][21995][INFO][info_log] [0] udp(7404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:32:00][21995][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[15 12:32:00][21995][INFO][info_log] [0] udp recv(78.00b) 3 0 | 4 0 | 0 0 | 0 +[15 12:32:00][21995][INFO][info_log] [1] udp(7504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[15 12:32:00][21995][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[15 12:32:00][21995][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[15 12:32:00][21995][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[15 12:32:00][21995][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 diff --git a/intermax/2208.06_type4/jspd/log/jspd[0]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[0]-20221229.log new file mode 100644 index 0000000..e79d79e --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[0]-20221229.log @@ -0,0 +1,666 @@ +[2022/12/29 09:43:50] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 09:43:50] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 09:43:50] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:43:50] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 09:43:50] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 09:43:50] [INFO ] [main] 22.08.01.06 +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 09:43:50] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 09:43:50] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 09:43:50] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 09:43:51] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 09:43:51] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 09:43:51] [INFO ] INIT THREAD NAME=main +[2022/12/29 09:43:51] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 09:43:51] [INFO ] [main] reset rum white list time=>1672271999900, interval=>3600000 +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 09:43:51] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 09:43:51] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[0] +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 09:43:52] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 09:43:54] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 09:44:03] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 09:44:03] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 09:44:03] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:44:03] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 09:44:03] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 09:44:03] [INFO ] [main] 22.08.01.06 +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 09:44:03] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 09:44:03] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 09:44:03] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 09:44:03] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 09:44:03] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 09:44:03] [INFO ] INIT THREAD NAME=main +[2022/12/29 09:44:03] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 09:44:03] [INFO ] [main] reset rum white list time=>1672271999900, interval=>3600000 +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 09:44:03] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 09:44:03] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 09:44:04] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 09:44:04] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 09:44:04] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 09:44:06] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 09:46:57] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 09:46:57] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 09:46:57] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:46:57] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 09:46:57] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 09:46:57] [INFO ] [main] 22.08.01.06 +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 09:46:57] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 09:46:57] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 09:46:57] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 09:46:57] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 09:46:57] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 09:46:57] [INFO ] INIT THREAD NAME=main +[2022/12/29 09:46:57] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 09:46:57] [INFO ] [main] reset rum white list time=>1672271999900, interval=>3600000 +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 09:46:57] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 09:46:57] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 09:46:58] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 09:46:58] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 09:46:58] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 09:47:00] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 09:47:10] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 09:47:10] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 09:47:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:47:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 09:47:10] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 09:47:10] [INFO ] [main] 22.08.01.06 +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 09:47:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 09:47:10] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 09:47:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 09:47:10] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 09:47:10] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 09:47:10] [INFO ] INIT THREAD NAME=main +[2022/12/29 09:47:10] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 09:47:10] [INFO ] [main] reset rum white list time=>1672271999900, interval=>3600000 +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 09:47:10] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 09:47:10] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 09:47:11] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 09:47:11] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 09:47:11] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 09:47:13] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 10:11:03] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.am] +java.net.SocketException: Connection reset + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:96) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.am.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2022/12/29 10:11:03] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2022/12/29 10:11:03] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.am] +java.net.SocketException: Connection reset + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:96) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.am.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2022/12/29 10:11:03] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2022/12/29 10:11:18] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 10:11:18] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 10:11:18] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 10:11:18] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 10:11:19] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 10:13:51] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 10:13:51] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 10:13:51] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 10:13:51] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 10:13:51] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 10:13:51] [INFO ] [main] 22.08.01.06 +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 10:13:51] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 10:13:51] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 10:13:51] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 10:13:51] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 10:13:51] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 10:13:51] [INFO ] INIT THREAD NAME=main +[2022/12/29 10:13:51] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 10:13:51] [INFO ] [main] reset rum white list time=>1672275599900, interval=>3600000 +[2022/12/29 10:13:51] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 10:13:51] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 10:13:51] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 10:13:51] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 10:13:51] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 10:13:51] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.g] received wasid : 4 +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.4 +[2022/12/29 10:13:56] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 10:14:10] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 10:14:10] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 10:14:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 10:14:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 10:14:10] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 10:14:10] [INFO ] [main] 22.08.01.06 +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 10:14:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 10:14:10] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 10:14:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 10:14:10] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 10:14:10] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 10:14:10] [INFO ] INIT THREAD NAME=main +[2022/12/29 10:14:10] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 10:14:10] [INFO ] [main] reset rum white list time=>1672275599900, interval=>3600000 +[2022/12/29 10:14:10] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 10:14:10] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 10:14:10] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 10:14:10] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 10:14:10] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 10:14:10] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.g] received wasid : 5 +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.5 +[2022/12/29 10:14:15] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 13:55:01] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 13:55:01] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 13:55:01] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 13:55:01] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 13:55:01] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 13:55:01] [INFO ] [main] 22.08.01.06 +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 13:55:01] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 13:55:01] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 13:55:01] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 13:55:01] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 13:55:01] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 13:55:01] [INFO ] INIT THREAD NAME=main +[2022/12/29 13:55:01] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 13:55:01] [INFO ] [main] reset rum white list time=>1672286399900, interval=>3600000 +[2022/12/29 13:55:01] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 13:55:01] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 13:55:01] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 13:55:01] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 13:55:01] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 13:55:01] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 13:55:06] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 13:55:07] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2022/12/29 13:55:07] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.6 +[2022/12/29 13:55:07] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 13:55:18] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 13:55:18] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 13:55:18] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 13:55:18] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 13:55:18] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 13:55:18] [INFO ] [main] 22.08.01.06 +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 13:55:18] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 13:55:18] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 13:55:18] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 13:55:19] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 13:55:19] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 13:55:19] [INFO ] INIT THREAD NAME=main +[2022/12/29 13:55:19] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 13:55:19] [INFO ] [main] reset rum white list time=>1672286399900, interval=>3600000 +[2022/12/29 13:55:19] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 13:55:19] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 13:55:19] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 13:55:19] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 13:55:19] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 13:55:19] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.7 +[2022/12/29 13:55:24] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:06:30] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 14:06:30] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 14:06:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:06:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 14:06:30] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 14:06:30] [INFO ] [main] 22.08.01.06 +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 14:06:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 14:06:30] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 14:06:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 14:06:30] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 14:06:30] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 14:06:30] [INFO ] INIT THREAD NAME=main +[2022/12/29 14:06:30] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 14:06:30] [INFO ] [main] reset rum white list time=>1672289999900, interval=>3600000 +[2022/12/29 14:06:30] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 14:06:30] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 14:06:30] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 14:06:30] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 14:06:30] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 14:06:30] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.g] received wasid : 8 +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.8 +[2022/12/29 14:06:35] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:10:54] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 14:10:54] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:10:54] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 14:10:55] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:10:55] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 14:10:55] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 14:10:55] [INFO ] [main] 22.08.01.06 +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 14:10:55] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 14:10:55] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 14:10:55] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 14:10:55] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 14:10:55] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 14:10:55] [INFO ] INIT THREAD NAME=main +[2022/12/29 14:10:55] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 14:10:55] [INFO ] [main] reset rum white list time=>1672289999900, interval=>3600000 +[2022/12/29 14:10:55] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 14:10:55] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 14:10:55] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 14:10:55] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 14:10:55] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 14:10:55] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.g] received wasid : 9 +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.9 +[2022/12/29 14:11:00] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:11:42] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 14:11:42] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 14:11:42] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:11:42] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 14:11:42] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 14:11:42] [INFO ] [main] 22.08.01.06 +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 14:11:42] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 14:11:42] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 14:11:42] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 14:11:42] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 14:11:42] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 14:11:42] [INFO ] INIT THREAD NAME=main +[2022/12/29 14:11:42] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 14:11:42] [INFO ] [main] reset rum white list time=>1672289999900, interval=>3600000 +[2022/12/29 14:11:42] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 14:11:42] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 14:11:42] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 14:11:42] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 14:11:43] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 14:11:43] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.g] received wasid : 9 +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.9 +[2022/12/29 14:11:48] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 18:01:53] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 18:01:53] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2022/12/29 18:01:53] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 18:01:53] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 18:01:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 18:01:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 18:01:53] [2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2022/12/29 18:01:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 18:01:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 18:01:53] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2022/12/29 18:01:53] [2022/12/29 18:01:53] [INFO ] [main] 22.08.01.06 +[INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2022/12/29 18:01:53] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 18:01:53] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 18:01:53] [INFO ] [main] 22.08.01.06 +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2022/12/29 18:01:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2022/12/29 18:01:53] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 18:01:53] [INFO ] [2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2022/12/29 18:01:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2022/12/29 18:01:53] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 18:01:53] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 18:01:53] [INFO ] INIT THREAD NAME=main +[2022/12/29 18:01:53] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 18:01:53] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2022/12/29 18:01:53] [INFO ] TCP PROTOCOL VERSION --- 30 +[2022/12/29 18:01:53] [INFO ] INIT THREAD NAME=main +[2022/12/29 18:01:53] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2022/12/29 18:01:53] [INFO ] [main] reset rum white list time=>1672304399900, interval=>3600000 +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 18:01:53] [INFO ] [main] reset rum white list time=>1672304399900, interval=>3600000 +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 18:01:53] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 18:01:53] [INFO ] [main] JSPD Agent initialized. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2022/12/29 18:01:53] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. diff --git a/intermax/2208.06_type4/jspd/log/jspd[0]-20230106.log b/intermax/2208.06_type4/jspd/log/jspd[0]-20230106.log new file mode 100644 index 0000000..dfbf709 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[0]-20230106.log @@ -0,0 +1,246 @@ +[2023/01/06 17:05:07] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/01/06 17:05:07] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/01/06 17:05:07] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 17:05:07] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/01/06 17:05:07] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/01/06 17:05:07] [INFO ] [main] 22.08.01.06 +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/01/06 17:05:07] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/01/06 17:05:07] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/01/06 17:05:07] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/01/06 17:05:07] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/01/06 17:05:07] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/01/06 17:05:07] [INFO ] INIT THREAD NAME=main +[2023/01/06 17:05:07] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/01/06 17:05:07] [INFO ] [main] reset rum white list time=>1672991999900, interval=>3600000 +[2023/01/06 17:05:07] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/01/06 17:05:07] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/01/06 17:05:07] [INFO ] [main] JSPD Agent initialized. +[2023/01/06 17:05:07] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/01/06 17:05:07] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/01/06 17:05:07] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/01/06 17:05:12] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/01/06 17:05:13] [INFO ] [com.exem.jspd.agent.g] received wasid : 5 +[2023/01/06 17:05:13] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.5 +[2023/01/06 17:05:13] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 17:05:31] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/01/06 17:05:31] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/01/06 17:05:31] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 17:05:31] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/01/06 17:05:31] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/01/06 17:05:31] [INFO ] [main] 22.08.01.06 +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/01/06 17:05:31] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/01/06 17:05:31] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/01/06 17:05:31] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/01/06 17:05:31] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/01/06 17:05:31] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/01/06 17:05:31] [INFO ] INIT THREAD NAME=main +[2023/01/06 17:05:31] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/01/06 17:05:31] [INFO ] [main] reset rum white list time=>1672991999900, interval=>3600000 +[2023/01/06 17:05:31] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/01/06 17:05:31] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/01/06 17:05:31] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/01/06 17:05:31] [INFO ] [main] JSPD Agent initialized. +[2023/01/06 17:05:31] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/01/06 17:05:31] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/01/06 17:05:36] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/01/06 17:05:37] [INFO ] [com.exem.jspd.agent.g] received wasid : 4 +[2023/01/06 17:05:37] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.4 +[2023/01/06 17:05:37] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:14:27] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/01/06 19:14:27] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/01/06 19:14:27] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:14:27] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/01/06 19:14:27] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/01/06 19:14:27] [INFO ] [main] 22.08.01.06 +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/01/06 19:14:27] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/01/06 19:14:27] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/01/06 19:14:27] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/01/06 19:14:27] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/01/06 19:14:27] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/01/06 19:14:27] [INFO ] INIT THREAD NAME=main +[2023/01/06 19:14:27] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/01/06 19:14:27] [INFO ] [main] reset rum white list time=>1672999199900, interval=>3600000 +[2023/01/06 19:14:27] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/01/06 19:14:27] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/01/06 19:14:27] [INFO ] [main] JSPD Agent initialized. +[2023/01/06 19:14:27] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/01/06 19:14:27] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/01/06 19:14:27] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/01/06 19:14:32] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/01/06 19:14:33] [INFO ] [com.exem.jspd.agent.g] received wasid : 5 +[2023/01/06 19:14:33] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.5 +[2023/01/06 19:14:33] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:14:53] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/01/06 19:14:53] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/01/06 19:14:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:14:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/01/06 19:14:53] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/01/06 19:14:53] [INFO ] [main] 22.08.01.06 +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/01/06 19:14:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/01/06 19:14:53] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/01/06 19:14:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/01/06 19:14:53] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/01/06 19:14:53] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/01/06 19:14:53] [INFO ] INIT THREAD NAME=main +[2023/01/06 19:14:53] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/01/06 19:14:53] [INFO ] [main] reset rum white list time=>1672999199900, interval=>3600000 +[2023/01/06 19:14:53] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/01/06 19:14:53] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/01/06 19:14:53] [INFO ] [main] JSPD Agent initialized. +[2023/01/06 19:14:53] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/01/06 19:14:53] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/01/06 19:14:53] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.g] received wasid : 4 +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.4 +[2023/01/06 19:14:58] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:27:10] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/01/06 19:27:10] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/01/06 19:27:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:27:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/01/06 19:27:10] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/01/06 19:27:10] [INFO ] [main] 22.08.01.06 +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/01/06 19:27:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/01/06 19:27:10] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/01/06 19:27:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/01/06 19:27:10] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/01/06 19:27:10] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/01/06 19:27:10] [INFO ] INIT THREAD NAME=main +[2023/01/06 19:27:10] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/01/06 19:27:10] [INFO ] [main] reset rum white list time=>1672999199900, interval=>3600000 +[2023/01/06 19:27:10] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/01/06 19:27:10] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/01/06 19:27:10] [INFO ] [main] JSPD Agent initialized. +[2023/01/06 19:27:10] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/01/06 19:27:10] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/01/06 19:27:10] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. diff --git a/intermax/2208.06_type4/jspd/log/jspd[0]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[0]-20230203.log new file mode 100644 index 0000000..8336caf --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[0]-20230203.log @@ -0,0 +1,832 @@ +[2023/02/03 10:00:10] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:00:10] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:00:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:00:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:00:10] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:00:10] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:00:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:00:10] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:00:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:00:10] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:00:10] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:00:10] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:00:10] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:00:10] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:00:10] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:00:10] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:00:10] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:00:10] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:00:10] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:00:10] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:00:15] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:00:16] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2023/02/03 10:00:16] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.6 +[2023/02/03 10:00:16] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:00:24] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:00:24] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:00:24] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:00:24] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:00:24] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:00:24] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:00:24] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:00:24] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:00:24] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:00:24] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:00:24] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:00:24] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:00:24] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:00:24] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:00:24] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:00:24] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:00:24] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:00:24] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:00:24] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:00:24] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.7 +[2023/02/03 10:00:29] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:28:41] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:28:41] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:28:41] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:28:41] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:28:41] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:28:41] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:28:41] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:28:41] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:28:41] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:28:41] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:28:41] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:28:41] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:28:41] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:28:41] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:28:41] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:28:41] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:28:41] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:28:41] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:28:41] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:28:46] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:28:47] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2023/02/03 10:28:47] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.6 +[2023/02/03 10:28:47] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:28:53] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:28:53] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:28:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:28:53] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:28:53] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:28:53] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:28:53] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:28:53] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:28:53] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:28:54] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:28:54] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:28:54] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:28:54] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:28:54] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:28:54] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:28:54] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:28:54] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:28:54] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:28:54] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:28:54] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.7 +[2023/02/03 10:28:59] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:36:34] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:36:34] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:36:34] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:36:34] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:36:34] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:36:34] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:36:34] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:36:34] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:36:34] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:36:34] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:36:34] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:36:34] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:36:34] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:36:34] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:36:34] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:36:34] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:36:34] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:36:34] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:36:34] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:36:34] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.6 +[2023/02/03 10:36:39] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:36:46] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:36:46] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:36:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:36:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:36:46] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:36:46] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:36:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:36:46] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:36:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:36:46] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:36:46] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:36:46] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:36:46] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:36:46] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:36:46] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:36:46] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:36:46] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:36:46] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:36:46] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:36:46] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.7 +[2023/02/03 10:36:51] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:54:32] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:54:32] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:54:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:54:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:54:32] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:54:32] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:54:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:54:32] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:54:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:54:32] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:54:32] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:54:32] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:54:32] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:54:32] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:54:32] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:54:32] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:54:32] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:54:32] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:54:32] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:54:32] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:54:37] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:54:38] [INFO ] [com.exem.jspd.agent.g] received wasid : 8 +[2023/02/03 10:54:38] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.8 +[2023/02/03 10:54:38] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:54:44] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 10:54:44] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 10:54:44] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:54:44] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 10:54:44] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 10:54:44] [INFO ] [main] 22.08.01.06 +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 10:54:44] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 10:54:44] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 10:54:44] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 10:54:44] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 10:54:44] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 10:54:44] [INFO ] INIT THREAD NAME=main +[2023/02/03 10:54:44] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 10:54:44] [INFO ] [main] reset rum white list time=>1675385999900, interval=>3600000 +[2023/02/03 10:54:44] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 10:54:44] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 10:54:44] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 10:54:44] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 10:54:44] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 10:54:44] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.g] received wasid : 9 +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.9 +[2023/02/03 10:54:49] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:03:45] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:03:45] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:03:45] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:03:45] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:03:45] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:03:45] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:03:45] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:03:45] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:03:45] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:03:45] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:03:45] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:03:45] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:03:45] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:03:45] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:03:45] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:03:45] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:03:45] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:03:45] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:03:46] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:03:46] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 10 +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.10 +[2023/02/03 11:03:51] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:03:57] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:03:57] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:03:57] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:03:57] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:03:57] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:03:57] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:03:57] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:03:57] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:03:57] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:03:57] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:03:57] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:03:57] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:03:57] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:03:57] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:03:57] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:03:57] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:03:57] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:03:57] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:03:57] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:03:57] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.g] received wasid : 11 +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.11 +[2023/02/03 11:04:02] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:08:36] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:08:36] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:08:36] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:08:36] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:08:36] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:08:36] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:08:36] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:08:36] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:08:36] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:08:36] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:08:36] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:08:36] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:08:36] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:08:36] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:08:36] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:08:36] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:08:36] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:08:36] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:08:36] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:08:36] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.g] received wasid : 12 +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.12 +[2023/02/03 11:08:41] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:08:47] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:08:47] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:08:47] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:08:47] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:08:47] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:08:47] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:08:47] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:08:47] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:08:47] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:08:47] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:08:47] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:08:47] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:08:47] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:08:47] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:08:47] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:08:47] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:08:47] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:08:47] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:08:47] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:08:47] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.g] received wasid : 13 +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.13 +[2023/02/03 11:08:52] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:10:46] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:10:46] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:10:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:10:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:10:46] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:10:46] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:10:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:10:46] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:10:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:10:46] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:10:46] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:10:46] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:10:46] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:10:46] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:10:46] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:10:46] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:10:46] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:10:46] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:10:46] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:10:46] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 12 +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.12 +[2023/02/03 11:10:51] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:11:05] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:11:05] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:11:05] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:11:05] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:11:05] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:11:05] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:11:05] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:11:05] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:11:05] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:11:05] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:11:05] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:11:05] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:11:05] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:11:05] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:11:05] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:11:05] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:11:05] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:11:05] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:11:05] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:11:05] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:11:10] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:11:11] [INFO ] [com.exem.jspd.agent.g] received wasid : 13 +[2023/02/03 11:11:11] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.13 +[2023/02/03 11:11:11] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:14:19] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:14:19] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:14:19] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:14:19] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:14:19] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:14:19] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:14:19] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:14:19] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:14:19] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:14:19] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:14:19] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:14:19] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:14:19] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:14:19] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:14:19] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:14:19] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:14:19] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:14:19] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:14:19] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:14:19] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:14:24] [INFO ] [com.exem.jspd.agent.g] received wasid : 12 +[2023/02/03 11:14:25] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.12 +[2023/02/03 11:14:25] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:14:32] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/03 11:14:32] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/03 11:14:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:14:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/03 11:14:32] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/03 11:14:32] [INFO ] [main] 22.08.01.06 +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/03 11:14:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/03 11:14:32] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/03 11:14:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/03 11:14:32] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/03 11:14:32] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/03 11:14:32] [INFO ] INIT THREAD NAME=main +[2023/02/03 11:14:32] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/03 11:14:32] [INFO ] [main] reset rum white list time=>1675389599900, interval=>3600000 +[2023/02/03 11:14:32] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/03 11:14:32] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/03 11:14:32] [INFO ] [main] JSPD Agent initialized. +[2023/02/03 11:14:32] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/03 11:14:32] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/03 11:14:32] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.g] received wasid : 13 +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.13 +[2023/02/03 11:14:37] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes diff --git a/intermax/2208.06_type4/jspd/log/jspd[0]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[0]-20230215.log new file mode 100644 index 0000000..7e63b60 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[0]-20230215.log @@ -0,0 +1,624 @@ +[2023/02/15 09:37:58] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 09:37:58] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 09:37:58] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 09:37:58] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 09:37:58] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 09:37:58] [INFO ] [main] 22.08.01.06 +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 09:37:58] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 09:37:58] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 09:37:58] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 09:37:59] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 09:37:59] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 09:37:59] [INFO ] INIT THREAD NAME=main +[2023/02/15 09:37:59] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 09:37:59] [INFO ] [main] reset rum white list time=>1676419199900, interval=>3600000 +[2023/02/15 09:37:59] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 09:37:59] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 09:37:59] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 09:37:59] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 09:37:59] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 09:37:59] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 09:38:21] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 09:38:21] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 09:38:21] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 09:38:21] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 09:38:21] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 09:38:21] [INFO ] [main] 22.08.01.06 +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 09:38:21] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 09:38:21] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 09:38:21] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 09:38:21] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 09:38:21] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 09:38:21] [INFO ] INIT THREAD NAME=main +[2023/02/15 09:38:21] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 09:38:21] [INFO ] [main] reset rum white list time=>1676419199900, interval=>3600000 +[2023/02/15 09:38:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 09:38:21] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 09:38:21] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 09:38:21] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 09:38:21] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 09:38:21] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 09:45:20] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 09:45:21] [INFO ] [com.exem.jspd.agent.g] received wasid : 13 +[2023/02/15 09:45:21] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.13 +[2023/02/15 09:45:21] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.g] received wasid : 12 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.12 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 10:04:34] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 10:04:34] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 10:04:34] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 10:04:34] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 10:04:34] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 10:04:34] [INFO ] [main] 22.08.01.06 +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 10:04:34] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 10:04:34] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 10:04:34] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 10:04:34] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 10:04:34] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 10:04:34] [INFO ] INIT THREAD NAME=main +[2023/02/15 10:04:34] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 10:04:34] [INFO ] [main] reset rum white list time=>1676422799900, interval=>3600000 +[2023/02/15 10:04:34] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 10:04:34] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 10:04:34] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 10:04:34] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 10:04:34] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 10:04:34] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.g] received wasid : 14 +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.14 +[2023/02/15 10:04:39] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 10:04:40] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 10:04:40] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 10:04:40] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 10:04:40] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 10:04:40] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 10:04:40] [INFO ] [main] 22.08.01.06 +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 10:04:40] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 10:04:40] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 10:04:40] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 10:04:40] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 10:04:40] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 10:04:40] [INFO ] INIT THREAD NAME=main +[2023/02/15 10:04:40] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 10:04:40] [INFO ] [main] reset rum white list time=>1676422799900, interval=>3600000 +[2023/02/15 10:04:40] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 10:04:40] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 10:04:40] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 10:04:40] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 10:04:40] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 10:04:40] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.g] received wasid : 15 +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.15 +[2023/02/15 10:04:45] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:25:38] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 11:25:38] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 11:25:38] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:25:38] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 11:25:38] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 11:25:38] [INFO ] [main] 22.08.01.06 +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 11:25:38] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 11:25:38] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 11:25:38] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 11:25:38] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 11:25:38] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 11:25:38] [INFO ] INIT THREAD NAME=main +[2023/02/15 11:25:38] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 11:25:38] [INFO ] [main] reset rum white list time=>1676426399900, interval=>3600000 +[2023/02/15 11:25:38] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 11:25:38] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 11:25:38] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 11:25:38] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 11:25:38] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 11:25:38] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:25:43] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:25:44] [INFO ] [com.exem.jspd.agent.g] received wasid : 14 +[2023/02/15 11:25:44] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.14 +[2023/02/15 11:25:44] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:26:03] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 11:26:03] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 11:26:03] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:26:03] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 11:26:03] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 11:26:03] [INFO ] [main] 22.08.01.06 +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 11:26:03] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 11:26:03] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 11:26:03] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 11:26:04] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 11:26:04] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 11:26:04] [INFO ] INIT THREAD NAME=main +[2023/02/15 11:26:04] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 11:26:04] [INFO ] [main] reset rum white list time=>1676426399900, interval=>3600000 +[2023/02/15 11:26:04] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 11:26:04] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 11:26:04] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 11:26:04] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 11:26:04] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 11:26:04] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.g] received wasid : 15 +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.15 +[2023/02/15 11:26:09] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:42:30] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 11:42:30] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 11:42:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:42:30] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 11:42:30] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 11:42:30] [INFO ] [main] 22.08.01.06 +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 11:42:30] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 11:42:30] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 11:42:30] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 11:42:30] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 11:42:30] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 11:42:30] [INFO ] INIT THREAD NAME=main +[2023/02/15 11:42:30] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 11:42:30] [INFO ] [main] reset rum white list time=>1676426399900, interval=>3600000 +[2023/02/15 11:42:30] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 11:42:30] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 11:42:30] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 11:42:30] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 11:42:31] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 11:42:31] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.g] received wasid : 14 +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.14 +[2023/02/15 11:42:36] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:42:59] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 11:42:59] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 11:42:59] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:42:59] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 11:42:59] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06/jspd/lib/jspd-ext.jar] +[2023/02/15 11:42:59] [INFO ] [main] 22.08.01.06 +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 11:42:59] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 11:42:59] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06/jspd/lib/jspd-pool.jar] +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 11:42:59] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 11:43:00] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 11:43:00] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 11:43:00] [INFO ] INIT THREAD NAME=main +[2023/02/15 11:43:00] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 11:43:00] [INFO ] [main] reset rum white list time=>1676426399900, interval=>3600000 +[2023/02/15 11:43:00] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 11:43:00] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 11:43:00] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 11:43:00] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 11:43:00] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 11:43:00] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.g] received wasid : 16 +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.16 +[2023/02/15 11:43:05] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:04:08] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 12:04:08] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 12:04:08] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:04:08] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 12:04:08] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-ext.jar] +[2023/02/15 12:04:08] [INFO ] [main] 22.08.01.06 +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 12:04:08] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 12:04:08] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-pool.jar] +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 12:04:08] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 12:04:09] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 12:04:09] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 12:04:09] [INFO ] INIT THREAD NAME=main +[2023/02/15 12:04:09] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 12:04:09] [INFO ] [main] reset rum white list time=>1676429999900, interval=>3600000 +[2023/02/15 12:04:09] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 12:04:09] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 12:04:09] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 12:04:09] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 12:04:09] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 12:04:09] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.g] received wasid : 18 +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.18 +[2023/02/15 12:04:14] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:04:26] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 12:04:26] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 12:04:26] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:04:26] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 12:04:26] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-ext.jar] +[2023/02/15 12:04:26] [INFO ] [main] 22.08.01.06 +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 12:04:26] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 12:04:26] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-pool.jar] +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 12:04:26] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 12:04:26] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 12:04:26] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 12:04:26] [INFO ] INIT THREAD NAME=main +[2023/02/15 12:04:26] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 12:04:26] [INFO ] [main] reset rum white list time=>1676429999900, interval=>3600000 +[2023/02/15 12:04:26] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 12:04:26] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 12:04:26] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 12:04:26] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 12:04:26] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 12:04:26] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 12:04:31] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 12:04:32] [INFO ] [com.exem.jspd.agent.g] received wasid : 19 +[2023/02/15 12:04:32] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.19 +[2023/02/15 12:04:32] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:12:10] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 12:12:10] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 12:12:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:12:10] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 12:12:10] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-ext.jar] +[2023/02/15 12:12:10] [INFO ] [main] 22.08.01.06 +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 12:12:10] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 12:12:10] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-pool.jar] +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 12:12:10] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 12:12:10] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 12:12:10] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 12:12:10] [INFO ] INIT THREAD NAME=main +[2023/02/15 12:12:10] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 12:12:10] [INFO ] [main] reset rum white list time=>1676429999900, interval=>3600000 +[2023/02/15 12:12:10] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 12:12:10] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 12:12:10] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 12:12:10] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 12:12:10] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 12:12:10] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.g] received wasid : 18 +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.18 +[2023/02/15 12:12:15] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:12:29] [INFO ] [main] ImxJNI loaded[/app/tmax/intermax/2208.06_type4/jspd/lib/jni/libImxJNI_linux_64.so] +[2023/02/15 12:12:29] [INFO ] [main] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2023/02/15 12:12:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:12:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2023/02/15 12:12:29] [INFO ] [main] JSPD EXT [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-ext.jar] +[2023/02/15 12:12:29] [INFO ] [main] 22.08.01.06 +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2023/02/15 12:12:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2023/02/15 12:12:29] [INFO ] [main] JSPD POOL [/app/tmax/intermax/2208.06_type4/jspd/lib/jspd-pool.jar] +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2023/02/15 12:12:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2023/02/15 12:12:29] [INFO ] JSPD Version 22.08.01.06 [b615289c] +[2023/02/15 12:12:29] [INFO ] TCP PROTOCOL VERSION --- 30 +[2023/02/15 12:12:29] [INFO ] INIT THREAD NAME=main +[2023/02/15 12:12:29] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2023/02/15 12:12:29] [INFO ] [main] reset rum white list time=>1676429999900, interval=>3600000 +[2023/02/15 12:12:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2023/02/15 12:12:29] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2023/02/15 12:12:29] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2023/02/15 12:12:29] [INFO ] [main] JSPD Agent initialized. +[2023/02/15 12:12:29] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2023/02/15 12:12:29] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 12:12:34] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 12:12:35] [INFO ] [com.exem.jspd.agent.g] received wasid : 21 +[2023/02/15 12:12:35] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06_type4/jspd/cfg/agent/jspd.prop.21 +[2023/02/15 12:12:35] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes diff --git a/intermax/2208.06_type4/jspd/log/jspd[10]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[10]-20230203.log new file mode 100644 index 0000000..0f20347 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[10]-20230203.log @@ -0,0 +1,17 @@ +[2023/02/03 11:03:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1675389453024] +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:03:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:03:55] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[11]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[11]-20230203.log new file mode 100644 index 0000000..ae16486 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[11]-20230203.log @@ -0,0 +1,5 @@ +[2023/02/03 11:04:03] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:04:04] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:04:04] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:04:04] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:04:06] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[12]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[12]-20230203.log new file mode 100644 index 0000000..809c04d --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[12]-20230203.log @@ -0,0 +1,27 @@ +[2023/02/03 11:08:42] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1675389918035] +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:08:43] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:08:45] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 11:10:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:10:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:10:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:10:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:10:55] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 11:14:26] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:14:26] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:14:26] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:14:26] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:14:28] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[12]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[12]-20230215.log new file mode 100644 index 0000000..b3f5ace --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[12]-20230215.log @@ -0,0 +1,5 @@ +[2023/02/15 09:45:23] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 09:45:24] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 09:45:24] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 09:45:24] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 09:45:26] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[13]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[13]-20230203.log new file mode 100644 index 0000000..a0376ef --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[13]-20230203.log @@ -0,0 +1,15 @@ +[2023/02/03 11:08:53] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:08:54] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:08:54] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:08:54] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:08:56] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 11:11:11] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:11:12] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:11:12] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:11:12] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:11:14] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 11:14:38] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 11:14:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 11:14:39] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 11:14:39] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 11:14:41] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[13]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[13]-20230215.log new file mode 100644 index 0000000..ab4df23 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[13]-20230215.log @@ -0,0 +1,17 @@ +[2023/02/15 09:45:21] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1675420539063] +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 09:45:22] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 09:45:24] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[14]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[14]-20230215.log new file mode 100644 index 0000000..685962c --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[14]-20230215.log @@ -0,0 +1,107 @@ +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676422710074] +[2023/02/15 11:25:45] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:25:46] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:25:46] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:25:47] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 11:42:37] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676428797100] +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:42:38] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:42:40] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 11:44:58] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.g] received wasid : 14 +[2023/02/15 11:45:16] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:48:29] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.g] received wasid : 14 +[2023/02/15 11:48:59] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.ini +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.14 +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/imx.prop +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.alias +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [MFJ-JSPD-00100000] XmProperties Error invalid TXN_ADDR +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [MFJ-JSPD-00100010] XmProperties Error invalid UTS_ADDR +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:54:13] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Intermax License[-9], file open error diff --git a/intermax/2208.06_type4/jspd/log/jspd[15]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[15]-20230215.log new file mode 100644 index 0000000..1471437 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[15]-20230215.log @@ -0,0 +1,5 @@ +[2023/02/15 11:26:10] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:26:11] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:26:11] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:26:11] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:26:13] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[16]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[16]-20230215.log new file mode 100644 index 0000000..8fc9137 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[16]-20230215.log @@ -0,0 +1,78 @@ +[2023/02/15 11:43:06] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:43:07] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:43:07] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:43:07] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:43:09] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 11:44:58] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:44:58] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:45:15] [INFO ] [com.exem.jspd.agent.g] received wasid : 16 +[2023/02/15 11:45:16] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:45:17] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:48:29] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:48:29] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=hostgroup_kkam +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/15 11:48:58] [INFO ] [com.exem.jspd.agent.g] received wasid : 16 +[2023/02/15 11:48:59] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 11:49:00] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.ini +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.16 +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/imx.prop +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.alias +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [MFJ-JSPD-00100000] XmProperties Error invalid TXN_ADDR +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [MFJ-JSPD-00100010] XmProperties Error invalid UTS_ADDR +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 11:54:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Intermax License[-9], file open error diff --git a/intermax/2208.06_type4/jspd/log/jspd[18]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[18]-20230215.log new file mode 100644 index 0000000..94785af --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[18]-20230215.log @@ -0,0 +1,34 @@ +[2023/02/15 12:04:15] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06_type4/jspd, imxosm, 64] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(37)[/app/tmax/intermax/2208.06_type4/jspd] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676429649033] +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 12:04:16] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 12:04:18] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 12:12:16] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06_type4/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06_type4/jspd, imxosm, 64] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(37)[/app/tmax/intermax/2208.06_type4/jspd] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1676430573084] +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 12:12:17] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 12:12:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[19]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[19]-20230215.log new file mode 100644 index 0000000..ac51ca9 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[19]-20230215.log @@ -0,0 +1,5 @@ +[2023/02/15 12:04:33] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 12:04:33] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 12:04:33] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 12:04:33] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 12:04:35] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[21]-20230215.log b/intermax/2208.06_type4/jspd/log/jspd[21]-20230215.log new file mode 100644 index 0000000..a7a7a64 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[21]-20230215.log @@ -0,0 +1,22 @@ +[2023/02/15 12:12:36] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/15 12:12:37] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/15 12:12:37] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/15 12:12:37] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/15 12:12:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/15 12:31:05] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.m] +java.net.SocketException: Connection reset + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:96) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.b.am.a(Unknown Source) + at com.exem.jspd.b.m.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/15 12:31:05] [INFO ] [com.exem.jspd.agent.j] Intermax License diff --git a/intermax/2208.06_type4/jspd/log/jspd[4]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[4]-20221229.log new file mode 100644 index 0000000..310acf7 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[4]-20221229.log @@ -0,0 +1,151 @@ +[2022/12/29 10:13:57] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 10:13:58] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 10:13:58] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 10:13:58] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 10:14:00] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 10:44:22] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.4 +[2022/12/29 10:44:22] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 10:44:22] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Intermax License +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 10:44:27] [INFO ] [com.exem.jspd.agent.g] received wasid : 4 +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2022/12/29 11:09:56] [ERROR] [http1-w01 [container4-57]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 11:09:56] [ERROR] [http1-w01 [container4-57]] [[XmThread:throwPoolUse] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm, address: 127.0.0.1:1521, database: orcl +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 11:09:56] [ERROR] [http1-w01 [container4-57]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 16:06:47] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[4]-20230106.log b/intermax/2208.06_type4/jspd/log/jspd[4]-20230106.log new file mode 100644 index 0000000..de8a5ec --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[4]-20230106.log @@ -0,0 +1,10 @@ +[2023/01/06 17:05:37] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/01/06 17:05:38] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-1 +[2023/01/06 17:05:38] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/01/06 17:05:38] [INFO ] [com.exem.jspd.agent.g] Intermax License[-1], expired date error +[2023/01/06 17:05:40] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/01/06 19:14:59] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/01/06 19:15:00] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/01/06 19:15:00] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/01/06 19:15:00] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/01/06 19:15:02] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[5]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[5]-20221229.log new file mode 100644 index 0000000..9f2218f --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[5]-20221229.log @@ -0,0 +1,25 @@ +[2022/12/29 10:14:16] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 10:14:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-9 +[2022/12/29 10:14:17] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 10:14:17] [INFO ] [com.exem.jspd.agent.g] Intermax License[-9], file open error +[2022/12/29 10:14:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 10:44:23] [INFO ] [com.exem.jspd.agent.XmTaskTimer] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.5 +[2022/12/29 10:44:23] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 10:44:23] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Intermax License +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 10:44:28] [INFO ] [com.exem.jspd.agent.g] received wasid : 5 +[2022/12/29 10:44:29] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 16:06:45] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 16:06:47] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[5]-20230106.log b/intermax/2208.06_type4/jspd/log/jspd[5]-20230106.log new file mode 100644 index 0000000..77057a3 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[5]-20230106.log @@ -0,0 +1,22 @@ +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/01/06 17:05:14] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1672304508024] +[2023/01/06 17:05:15] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>-1 +[2023/01/06 17:05:15] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/01/06 17:05:15] [INFO ] [com.exem.jspd.agent.g] Intermax License[-1], expired date error +[2023/01/06 17:05:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/01/06 19:14:34] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/01/06 19:14:34] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/01/06 19:14:35] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/01/06 19:14:35] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/01/06 19:14:36] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[6]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[6]-20221229.log new file mode 100644 index 0000000..33097b2 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[6]-20221229.log @@ -0,0 +1,331 @@ +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1672289457054] +[2022/12/29 13:55:08] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 13:55:09] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 13:55:09] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 13:55:10] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 14:05:36] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2022/12/29 14:05:36] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2022/12/29 14:05:36] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 14:05:36] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 14:05:47] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2022/12/29 14:05:48] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 14:05:49] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 14:05:49] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 14:05:49] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 14:14:37] [ERROR] [http1-w01 [container4-58]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:14:37] [ERROR] [http1-w01 [container4-58]] [[XmThread:throwPoolUse] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm, address: 127.0.0.1:1521, database: orcl +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:14:37] [ERROR] [http1-w01 [container4-58]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:36] [ERROR] [http1-w00 [container4-57]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:36] [ERROR] [http1-w00 [container4-57]] [[XmThread:throwPoolUse] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm, address: 127.0.0.1:1521, database: orcl +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:36] [ERROR] [http1-w00 [container4-57]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 16:02:26] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] received wasid : 5 +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.5 +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes diff --git a/intermax/2208.06_type4/jspd/log/jspd[6]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[6]-20230203.log new file mode 100644 index 0000000..a9b4085 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[6]-20230203.log @@ -0,0 +1,91 @@ +[2023/02/03 10:00:16] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh], [sh, /app/tmax/intermax/2208.06/jspd/lib/IMXAgent.sh, /app/tmax/intermax/2208.06/jspd, imxosm, 64] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(31)[/app/tmax/intermax/2208.06/jspd] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[0] +[2023/02/03 10:00:17] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:00:18] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:00:18] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:00:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:28:48] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:28:48] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:28:48] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:28:48] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:28:50] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:36:40] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:36:41] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:36:41] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:36:41] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:36:43] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:42:40] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2023/02/03 10:42:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:47:18] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con4_2208.06 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container4 kkam_servlet_engine4, +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1078265028 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.g] received wasid : 6 +[2023/02/03 10:47:36] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.g] Intermax License diff --git a/intermax/2208.06_type4/jspd/log/jspd[7]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[7]-20221229.log new file mode 100644 index 0000000..3c7d6d0 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[7]-20221229.log @@ -0,0 +1,5 @@ +[2022/12/29 13:55:25] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 13:55:26] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 13:55:26] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 13:55:26] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 13:55:28] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[7]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[7]-20230203.log new file mode 100644 index 0000000..acf1e8d --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[7]-20230203.log @@ -0,0 +1,79 @@ +[2023/02/03 10:00:30] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:00:31] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:00:31] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:00:31] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:00:33] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:29:00] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:29:01] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:29:01] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:29:01] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:29:03] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:36:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:36:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:36:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:36:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:36:55] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2023/02/03 10:42:40] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:42:40] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:42:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2023/02/03 10:42:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:42:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:47:18] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2023/02/03 10:47:18] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=CloudGroup +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2023/02/03 10:47:35] [INFO ] [com.exem.jspd.agent.g] received wasid : 7 +[2023/02/03 10:47:36] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:47:37] [INFO ] [com.exem.jspd.agent.g] Intermax License diff --git a/intermax/2208.06_type4/jspd/log/jspd[8]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[8]-20221229.log new file mode 100644 index 0000000..a5dfd5c --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[8]-20221229.log @@ -0,0 +1,5 @@ +[2022/12/29 14:06:36] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 14:06:37] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 14:06:37] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 14:06:37] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 14:06:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[8]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[8]-20230203.log new file mode 100644 index 0000000..68b8de9 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[8]-20230203.log @@ -0,0 +1,5 @@ +[2023/02/03 10:54:38] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:54:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:54:39] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:54:39] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:54:41] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/log/jspd[9]-20221229.log b/intermax/2208.06_type4/jspd/log/jspd[9]-20221229.log new file mode 100644 index 0000000..73b31de --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[9]-20221229.log @@ -0,0 +1,292 @@ +[2022/12/29 14:11:01] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 14:11:02] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 14:11:02] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 14:11:02] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 14:11:04] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 14:11:49] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2022/12/29 14:11:50] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2022/12/29 14:11:50] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2022/12/29 14:11:50] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2022/12/29 14:11:52] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2022/12/29 14:14:38] [ERROR] [http1-w04 [container5-60]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:14:38] [ERROR] [http1-w04 [container5-60]] [[XmThread:throwPoolUse] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm, address: 127.0.0.1:1521, database: orcl +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:14:38] [ERROR] [http1-w04 [container5-60]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:34] [ERROR] [http1-w02 [container5-58]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:34] [ERROR] [http1-w02 [container5-58]] [[XmThread:throwPoolUse] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm, address: 127.0.0.1:1521, database: orcl +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 14:43:34] [ERROR] [http1-w02 [container5-58]] [[XmThread:throwConnOpen] XM_JDBC_CONNECTION_FAIL, _disableJdbcConnectionFail=false] jdbcURL= jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=orcl))), jdbcInfo= user: apm +java.sql.SQLException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412) + at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:531) + at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:221) + at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32) + at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503) + at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:280) + at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:207) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:139) + at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:88) + at jeus.jdbc.queue.JDBCConnectionRepository.createPooledConnection(JDBCConnectionRepository.java:284) + at jeus.jdbc.queue.JDBCConnectionRepository.initConnectionRepository(JDBCConnectionRepository.java:79) + at jeus.jdbc.connectionpool.PooledConnectionProviderImpl.initProvider(PooledConnectionProviderImpl.java:45) + at jeus.jdbc.connectionpool.ConnectionPoolImpl.initialize(ConnectionPoolImpl.java:161) + at jeus.jdbc.connectionpool.ServerSideConnectionPoolInitializer.makeConnectionPool(ServerSideConnectionPoolInitializer.java:43) + at jeus.jdbc.connectionpool.ConnectionPoolManager.createConnectionPool(ConnectionPoolManager.java:51) + at jeus.jdbc.connectionpool.CPObjectFactory.getObjectInstance(CPObjectFactory.java:24) + at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304) + at jeus.jndi.JNSContext.lookupInternal(JNSContext.java:584) + at jeus.jndi.JNSContext.lookup(JNSContext.java:539) + at jeus.jndi.JNSContext.lookup(JNSContext.java:528) + at jeus.jndi.JEUSFailoverContext.lookup(JEUSFailoverContext.java:287) + at javax.naming.InitialContext.lookup(InitialContext.java:392) + at smtest.tx.EmpConnection.getCon(EmpConnection.java:18) + at smtest.tx.EmpSelectHandle.selectEmp(EmpSelectHandle.java:62) + at smtest.tx.EmpSelectServlet.doPost(EmpSelectServlet.java:105) + at smtest.tx.EmpSelectServlet.doGet(EmpSelectServlet.java:133) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:705) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:818) + at jeus.servlet.engine.ServletWrapper.executeServlet(ServletWrapper.java:242) + at jeus.servlet.engine.ServletWrapper.execute(ServletWrapper.java:206) + at jeus.servlet.engine.HttpRequestProcessor.run(HttpRequestProcessor.java:319) +Caused by: oracle.net.ns.NetException: Listener refused the connection with the following error: +ORA-12505, TNS:listener does not currently know of SID given in connect descriptor + + at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385) + at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042) + at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301) + ... 30 more +[2022/12/29 16:02:26] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.s] +java.net.SocketException: 파이프가 깨어짐 + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) + at java.net.SocketOutputStream.write(SocketOutputStream.java:136) + at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) + at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123) + at com.exem.jspd.h.goto(Unknown Source) + at com.exem.jspd.f.u.else(Unknown Source) + at com.exem.jspd.f.s.a(Unknown Source) + at com.exem.jspd.f.o.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.lang.Thread.run(Thread.java:662) +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes +[2022/12/29 16:02:26] [INFO ] [com.exem.jspd.agent.j] Intermax License +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /127.0.0.1:1314 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentService=CLOUD_SERVICE +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup= +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id agentName=jeus6_con5_2208.06 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=CloudHost +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id hostname=kkam +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=kkam-/app/tmax/jeus69736-jeus.server.enginecontainer.EngineContainerBootstrapper kkam_container5 kkam_servlet_engine5, +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1971937756 +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2022/12/29 16:06:43] [INFO ] [com.exem.jspd.agent.j] request was id tier= +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] received wasid : 4 +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] not found file=/app/tmax/intermax/2208.06/jspd/cfg/agent/jspd.prop.4 +[2022/12/29 16:06:44] [INFO ] [com.exem.jspd.agent.g] [found getThreadAllocatedBytes method=] getThreadAllocatedBytes diff --git a/intermax/2208.06_type4/jspd/log/jspd[9]-20230203.log b/intermax/2208.06_type4/jspd/log/jspd[9]-20230203.log new file mode 100644 index 0000000..0ad2b74 --- /dev/null +++ b/intermax/2208.06_type4/jspd/log/jspd[9]-20230203.log @@ -0,0 +1,5 @@ +[2023/02/03 10:54:50] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>30, gather=30 +[2023/02/03 10:54:51] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostkey=0, licenseData =>30, localLicense =>1 +[2023/02/03 10:54:51] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=0, result=2 +[2023/02/03 10:54:51] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2023/02/03 10:54:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/2208.06_type4/jspd/tmp/imxosm.act b/intermax/2208.06_type4/jspd/tmp/imxosm.act new file mode 100644 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/tmp/imxosm.status b/intermax/2208.06_type4/jspd/tmp/imxosm.status new file mode 100644 index 0000000..c45bbc5 --- /dev/null +++ b/intermax/2208.06_type4/jspd/tmp/imxosm.status @@ -0,0 +1 @@ +status=RUNNING diff --git a/intermax/2208.06_type4/jspd/tmp/imxtxn.act b/intermax/2208.06_type4/jspd/tmp/imxtxn.act new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/intermax/2208.06_type4/jspd/tmp/imxtxn.act @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/tmp/imxtxn.status b/intermax/2208.06_type4/jspd/tmp/imxtxn.status new file mode 100644 index 0000000..c45bbc5 --- /dev/null +++ b/intermax/2208.06_type4/jspd/tmp/imxtxn.status @@ -0,0 +1 @@ +status=RUNNING diff --git a/intermax/2208.06_type4/jspd/tools/InterMax_license_info.txt b/intermax/2208.06_type4/jspd/tools/InterMax_license_info.txt new file mode 100755 index 0000000..604796e --- /dev/null +++ b/intermax/2208.06_type4/jspd/tools/InterMax_license_info.txt @@ -0,0 +1,113 @@ +-- HOSTID +# Windows (ETH MAC ADDRESS) +> ipconfig /all + +# Unix +> hostid + +# HP-UX +> echo `/bin/uname -i` 16op | dc +ex) FC522FFB +or +> getconf CS_PARTITION_IDENT +ex) 200bb998-xxxx-xxxx-xxxx-xxxxxxxxxxxx + + +-- CORE +# Windows +systeminfo | findstr Processors +wmic cpu get NumberOfCores +wmic cpu get NumberOfLogicalProcessors +echo %NUMBER_OF_PROCESSORS% + +# Linux +while true +do +PHYSICAL_CNT=`cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l` +CORE_CNT=`cat /proc/cpuinfo | grep "cpu cores" | tail -1 | cut -d: -f2` +CORE_ID=`cat /proc/cpuinfo | grep "core id" | sort -u | head -1 | cut -d: -f2` +THREAD_CNT=`egrep "^core|^physical" /proc/cpuinfo | awk '{if((NR%2)==0) print $0 "," ; else print $0 }' | awk 'BEGIN {RS=","} {print $1,$2,$3,$4,$5,$6,$7,$8}' | grep ^physical | sort | uniq -c | head -1 | awk '{print $1}'` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# SunOS +while true +do +PHYSICAL_CNT=`/usr/sbin/psrinfo -p` +CORE_TOT=`kstat -m cpu_info | grep -w core_id | sort -u | wc -l| awk '{print $1}'` +CORE_CNT=`expr $CORE_TOT / $PHYSICAL_CNT` +CORE_TOT2=`kstat -m cpu_info | grep -w core_id | wc -l ` +THREAD_CNT=`expr $CORE_TOT2 / $CORE_TOT ` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# HP-UX +while true +do +PHYSICAL_CNT=`machinfo | grep -i sockets | awk '{print $1}'` +CORE_CNT=`machinfo | grep -i cores | grep -v "processors" | awk -F'(' '{print $2}' | awk '{print $1}'` +THREAD_INFO=`/usr/sbin/kctune | grep lcpu_attr ` +IS_THREAD_ON=`echo $THREAD_INFO | grep 1 | wc -l` +if [ $IS_THREAD_ON -eq 1 ];then +THREAD_CNT=2 +else +THREAD_CNT=1 +fi +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +echo "MAX CPU : " `machinfo | grep -i cores | grep -v "per socket)"` +break +done + +# IBM AIX +while true +do +PHYSICAL_CNT=`lscfg -vp |grep -ip proc |grep PROC|grep WAY | wc -l` +CORE_CNT=`lscfg -vp | grep proc | wc -l` +IMSI_PROC=`lscfg -vp | grep proc | head -1 | awk '{print $1}'` +IS_SMT=`lsattr -El $IMSI_PROC | grep smt_enabled| awk '{print $2}'` +SMT_CNT=`lsattr -El $IMSI_PROC | grep smt_threads| awk '{print $2}'` +if [ $IS_SMT = "true" ];then +THREAD_CNT=$SMT_CNT +else +THREAD_CNT=1 +fi +if [ "$PHYSICAL_CNT" = "" ];then +PHYSICAL_CNT="I don't know" +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +else +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +fi +echo ""Physical CPU Count : $PHYSICAL_CNT "" +echo ""Core Count : $CORE_CNT "" +echo ""Thread Count per Core : $THREAD_CNT "" +LCPURESULT="$CORE_CNT (cores) * $THREAD_CNT(smt) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$NCPURESULT"|sed 's/^ *//'` +break +done + +# IBM AIX (5.3) +lsdev -Cc processor +lsattr -El proc0 +bindprocessor -q +smtctl diff --git a/intermax/2208.06_type4/jspd/tools/InterMax_license_keyfile_check.zip b/intermax/2208.06_type4/jspd/tools/InterMax_license_keyfile_check.zip new file mode 100755 index 0000000..094f425 Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/InterMax_license_keyfile_check.zip differ diff --git a/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe new file mode 100755 index 0000000..93f8697 Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe differ diff --git a/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe new file mode 100755 index 0000000..3793911 Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe differ diff --git a/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt new file mode 100755 index 0000000..1aa376c --- /dev/null +++ b/intermax/2208.06_type4/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt @@ -0,0 +1,5 @@ +지원되는 최신 Visual C++ 다운로드(2020.09.01) + +Visual Studio 2015, 2017 및 2019 + +https://support.microsoft.com/ko-kr/help/2977003/the-latest-supported-visual-c-downloads \ No newline at end of file diff --git a/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe b/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe new file mode 100755 index 0000000..35096bf Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe differ diff --git a/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe b/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe new file mode 100755 index 0000000..aa59bc9 Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe differ diff --git a/intermax/2208.06_type4/jspd/tools/imxmod/.gitkeep b/intermax/2208.06_type4/jspd/tools/imxmod/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/intermax/2208.06_type4/jspd/tools/imxmod/setup_mod_imx_httpd.bin b/intermax/2208.06_type4/jspd/tools/imxmod/setup_mod_imx_httpd.bin new file mode 100755 index 0000000..ce88257 Binary files /dev/null and b/intermax/2208.06_type4/jspd/tools/imxmod/setup_mod_imx_httpd.bin differ diff --git a/intermax/2208.06_type4/jspd/version.info b/intermax/2208.06_type4/jspd/version.info new file mode 100755 index 0000000..2391f01 --- /dev/null +++ b/intermax/2208.06_type4/jspd/version.info @@ -0,0 +1,2 @@ +install_version=2208.06 +current_version=2208.06 diff --git a/intermax/2208.06_type4/jspd/version_check.sh b/intermax/2208.06_type4/jspd/version_check.sh new file mode 100755 index 0000000..1c9f21d --- /dev/null +++ b/intermax/2208.06_type4/jspd/version_check.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +export PATH=`pwd` + +TXN_OUTPUT=`${PATH}/lib/imx/imxtxn -v` +OSM_OUTPUT=`${PATH}/lib/imx/imxosm -v` + +echo "TXN_VERSION=${TXN_OUTPUT}" > ${PATH}/version_check.info +echo "OSM_VERSION=${OSM_OUTPUT}" >> ${PATH}/version_check.info diff --git a/intermax/23.12.07.02.tar b/intermax/23.12.07.02.tar new file mode 100644 index 0000000..8d4240f Binary files /dev/null and b/intermax/23.12.07.02.tar differ diff --git a/intermax/23.12.07.02/ant/bin/ant b/intermax/23.12.07.02/ant/bin/ant new file mode 100755 index 0000000..cf336db --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/ant @@ -0,0 +1,299 @@ +#! /bin/sh + +# Copyright 2001-2005 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Extract launch and ant arguments, (see details below). +ant_exec_args= +no_config=false +use_jikes_default=false +ant_exec_debug=false +show_help=false +for arg in "$@" ; do + if [ "$arg" = "--noconfig" ] ; then + no_config=true + elif [ "$arg" = "--usejikes" ] ; then + use_jikes_default=true + elif [ "$arg" = "--execdebug" ] ; then + ant_exec_debug=true + elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then + show_help=true + ant_exec_args="$ant_exec_args -h" + else + if [ my"$arg" = my"-h" -o my"$arg" = my"-help" ] ; then + show_help=true + fi + ant_exec_args="$ant_exec_args \"$arg\"" + fi +done + +# Source/default ant configuration +if $no_config ; then + rpm_mode=false + usejikes=$use_jikes_default +else + # load system-wide ant configuration + if [ -f "/etc/ant.conf" ] ; then + . /etc/ant.conf + fi + + # load user ant configuration + if [ -f "$HOME/.ant/ant.conf" ] ; then + . $HOME/.ant/ant.conf + fi + if [ -f "$HOME/.antrc" ] ; then + . "$HOME/.antrc" + fi + + # provide default configuration values + if [ -z "$rpm_mode" ] ; then + rpm_mode=false + fi + if [ -z "$usejikes" ] ; then + usejikes=$use_jikes_default + fi +fi + +# Setup Java environment in rpm mode +if $rpm_mode ; then + if [ -f /usr/share/java-utils/java-functions ] ; then + . /usr/share/java-utils/java-functions + set_jvm + set_javacmd + fi +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +case "`uname`" in + CYGWIN*) cygwin=true ;; + Darwin*) darwin=true + if [ -z "$JAVA_HOME" ] ; then + JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home + fi + ;; +esac + +if [ -z "$ANT_HOME" -o ! -d "$ANT_HOME" ] ; then + ## resolve links - $0 may be a link to ant's home + PRG="$0" + progname=`basename "$0"` + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi + done + + ANT_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + ANT_HOME=`cd "$ANT_HOME" && pwd` +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$ANT_HOME" ] && + ANT_HOME=`cygpath --unix "$ANT_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# set ANT_LIB location +ANT_LIB="${ANT_HOME}/lib" + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD=`which java 2> /dev/null ` + if [ -z "$JAVACMD" ] ; then + JAVACMD=java + fi + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." + echo " We cannot execute $JAVACMD" + exit 1 +fi + +# Build local classpath using just the launcher in non-rpm mode or +# use the Jpackage helper in rpm mode with basic and default jars +# specified in the ant.conf configuration. Because the launcher is +# used, libraries linked in ANT_HOME will also be include, but this +# is discouraged as it is not java-version safe. A user should +# request optional jars and their dependencies via the OPT_JAR_LIST +# variable +if $rpm_mode && [ -f /usr/bin/build-classpath ] ; then + LOCALCLASSPATH="$(/usr/bin/build-classpath ant ant-launcher jaxp_parser_impl xml-commons-apis)" + # If the user requested to try to add some other jars to the classpath + if [ -n "$OPT_JAR_LIST" ] ; then + _OPTCLASSPATH="$(/usr/bin/build-classpath $OPT_JAR_LIST 2> /dev/null)" + if [ -n "$_OPTCLASSPATH" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$_OPTCLASSPATH" + fi + fi + + # Explicitly add javac path to classpath, assume JAVA_HOME set + # properly in rpm mode + if [ -f "$JAVA_HOME/lib/tools.jar" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/tools.jar" + fi + if [ -f "$JAVA_HOME/lib/classes.zip" ] ; then + LOCALCLASSPATH="$LOCALCLASSPATH:$JAVA_HOME/lib/classes.zip" + fi + + # if CLASSPATH_OVERRIDE env var is set, LOCALCLASSPATH will be + # user CLASSPATH first and ant-found jars after. + # In that case, the user CLASSPATH will override ant-found jars + # + # if CLASSPATH_OVERRIDE is not set, we'll have the normal behaviour + # with ant-found jars first and user CLASSPATH after + if [ -n "$CLASSPATH" ] ; then + # merge local and specified classpath + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH="$CLASSPATH" + elif [ -n "$CLASSPATH_OVERRIDE" ] ; then + LOCALCLASSPATH="$CLASSPATH:$LOCALCLASSPATH" + else + LOCALCLASSPATH="$LOCALCLASSPATH:$CLASSPATH" + fi + + # remove class path from launcher -cp option + CLASSPATH="" + fi +else + # not using rpm_mode; use launcher to determine classpaths + if [ -z "$LOCALCLASSPATH" ] ; then + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar + else + LOCALCLASSPATH=$ANT_LIB/ant-launcher.jar:$LOCALCLASSPATH + fi +fi + +if [ -n "$JAVA_HOME" ] ; then + # OSX hack to make Ant work with jikes + if $darwin ; then + OSXHACK="${JAVA_HOME}/../Classes" + if [ -d "${OSXHACK}" ] ; then + for i in "${OSXHACK}"/*.jar + do + JIKESPATH="$JIKESPATH:$i" + done + fi + fi +fi + +# Allow Jikes support (off by default) +if $usejikes; then + ANT_OPTS="$ANT_OPTS -Dbuild.compiler=jikes" +fi + +# For Cygwin, switch paths to appropriate format before running java +# For PATHs convert to unix format first, then to windows format to ensure +# both formats are supported. Probably this will fail on directories with ; +# in the name in the path. Let's assume that paths containing ; are more +# rare than windows style paths on cygwin. +if $cygwin; then + if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then + format=mixed + else + format=windows + fi + ANT_HOME=`cygpath --$format "$ANT_HOME"` + ANT_LIB=`cygpath --$format "$ANT_LIB"` + JAVA_HOME=`cygpath --$format "$JAVA_HOME"` + LCP_TEMP=`cygpath --path --unix "$LOCALCLASSPATH"` + LOCALCLASSPATH=`cygpath --path --$format "$LCP_TEMP"` + if [ -n "$CLASSPATH" ] ; then + CP_TEMP=`cygpath --path --unix "$CLASSPATH"` + CLASSPATH=`cygpath --path --$format "$CP_TEMP"` + fi + CYGHOME=`cygpath --$format "$HOME"` +fi + +# Show script help if requested +if $show_help ; then + echo $0 '[script options] [options] [target [target2 [target3] ..]]' + echo 'Script Options:' + echo ' --help, --h print this message and ant help' + echo ' --noconfig suppress sourcing of /etc/ant.conf,' + echo ' $HOME/.ant/ant.conf, and $HOME/.antrc' + echo ' configuration files' + echo ' --usejikes enable use of jikes by default, unless' + echo ' set explicitly in configuration files' + echo ' --execdebug print ant exec line generated by this' + echo ' launch script' + echo ' ' +fi +# add a second backslash to variables terminated by a backslash under cygwin +if $cygwin; then + case "$ANT_HOME" in + *\\ ) + ANT_HOME="$ANT_HOME\\" + ;; + esac + case "$CYGHOME" in + *\\ ) + CYGHOME="$CYGHOME\\" + ;; + esac + case "$JIKESPATH" in + *\\ ) + JIKESPATH="$JIKESPATH\\" + ;; + esac + case "$LOCALCLASSPATH" in + *\\ ) + LOCALCLASSPATH="$LOCALCLASSPATH\\" + ;; + esac + case "$CLASSPATH" in + *\\ ) + CLASSPATH="$CLASSPATH\\" + ;; + esac +fi +# Execute ant using eval/exec to preserve spaces in paths, +# java options, and ant args +ant_sys_opts= +if [ -n "$CYGHOME" ]; then + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\" -Dcygwin.user.home=\"$CYGHOME\"" + else + ant_sys_opts="-Dcygwin.user.home=\"$CYGHOME\"" + fi +else + if [ -n "$JIKESPATH" ]; then + ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\"" + fi +fi +ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\" -Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS -cp \"$CLASSPATH\" $ant_exec_args" +if $ant_exec_debug ; then + echo $ant_exec_command +fi +eval $ant_exec_command diff --git a/intermax/23.12.07.02/ant/bin/ant.bat b/intermax/23.12.07.02/ant/bin/ant.bat new file mode 100755 index 0000000..55df281 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/ant.bat @@ -0,0 +1,126 @@ +@echo off + +REM Copyright 2001,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. + +if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +rem %~dp0 is expanded pathname of the current script under NT +set DEFAULT_ANT_HOME=%~dp0.. + +if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME% +set DEFAULT_ANT_HOME= + +set _USE_CLASSPATH=yes + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of arguments (up to the command line limit, anyway). +set ANT_CMD_LINE_ARGS=%1 +if ""%1""=="""" goto doneStart +shift +:setupArgs +if ""%1""=="""" goto doneStart +if ""%1""==""-noclasspath"" goto clearclasspath +set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1 +shift +goto setupArgs + +rem here is there is a -noclasspath in the options +:clearclasspath +set _USE_CLASSPATH=no +shift +goto setupArgs + +rem This label provides a place for the argument list loop to break out +rem and for NT handling to skip to. + +:doneStart +rem find ANT_HOME if it does not exist due to either an invalid value passed +rem by the user or the %0 problem on Windows 9x +if exist "%ANT_HOME%\lib\ant.jar" goto checkJava + +rem check for ant in Program Files +if not exist "%ProgramFiles%\ant" goto checkSystemDrive +set ANT_HOME=%ProgramFiles%\ant +goto checkJava + +:checkSystemDrive +rem check for ant in root directory of system drive +if not exist %SystemDrive%\ant\lib\ant.jar goto checkCDrive +set ANT_HOME=%SystemDrive%\ant +goto checkJava + +:checkCDrive +rem check for ant in C:\ant for Win9X users +if not exist C:\ant\lib\ant.jar goto noAntHome +set ANT_HOME=C:\ant +goto checkJava + +:noAntHome +echo ANT_HOME is set incorrectly or ant could not be located. Please set ANT_HOME. +goto end + +:checkJava +set _JAVACMD=%JAVACMD% + +if "%JAVA_HOME%" == "" goto noJavaHome +if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe +goto checkJikes + +:noJavaHome +if "%_JAVACMD%" == "" set _JAVACMD=java.exe + +:checkJikes +if not "%JIKESPATH%"=="" goto runAntWithJikes + +:runAnt +if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikes +if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath +if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath + +:runAntWithJikesNoClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% +goto end + +:runAntWithJikesAndClasspath +"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% +goto end + +:end +set _JAVACMD= +set ANT_CMD_LINE_ARGS= + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + +:mainEnd +if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" + diff --git a/intermax/23.12.07.02/ant/bin/ant.cmd b/intermax/23.12.07.02/ant/bin/ant.cmd new file mode 100755 index 0000000..94b5a45 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/ant.cmd @@ -0,0 +1,92 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run ant +*/ + +'@echo off' +parse arg mode envarg '::' antarg + +if mode\='.' & mode\='..' & mode\='/' then do + envarg = mode envarg + mode = '' +end + +if antarg = '' then do + antarg = envarg + envarg = '' +end + +x = setlocal() + +env="OS2ENVIRONMENT" +antenv = _getenv_('antenv') +if _testenv_() = 0 then interpret 'call "' || antenv || '"' '"' || envarg || '"' + +if mode = '' then mode = _getenv_('ANT_MODE' '..') +if mode \= '/' then do + runrc = _getenv_('runrc') + antrc = _getenv_('antrc' 'antrc.cmd') + if mode = '..' then mode = '-r' + else mode = '' + interpret 'call "' || runrc || '"' antrc '"' || mode || '"' +end + +if _testenv_() = 0 then do + say 'Ant environment is not set properly' + x = endlocal() + exit 16 +end + +settings = '-Dant.home=' || ANT_HOME '-Djava.home=' || JAVA_HOME + +java = _getenv_('javacmd' 'java') +opts = value('ANT_OPTS',,env) +args = value('ANT_ARGS',,env) +lcp = value('LOCALCLASSPATH',,env) +cp = value('CLASSPATH',,env) +if value('ANT_USE_CP',,env) \= '' then do + if lcp \= '' & right(lcp, 1) \= ';' then lcp = lcp || ';' + lcp = lcp || cp + 'SET CLASSPATH=' +end +if lcp\='' then lcp = '-classpath' lcp + +cmd = java opts lcp '-jar' ANT_HOME ||'\lib\ant-launcher.jar' settings args antarg +launcher = stream(ANT_HOME ||'\lib\ant-launcher.jar', 'C', 'query exists') +if launcher = '' then entry = 'org.apache.tools.ant.Main' +else entry = 'org.apache.tools.ant.launch.Launcher' +java opts lcp entry settings args antarg + +x = endlocal() + +return rc + +_testenv_: procedure expose env ANT_HOME JAVA_HOME +ANT_HOME = value('ANT_HOME',,env) +if ANT_HOME = '' then return 0 +JAVA_HOME = value('JAVA_HOME',,env) +if JAVA_HOME = '' then return 0 +cp = translate(value('CLASSPATH',,env)) +if pos(translate(ANT_HOME), cp) = 0 then return 0 +if pos(translate(JAVA_HOME), cp) = 0 then return 0 +return 1 + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/23.12.07.02/ant/bin/antRun b/intermax/23.12.07.02/ant/bin/antRun new file mode 100755 index 0000000..baddd71 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/antRun @@ -0,0 +1,26 @@ +#!/bin/sh + +# +# Copyright 2001-2002,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# + +# Args: DIR command +cd "$1" +CMD="$2" +shift +shift + +exec "$CMD" "$@" diff --git a/intermax/23.12.07.02/ant/bin/antRun.bat b/intermax/23.12.07.02/ant/bin/antRun.bat new file mode 100755 index 0000000..aae98cc --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/antRun.bat @@ -0,0 +1,47 @@ +@echo off + +REM +REM Copyright 2001-2002,2004-2005 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +if "%OS%"=="Windows_NT" @setlocal +if "%OS%"=="WINNT" @setlocal + +if ""%1""=="""" goto runCommand + +rem Change drive and directory to %1 +if "%OS%"=="Windows_NT" cd /d ""%1"" +if not "%OS%"=="Windows_NT" cd ""%1"" +shift + +rem Slurp the command line arguments. This loop allows for an unlimited number +rem of agruments (up to the command line limit, anyway). +set ANT_RUN_CMD=%1 +if ""%1""=="""" goto runCommand +shift +:loop +if ""%1""=="""" goto runCommand +set ANT_RUN_CMD=%ANT_RUN_CMD% %1 +shift +goto loop + +:runCommand +rem echo %ANT_RUN_CMD% +%ANT_RUN_CMD% + +if "%OS%"=="Windows_NT" @endlocal +if "%OS%"=="WINNT" @endlocal + diff --git a/intermax/23.12.07.02/ant/bin/antRun.pl b/intermax/23.12.07.02/ant/bin/antRun.pl new file mode 100755 index 0000000..7cdd868 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/antRun.pl @@ -0,0 +1,65 @@ +#!/usr/bin/perl +# +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# antRun.pl +# +# wrapper script for invoking commands on a platform with Perl installed +# this is akin to antRun.bat, and antRun the SH script +# +# created: 2001-10-18 +# author: Jeff Tulley jtulley@novell.com +####################################################################### +#be fussy about variables +use strict; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info (currently unused) +my $debug=1; + +####################################################################### +# change drive and directory to "%1" +my $ANT_RUN_CMD = @ARGV[0]; + +# assign current run command to "%2" +chdir (@ARGV[0]) || die "Can't cd to $ARGV[0]: $!\n"; +if ($^O eq "NetWare") { + # There is a bug in Perl 5 on NetWare, where chdir does not + # do anything. On NetWare, the following path-prefixed form should + # always work. (afaict) + $ANT_RUN_CMD .= "/".@ARGV[1]; +} +else { + $ANT_RUN_CMD = @ARGV[1]; +} + +# dispose of the first two arguments, leaving only the command's args. +shift; +shift; + +# run the command +my $returnValue = system $ANT_RUN_CMD, @ARGV; +if ($returnValue eq 0) { + exit 0; +} +else { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; +} diff --git a/intermax/23.12.07.02/ant/bin/antenv.cmd b/intermax/23.12.07.02/ant/bin/antenv.cmd new file mode 100755 index 0000000..05efa85 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/antenv.cmd @@ -0,0 +1,99 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Ant environment +*/ + +'@echo off' +call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs" +call SysLoadFuncs + +/* Prepare the parameters for later use */ +parse arg argv +mode = '' +args = '' +opts = '' +cp = '' +lcp = '' + +do i = 1 to words(argv) + param = word(argv, i) + select + when param='-lcp' then mode = 'l' + when param='-cp' | param='-classpath' then mode = 'c' + when abbrev('-opts', param, 4) then mode = 'o' + when abbrev('-args', param, 4) then mode = 'a' + otherwise + select + when mode = 'a' then args = space(args param, 1) + when mode = 'c' then cp = space(cp param, 1) + when mode = 'l' then lcp = space(lcp param, 1) + when mode = 'o' then opts = space(opts param, 1) + otherwise + say 'Option' param 'ignored' + end + end +end + +env="OS2ENVIRONMENT" +antconf = _getenv_('antconf' 'antconf.cmd') +runrc = _getenv_('runrc') +interpret 'call "' || runrc || '"' '"' || antconf || '"' 'ETC' +ANT_HOME = value('ANT_HOME',,env) +JAVA_HOME = value('JAVA_HOME',,env) +classpath = value('CLASSPATH',,env) +classes = stream(JAVA_HOME || "\lib\classes.zip", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) +classes = stream(JAVA_HOME || "\lib\tools.jar", "C", "QUERY EXISTS") +if classes \= '' then classpath = prepend(classpath classes) + +classpath = prepend(classpath ANT_HOME || '\lib\ant-launcher.jar') +'SET CLASSPATH=' || classpath + +/* Setting classpathes, options and arguments */ +envset = _getenv_('envset') +if cp\='' then interpret 'call "' || envset || '"' '"; CLASSPATH"' '"' || cp || '"' +if lcp\='' then interpret 'call "' || envset || '"' '"; LOCALCLASSPATH"' '"' || lcp || '"' +if opts\='' then interpret 'call "' || envset || '"' '"-D ANT_OPTS"' '"' || opts || '"' +if args\='' then interpret 'call "' || envset || '"' '"ANT_ARGS"' '"' || args || '"' + +exit 0 + +addpath: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if substr(path, length(path)) = ';' then glue = '' +else glue = ';' +if pos(translate(elem), translate(path)) = 0 then path = path || glue || elem || ';' +return path + +prepend: procedure +parse arg path elem +if elem = '' then do + if path\='' & right(path, 1)\=';' then path = path || ';' + return path +end +if pos(translate(elem), translate(path)) = 0 then path = elem || ';' || path +return path + +_getenv_: procedure expose env +parse arg envar default +if default = '' then default = envar +var = value(translate(envar),,env) +if var = '' then var = default +return var diff --git a/intermax/23.12.07.02/ant/bin/complete-ant-cmd.pl b/intermax/23.12.07.02/ant/bin/complete-ant-cmd.pl new file mode 100755 index 0000000..20dd476 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/complete-ant-cmd.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl +# +# Copyright 2001,2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# A script to allow Bash or Z-Shell to complete an Ant command-line. +# +# To install for Bash 2.0 or better, add the following to ~/.bashrc: +# +# $ complete -C complete-ant-cmd ant build.sh +# +# To install for Z-Shell 2.5 or better, add the following to ~/.zshrc: +# +# function ant_complete () { +# local args_line args +# read -l args_line +# set -A args $args_line +# set -A reply $(COMP_LINE=$args_line complete-ant-cmd ${args[1]} $1) +# } +# compctl -K ant_complete ant build.sh +# +# @author Mike Williams + +my $cmdLine = $ENV{'COMP_LINE'}; +my $antCmd = $ARGV[0]; +my $word = $ARGV[1]; + +my @completions; +if ($word =~ /^-/) { + list( restrict( $word, getArguments() )); +} elsif ($cmdLine =~ /-(f|buildfile)\s+\S*$/) { + list( getBuildFiles($word) ); +} else { + list( restrict( $word, getTargets() )); +} + +exit(0); + +sub list { + for (@_) { + print "$_\n"; + } +} + +sub restrict { + my ($word, @completions) = @_; + grep( /^\Q$word\E/, @completions ); +} + +sub getArguments { + qw(-buildfile -debug -emacs -f -find -help -listener -logfile + -logger -projecthelp -quiet -verbose -version); +} + + +sub getBuildFiles { + my ($word) = @_; + grep( /\.xml$/, glob( "$word*" )); +} + +sub getTargets { + + # Look for build-file + my $buildFile = 'build.xml'; + if ($cmdLine =~ /-(f|buildfile)\s+(\S+)/) { + $buildFile = $2; + } + return () unless (-f $buildFile); + + # Run "ant -projecthelp" to list targets. Keep a cache of results in a + # cache-file. + my $cacheFile = $buildFile; + $cacheFile =~ s|(.*/)?(.*)|${1}.ant-targets-${2}|; + if ((!-e $cacheFile) || (-M $buildFile) < (-M $cacheFile)) { + open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n"; + open( HELP, "$antCmd -projecthelp -f '$buildFile'|" ) || return(); + my %targets; + while( ) { + if (/^\s+(\S+)/) { + $targets{$1}++; + } + } + my @targets = sort keys %targets; + for (@targets) { print CACHE "$_\n"; } + return @targets; + } + + # Read the target-cache + open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n"; + my @targets; + while () { + chop; + s/\r$//; # for Cygwin + push( @targets, $_ ); + } + close( CACHE ); + @targets; + +} + + + diff --git a/intermax/23.12.07.02/ant/bin/envset.cmd b/intermax/23.12.07.02/ant/bin/envset.cmd new file mode 100755 index 0000000..8fbd4dd --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/envset.cmd @@ -0,0 +1,130 @@ +/* + + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +SET environment variables +First optional parameter: + ; parameters are considered parts of a path variable, semicolons are + appended to each element if not already present + -D parameters are properties for Java or Makefile etc., -D will be + prepended and the parameters will be separated by a space + =D the same as above but equal sign is not required + , parameters should be comma separated in the environment variable + - parameters should be separated by the next parameter + Other values mean that the first parameter is missing and the environment + variable will be set to the space separated parameters + +Second parameter: name of the environment variable + +Next parameters: values +; implies that the equal sign is considered a part of the parameter and is +not interpreted + +-D requires parameters in the form name=value. If the equal sign is not found, +the parameters are changed to name=expanded_name + +Other options have optional equal sign. If it is found, only the part after +the equal sign will be oprionally expanded. + +If the parameter is the minus sign, the next parameter will not be expanded. +If the parameter is a single dot, it will be replaced with the value of the +environment variable as it existed before envset was invoked. + +For other parameters the batch looks for the environment variable with the +same name (in uppercase). If it is found, it forms the expanded_name. If +the environment variable with such a name does not exist, the expanded_name +will hold the parameter name without case conversion. +*/ + +parse arg mode envar args + +equal = 0 +sep = ' ' + +/* Parse command line parameters */ +select + when mode='-' then do + sep = envar + parse var args envar args + end + when mode=';' then do + sep = '' + equal = -1 + end + when mode='-D' then equal = 1 + when mode='=D' then mode = '-D' + when mode=',' then sep = ',' +otherwise + args = envar args + envar = mode + mode = '' +end + +env = 'OS2ENVIRONMENT' +envar = translate(envar) +orig = value(envar,,env) +newval = '' +expand = 1 + +/* for each parameter... */ +do i = 1 to words(args) + if expand > 0 & word(args, i) = '-' then expand = 0 + else call addval word(args, i) +end + +/* Optionally enclose path variable by quotes */ +if mode = ';' & pos(' ', newval) > 0 then newval = '"' || newval || '"' + +/* Set the new value, 'SET' cannot be used since it does not allow '=' */ +x = value(envar, newval, env) +exit 0 + +addval: procedure expose sep equal orig expand newval mode env +parse arg var + +if var = '.' then expvar = orig +else do + if equal >= 0 then do + parse var var name '=' val + if val = '' then var = name + else var = val + end + if expand = 0 then expvar = var + else expvar = value(translate(var),,env) + if expvar = '' then expvar = var + if equal >= 0 then do + if val = '' then do + parse var expvar key '=' val + if val <> '' then name = key + else do + if equal > 0 then val = key + else name = key + end + end + else val = expvar + if pos(' ', val) > 0 | pos('=', val) > 0 then val = '"' || val || '"' + if val = '' then expvar = name + else expvar = name || '=' || val + end + if mode = '-D' then expvar = '-D' || expvar + if mode = ';' then do + if right(expvar, 1) <> ';' then expvar = expvar || ';' + end +end + +if newval = '' then newval = expvar +else newval = newval || sep || expvar +expand = 1 +return diff --git a/intermax/23.12.07.02/ant/bin/lcp.bat b/intermax/23.12.07.02/ant/bin/lcp.bat new file mode 100755 index 0000000..6a1f679 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/lcp.bat @@ -0,0 +1,30 @@ +REM +REM Copyright 2001-2004 The Apache Software Foundation +REM +REM Licensed under the Apache License, Version 2.0 (the "License"); +REM you may not use this file except in compliance with the License. +REM You may obtain a copy of the License at +REM +REM http://www.apache.org/licenses/LICENSE-2.0 +REM +REM Unless required by applicable law or agreed to in writing, software +REM distributed under the License is distributed on an "AS IS" BASIS, +REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +REM See the License for the specific language governing permissions and +REM limitations under the License. +REM +REM + +set _CLASSPATHCOMPONENT=%1 +if ""%1""=="""" goto gotAllArgs +shift + +:argCheck +if ""%1""=="""" goto gotAllArgs +set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 +shift +goto argCheck + +:gotAllArgs +set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% + diff --git a/intermax/23.12.07.02/ant/bin/runant.pl b/intermax/23.12.07.02/ant/bin/runant.pl new file mode 100755 index 0000000..eca4708 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/runant.pl @@ -0,0 +1,152 @@ +#!/usr/bin/perl +# +# Copyright 2000-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +####################################################################### +# +# runant.pl +# +# wrapper script for invoking ant in a platform with Perl installed +# this may include cgi-bin invocation, which is considered somewhat daft. +# (slo: that should be a separate file which can be derived from this +# and returns the XML formatted output) +# +# the code is not totally portable due to classpath and directory splitting +# issues. oops. (NB, use File::Spec::Functions will help and the code is +# structured for the catfile() call, but because of perl version funnies +# the code is not included. +# +# created: 2000-8-24 +# author: Steve Loughran steve_l@sourceforge.net +####################################################################### +# +# Assumptions: +# +# - the "java" executable/script is on the command path +# - ANT_HOME has been set +# - target platform uses ":" as classpath separator or perl indicates it is dos/win32 +# - target platform uses "/" as directory separator. + +#be fussy about variables +use strict; + +#platform specifics (disabled) +#use File::Spec::Functions; + +#turn warnings on during dev; generates a few spurious uninitialised var access warnings +#use warnings; + +#and set $debug to 1 to turn on trace info +my $debug=1; + +####################################################################### +# +# check to make sure environment is setup +# + +my $HOME = $ENV{ANT_HOME}; +if ($HOME eq "") + { + die "\n\nANT_HOME *MUST* be set!\n\n"; + } + +my $JAVACMD = $ENV{JAVACMD}; +$JAVACMD = "java" if $JAVACMD eq ""; + +my $onnetware = 0; +if ($^O eq "NetWare") +{ + $onnetware = 1; +} + +my $oncygwin = ($^O eq "cygwin"); + +#ISSUE: what java wants to split up classpath varies from platform to platform +#and perl is not too hot at hinting which box it is on. +#here I assume ":" 'cept on win32, dos, and netware. Add extra tests here as needed. +my $s=":"; +if(($^O eq "MSWin32") || ($^O eq "dos") || ($^O eq "cygwin") || + ($onnetware == 1)) + { + $s=";"; + } + +#build up standard classpath +my $localpath = "$HOME/lib/ant-launcher.jar"; +#set JVM options and Ant arguments, if any +my @ANT_OPTS=split(" ", $ENV{ANT_OPTS}); +my @ANT_ARGS=split(" ", $ENV{ANT_ARGS}); + +#jikes +if($ENV{JIKESPATH} ne "") + { + push @ANT_OPTS, "-Djikes.class.path=$ENV{JIKESPATH}"; + } + +#construct arguments to java +my @ARGS; +push @ARGS, @ANT_OPTS; + +my $CYGHOME = ""; + +my $classpath=$ENV{CLASSPATH}; +if ($oncygwin == 1) { + $localpath = `cygpath --path --windows $localpath`; + chomp ($localpath); + if (! $classpath eq "") + { + $classpath = `cygpath --path --windows "$classpath"`; + chomp ($classpath); + } + $HOME = `cygpath --path --windows $HOME`; + chomp ($HOME); + $CYGHOME = `cygpath --path --windows $ENV{HOME}`; + chomp ($CYGHOME); +} +push @ARGS, "-classpath", "$localpath"; +push @ARGS, "-Dant.home=$HOME"; +if ( ! $CYGHOME eq "" ) +{ + push @ARGS, "-Dcygwin.user.home=\"$CYGHOME\"" +} +push @ARGS, "org.apache.tools.ant.launch.Launcher", @ANT_ARGS; +push @ARGS, @ARGV; +if (! $classpath eq "") +{ + if ($onnetware == 1) + { + # make classpath literally $CLASSPATH + # this is to avoid pushing us over the 512 character limit + # even skip the ; - that is already in $localpath + push @ARGS, "-lib", "\$CLASSPATH"; + } + else + { + push @ARGS, "-lib", "$classpath"; + } +} +print "\n $JAVACMD @ARGS\n\n" if ($debug); + +my $returnValue = system $JAVACMD, @ARGS; +if ($returnValue eq 0) + { + exit 0; + } +else + { + # only 0 and 1 are widely recognized as exit values + # so change the exit value to 1 + exit 1; + } diff --git a/intermax/23.12.07.02/ant/bin/runant.py b/intermax/23.12.07.02/ant/bin/runant.py new file mode 100755 index 0000000..c7b53b6 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/runant.py @@ -0,0 +1,100 @@ +#!/usr/bin/python +# Copyright 2001,2003-2004 The Apache Software Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +""" + + runant.py + + This script is a translation of the runant.pl written by Steve Loughran. + It runs ant with/out arguments, it should be quite portable (thanks to + the python os library) + This script has been tested with Python2.0/Win2K + + created: 2001-04-11 + author: Pierre Dittgen pierre.dittgen@criltelecom.com + + Assumptions: + + - the "java" executable/script is on the command path +""" +import os, os.path, string, sys + +# Change it to 1 to get extra debug information +debug = 0 + +####################################################################### + +# If ANT_HOME is not set default to script's parent directory +if os.environ.has_key('ANT_HOME'): + ANT_HOME = os.environ['ANT_HOME'] +else: + ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) + +# set ANT_LIB location +ANT_LIB = os.path.join(ANT_HOME, 'lib') + +# set JAVACMD (check variables JAVACMD and JAVA_HOME) +JAVACMD = None +if not os.environ.has_key('JAVACMD'): + if os.environ.has_key('JAVA_HOME'): + if not os.path.exists(os.environ['JAVA_HOME']): + print "Warning: JAVA_HOME is not defined correctly." + else: + JAVACMD = os.path.join(os.environ['JAVA_HOME'], 'bin', 'java') + else: + print "Warning: JAVA_HOME not set." +else: + JAVACMD = os.environ['JAVACMD'] +if not JAVACMD: + JAVACMD = 'java' + +launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar') +if not os.path.exists(launcher_jar): + print 'Unable to locate ant-launcher.jar. Expected to find it in %s' % \ + ANT_LIB + +# Build up standard classpath (LOCALCLASSPATH) +LOCALCLASSPATH = launcher_jar +if os.environ.has_key('LOCALCLASSPATH'): + LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH'] + +ANT_OPTS = "" +if os.environ.has_key('ANT_OPTS'): + ANT_OPTS = os.environ['ANT_OPTS'] + +OPTS = "" +if os.environ.has_key('JIKESPATH'): + OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH'] + +ANT_ARGS = "" +if os.environ.has_key('ANT_ARGS'): + ANT_ARGS = os.environ['ANT_ARGS'] + +CLASSPATH = "" +if os.environ.has_key('CLASSPATH'): + CLASSPATH = os.environ['CLASSPATH'] + +# Builds the commandline +cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \ + 'org.apache.tools.ant.launch.Launcher %s -lib %s %s') \ + % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \ + CLASSPATH, string.join(sys.argv[1:], ' ')) + +if debug: + print '\n%s\n\n' % (cmdline) + +# Run the biniou! +os.system(cmdline) diff --git a/intermax/23.12.07.02/ant/bin/runrc.cmd b/intermax/23.12.07.02/ant/bin/runrc.cmd new file mode 100755 index 0000000..acdf724 --- /dev/null +++ b/intermax/23.12.07.02/ant/bin/runrc.cmd @@ -0,0 +1,59 @@ +/* + Copyright 2003-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Run RC file, name is in the first arg, second arg is either PATH + ENV or -r or nothing +*/ + +parse arg name path rest + +if name = '' then do + say 'RC file name is missing' + exit 1 +end + +if rest \= '' then do + say 'Too many parameters' + exit 1 +end + +call runit name path +exit 0 + +runit: procedure +parse arg name path dir + +if path \= '' & path \= '-r' then do + dir = value(translate(path),,'OS2ENVIRONMENT') + if dir = '' then return + dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */ +end + +if dir = '' then dir = directory() + +if path = '-r' then do /* recursive call */ + subdir = filespec('path', dir) + if subdir \= '\' then do + subdir = left(subdir, length(subdir)-1) + call runit name path filespec('drive', dir) || subdir + end +end + +/* Look for the file and run it */ +if right(dir, 1) \= '\' then dir = dir || '\' +rcfile = stream(dir || name, 'c', 'query exists') +if rcfile \= '' then interpret 'call "' || rcfile || '"' + +return diff --git a/intermax/23.12.07.02/ant/lib/README b/intermax/23.12.07.02/ant/lib/README new file mode 100755 index 0000000..38fa1fa --- /dev/null +++ b/intermax/23.12.07.02/ant/lib/README @@ -0,0 +1,14 @@ +Please refer to the Ant manual under Installing Ant / Library +Dependencies for a list of the jar requirements for various optional +tasks and features. + +This directory contains xercesImpl.jar from the 2.6.2 release of +Apache Xerces. For more information or newer releases see +. See the file LICENSE.xerces for +the terms of distribution. + +It also contains xml-apis.jar from the 2.6.2 release of Apache Xerces. +For more information or newer releases see +. See the files LICENSE.dom and +LICENSE.sax for the terms of distribution. + diff --git a/intermax/23.12.07.02/ant/lib/ant-antlr.jar b/intermax/23.12.07.02/ant/lib/ant-antlr.jar new file mode 100755 index 0000000..167ac03 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-antlr.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-apache-bcel.jar b/intermax/23.12.07.02/ant/lib/ant-apache-bcel.jar new file mode 100755 index 0000000..faa7e9a Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-apache-bcel.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-apache-bsf.jar b/intermax/23.12.07.02/ant/lib/ant-apache-bsf.jar new file mode 100755 index 0000000..c2dca5e Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-apache-bsf.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-apache-oro.jar b/intermax/23.12.07.02/ant/lib/ant-apache-oro.jar new file mode 100755 index 0000000..cc25252 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-apache-oro.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-apache-regexp.jar b/intermax/23.12.07.02/ant/lib/ant-apache-regexp.jar new file mode 100755 index 0000000..08b8ec7 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-apache-regexp.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-apache-resolver.jar b/intermax/23.12.07.02/ant/lib/ant-apache-resolver.jar new file mode 100755 index 0000000..7f06173 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-apache-resolver.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-commons-logging.jar b/intermax/23.12.07.02/ant/lib/ant-commons-logging.jar new file mode 100755 index 0000000..8967cb2 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-commons-logging.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-commons-net.jar b/intermax/23.12.07.02/ant/lib/ant-commons-net.jar new file mode 100755 index 0000000..7c1d881 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-commons-net.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-icontract.jar b/intermax/23.12.07.02/ant/lib/ant-icontract.jar new file mode 100755 index 0000000..c30513d Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-icontract.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-jai.jar b/intermax/23.12.07.02/ant/lib/ant-jai.jar new file mode 100755 index 0000000..3b14cb3 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-jai.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-javamail.jar b/intermax/23.12.07.02/ant/lib/ant-javamail.jar new file mode 100755 index 0000000..10ca5ec Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-javamail.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-jdepend.jar b/intermax/23.12.07.02/ant/lib/ant-jdepend.jar new file mode 100755 index 0000000..bbd20b8 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-jdepend.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-jmf.jar b/intermax/23.12.07.02/ant/lib/ant-jmf.jar new file mode 100755 index 0000000..a293dfc Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-jmf.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-jsch.jar b/intermax/23.12.07.02/ant/lib/ant-jsch.jar new file mode 100755 index 0000000..e8fdabd Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-jsch.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-junit.jar b/intermax/23.12.07.02/ant/lib/ant-junit.jar new file mode 100755 index 0000000..5ee4f7f Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-junit.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-launcher.jar b/intermax/23.12.07.02/ant/lib/ant-launcher.jar new file mode 100755 index 0000000..1a71612 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-launcher.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-netrexx.jar b/intermax/23.12.07.02/ant/lib/ant-netrexx.jar new file mode 100755 index 0000000..f0bd1d8 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-netrexx.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-nodeps.jar b/intermax/23.12.07.02/ant/lib/ant-nodeps.jar new file mode 100755 index 0000000..3e0e5d4 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-nodeps.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-starteam.jar b/intermax/23.12.07.02/ant/lib/ant-starteam.jar new file mode 100755 index 0000000..5848616 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-starteam.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-stylebook.jar b/intermax/23.12.07.02/ant/lib/ant-stylebook.jar new file mode 100755 index 0000000..c2e174e Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-stylebook.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-swing.jar b/intermax/23.12.07.02/ant/lib/ant-swing.jar new file mode 100755 index 0000000..c85ec08 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-swing.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-trax.jar b/intermax/23.12.07.02/ant/lib/ant-trax.jar new file mode 100755 index 0000000..f4e1540 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-trax.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-vaj.jar b/intermax/23.12.07.02/ant/lib/ant-vaj.jar new file mode 100755 index 0000000..f79e4de Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-vaj.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-weblogic.jar b/intermax/23.12.07.02/ant/lib/ant-weblogic.jar new file mode 100755 index 0000000..ca0b4c7 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-weblogic.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-xalan1.jar b/intermax/23.12.07.02/ant/lib/ant-xalan1.jar new file mode 100755 index 0000000..433ca68 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-xalan1.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant-xslp.jar b/intermax/23.12.07.02/ant/lib/ant-xslp.jar new file mode 100755 index 0000000..f69f4b2 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant-xslp.jar differ diff --git a/intermax/23.12.07.02/ant/lib/ant.jar b/intermax/23.12.07.02/ant/lib/ant.jar new file mode 100755 index 0000000..3beb3b8 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/ant.jar differ diff --git a/intermax/23.12.07.02/ant/lib/aspectjtools.jar b/intermax/23.12.07.02/ant/lib/aspectjtools.jar new file mode 100755 index 0000000..d47c6e7 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/aspectjtools.jar differ diff --git a/intermax/23.12.07.02/ant/lib/aspectjweaver.jar b/intermax/23.12.07.02/ant/lib/aspectjweaver.jar new file mode 100755 index 0000000..f38b151 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/aspectjweaver.jar differ diff --git a/intermax/23.12.07.02/ant/lib/xercesImpl.jar b/intermax/23.12.07.02/ant/lib/xercesImpl.jar new file mode 100755 index 0000000..f0fb0e8 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/xercesImpl.jar differ diff --git a/intermax/23.12.07.02/ant/lib/xml-apis.jar b/intermax/23.12.07.02/ant/lib/xml-apis.jar new file mode 100755 index 0000000..2dd8377 Binary files /dev/null and b/intermax/23.12.07.02/ant/lib/xml-apis.jar differ diff --git a/intermax/23.12.07.02/jspd/bin/imxctl.bat b/intermax/23.12.07.02/jspd/bin/imxctl.bat new file mode 100755 index 0000000..d0e1d9d --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/imxctl.bat @@ -0,0 +1,68 @@ +@echo off + +rem CURPATH +rem ModuleName +rem param + +set CURPATH=%cd% +set argc=0 + +:ModuleSelect +cls +echo Input Module (osm ^| txn ^| uts ^| dbm) +set /p param=-^> + +IF %param% == osm ( + goto moduleSet +) +IF %param% == txn ( + goto moduleSet +) +IF %param% == uts ( + goto moduleSet +) +IF %param% == dbm ( + goto moduleSet +) ELSE ( + echo Wrong ModuleName. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto ModuleSelect +) + +:moduleSet +set ModuleName=imx%param% + +:OptionSelect +cls +echo Input Option (stop) +set /p param=-^> + +IF %param% == stop ( + cd ../data/agent + goto stop +) ELSE ( + echo Wrong Option Command. Exit program? (Y/N^) + set /p param=-^> + IF %param% == Y goto end + IF %param% == y goto end + goto OptionSelect +) + +:stop +IF exist %ModuleName% ( + ren %ModuleName% %ModuleName%.stoped + echo %ModuleName% stop! + goto end +) ELSE ( + echo %ModuleName% is not exist! + goto end +) + + + +:end +cd %CURPATH% +pause + diff --git a/intermax/23.12.07.02/jspd/bin/imxctl.sh b/intermax/23.12.07.02/jspd/bin/imxctl.sh new file mode 100755 index 0000000..fe8b935 --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/imxctl.sh @@ -0,0 +1,95 @@ +#!/bin/sh + + + +Usage() +{ + echo "" + echo "$0 [option ...]" + echo " --stop=[osm|txn|uts] Input osm, txn, and uts, separated by commas." + echo " If there is no value input, the entire process-" + echo " is terminated." + echo " (ex. --stop or --stop=txn,uts)" + echo "" + + exit 1 +} + + + + + +BASE_DIR=`pwd` + +if [ -z "${INTERMAX_HOME}" ];then + if [ ! -f "${BASE_DIR}/imxctl.sh" ];then + echo "Please run it from imxctl.sh file location." + exit 2 + fi + cd .. + INTERMAX_HOME=`pwd` +fi + +cd ${INTERMAX_HOME} +echo "INTERMAX_HOME[${INTERMAX_HOME}]" + + +if [ -z "$1" ];then + Usage +fi + + +for i in $@ +do + echo "${i}" + + case "$i" in + --stop=*) + STOP_LIST=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --stop) + STOP_LIST="osm,txn,uts" + ;; + + *) + Usage + ;; + esac + +done + +if [ -n "${STOP_LIST}" ];then + + STOP_LIST=`echo "${STOP_LIST}" | sed 's/,/ /g'` + # STOP_LIST=`echo "${STOP_LIST}" | awk -F',' '{print $1" "$2" "$3}'` + + # 丮 ˻Ѵ. + if [ ! -d "${INTERMAX_HOME}/data/agent" ];then + echo "pid directory is not exist.[${INTERMAX_HOME}/data/agent]" + Usage + fi + + # Check imx list + for STOP_IMX in ${STOP_LIST} + do + if [ "${STOP_IMX}" != "osm" ] && [ "${STOP_IMX}" != "txn" ] && [ "${STOP_IMX}" != "uts" ];then + echo "imx name is wrong." + Usage + fi + done + + # Stop imx + for STOP_IMX in ${STOP_LIST} + do + if [ -f "${INTERMAX_HOME}/data/agent/imx${STOP_IMX}" ];then + echo "--> imx${STOP_IMX} stop!" + # echo "mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped" + mv ${INTERMAX_HOME}/data/agent/imx${STOP_IMX} ${INTERMAX_HOME}/data/agent/imx${STOP_IMX}.stopped + else + echo "--> imx${STOP_IMX} is not running" + fi + done + +fi + +exit 0 diff --git a/intermax/23.12.07.02/jspd/bin/imxtxnd.bat b/intermax/23.12.07.02/jspd/bin/imxtxnd.bat new file mode 100755 index 0000000..b1c2e31 --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/imxtxnd.bat @@ -0,0 +1,39 @@ +@echo off + +setlocal + +pushd "%~dp0" + +if "%INTERMAX_HOME%" == "" ( + echo please check INTERMAX_HOME. + exit /b 1 +) + +if "%1" == "" ( + echo please check option[--install^|--uninstall]. + exit /b 1 +) + + + +set MODULE_DIR=%INTERMAX_HOME%\lib\imx +set MODULE_NAME=imxtxn +set SERVICE_NAME=IMXTXN + +set EXEC_NAME=%MODULE_NAME%_win_64.exe + +set XMSVCMGR=%INTERMAX_HOME%\tools\XmSvcMgr\XmSvcMgr_x64.exe + + +if "%1" == "--install" ( + %XMSVCMGR% -i -p "%MODULE_DIR%" -f "%EXEC_NAME%" -a "-H %INTERMAX_HOME%" -n "%SERVICE_NAME%" -s "Intermax %MODULE_NAME%" +) + +if "%1" == "--uninstall" ( + %XMSVCMGR% -u -f "%EXEC_NAME%" -n "%MODULE_NAME%" +) + +endlocal + +@pause + diff --git a/intermax/23.12.07.02/jspd/bin/imxtxnd.sh b/intermax/23.12.07.02/jspd/bin/imxtxnd.sh new file mode 100755 index 0000000..8c730c7 --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/imxtxnd.sh @@ -0,0 +1,415 @@ +#!/bin/sh + +# set log path(default) +# WORKING_DIRECOTYR=`pwd` +# LOG_PATH="${WORKING_DIRECOTYR}/temp_imxtxnd.log" + +# $1: log filename, $2: log limit size +func_check_log_file() +{ + LOG_CHK_SIZE=1048576 + if [ -n "$2" ];then + LOG_CHK_SIZE=$2 + fi + + if [ -f "$1" ];then + + LOG_SIZE=`ls -la $1 | awk -F' ' '{print $5}'` + if [ $? -eq 0 ]; then + + if [ ${LOG_SIZE} -gt ${LOG_CHK_SIZE} ]; then + if [ -f $1.bak ];then + rm -rf $1.bak + fi + + mv $1 $1.bak +# rm -rf $1 +# echo "log size is over. remove log file.[size:${LOG_SIZE},file:$1]" + fi + + fi + + fi + +} + +# $1: log filename $2: log string +func_log() +{ + CUR_DATE=`date +%Y%m%d.%H%M%S` + + # nfs ȯ濡 Ѱ ġ Ͽ ٸ + # imxtxnd ׳ ǹ. + + if [ -n "$1" ]; + then + func_check_log_file "$1" 10240 + echo "${CUR_DATE}[${RUN_MODE}] $2" >> "$1" + else + echo "${CUR_DATE}[${RUN_MODE}] $2" + fi +} + +FUNC_RESULT="" + +# $1: pid, $2: check process name +func_is_running_process() +{ + if [ -z "$1" ]; + then + func_log "" "pid is wrong." + FUNC_RESULT="false" + return + fi + + PROC_NAME=`ps -p $1 -o args= | awk -F' ' '{print $1}'` + + func_log "" "EXEC_PID[$1],PROC_NAME[${PROC_NAME}]" + if [ "${PROC_NAME}" = "$2" ]; + then + FUNC_RESULT="true" + else + FUNC_RESULT="false" + fi +} + +# $1: exit code, $2: message +func_usage_exit() +{ + if [ -n "$2" ]; + then + echo "$2" + fi + + echo "imxtxnd [options]" + echo "options:" + echo " --[install|uninstall|continue|daemon]" + echo " install: Start imxtxn as a new daemon." + echo " uninstall: Start Terminate running imxtxn." + echo " continue: Continuing from imxtxn already running." + echo " daemon: Starts as a standalone daemon.(default)" + echo " --set-home=[directory] Set the InterMax home directory." + echo " (default:current direcotry)" + echo " --bit=[32|64] Set 32 or 64 bit.(default:64)" + echo "" + + exit $1 +} + + +########################################## +# option +SELF_PROC_PATH="$0" +if [ -n "$1" ]; +then + + for i in $@ + do + + echo "$i" + + case "$i" in + --install) + RUN_MODE="install" + ;; + --uninstall) + RUN_MODE="uninstall" + ;; + --continue) + RUN_MODE="continue" + ;; + --daemon) + RUN_MODE="daemon" + ;; + --set-home=*) + ENV_INTERMAX_HOME=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --bit=*) + ENV_BIT=`echo "$i" | awk -F'=' '{print $2}'` + ;; + --help) + func_usage_exit 0 + ;; + *) + func_usage_exit 1 "option is wrong." + ;; + esac + done +fi + +########################################## + + +########################################## +# os +# linux ׽Ʈ غ +OS_NAME=`uname -s` +case $OS_NAME in + "HP-UX" ) + ARCH=`uname -m` + if [ ! "${ARCH}" = "ia64" ]; + then + func_log "${LOG_PATH}" "${ARCH} is not support." + exit 1 + fi + ENV_OS_TYPE=hpia + UNIX95=1 + ;; + "SunOS" ) + ENV_OS_TYPE=sun + ;; + "AIX" ) + ENV_OS_TYPE=aix + ;; + "Linux" ) + ENV_OS_TYPE=linux + # ENV_OS_TYPE=sun + ;; + * ) + func_log "${LOG_PATH}" "Unkown OS Name[$OS_NAME]" + exit 1 + ;; +esac + +########################################## + +########################################## +# set default bit +if [ "${ENV_BIT}" = "" ]; +then + # default 64 bit + ENV_BIT=64 +fi +########################################## + +########################################## +# set default run mode +if [ "${RUN_MODE}" = "" ]; +then + # default 64 bit + RUN_MODE="daemon" +fi +########################################## + + +########################################## +# set intermax home directory +# 1. input option +# 2. environment INTERMAX_HOME +# 3. current directory + +if [ ! "${ENV_INTERMAX_HOME}" = "" ]; +then + INTERMAX_HOME="${ENV_INTERMAX_HOME}" + export INTERMAX_HOME +fi + +if [ "${INTERMAX_HOME}" = "" ]; +then + # set current direcotry base + CUR_DIR=`pwd` + cd .. + INTERMAX_HOME=`pwd` + export INTERMAX_HOME + cd ${CUR_DIR} +fi +########################################## + + + +########################################## +# check intermax home directory +if [ ! -d ${INTERMAX_HOME}/lib/imx ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +# ̰ ؾ ϳ.. ϴ ó +if [ ! -d ${INTERMAX_HOME}/data/agent ]; +then + func_log "${LOG_PATH}" "InterMax Home Directory is worng.[${INTERMAX_HOME}]" + exit 1 +fi + +########################################## + + + +########################################## +# reset log path & chagne directory to InterMax home + +# cd ${INTERMAX_HOME} +func_log "${LOG_PATH}" "InterMax Home Directory [${INTERMAX_HOME}]" + +# α׸ ȭ鿡 ϵ Ѵ. +LOG_PATH="${INTERMAX_HOME}/log/imxtxnd.log" + +########################################## + +########################################## +# set execute process path + +EXEC_PROCESS="${INTERMAX_HOME}/lib/imx/imxtxn" +# echo "execute process path[${EXEC_PROCESS}]" +func_log "${LOG_PATH}" "execute process path[${EXEC_PROCESS}]" + +PROC_PID_PATH=${INTERMAX_HOME}/data/agent/imxtxn +func_log "${LOG_PATH}" "PROC_PID_PATH[$PROC_PID_PATH]" +########################################## + +########################################## +# copy imxtxn(if not exist) +if [ ! -f ${EXEC_PROCESS} ]; +then + cp ${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} ${EXEC_PROCESS} + if [ ! "$?" = "0" ]; + then + func_log "${LOG_PATH}" "${INTERMAX_HOME}/lib/imx/imxtxn_${ENV_OS_TYPE}_${ENV_BIT} is not exist." + exit 3 + fi +fi +########################################## + +########################################## +# check config + +# test command(0 or 1) +# sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' cfg/agent/imx.prop | awk -F'=' '{if($2=="1") exit(0); else exit(1);}'; echo "$?" +CMD_RESULT=`sed -n '/ENABLE_TXN_STANDALONE=\(.*\)/p' ${INTERMAX_HOME}/cfg/agent/imx.prop` +if [ ! "$?" = "0" ]; +then + echo "check please - imx config file(imx.prop)" + exit 1 +fi + +CFG_ENABLE_TXN_STANDALONE=`echo "${CMD_RESULT}" | awk -F'=' '{print $2}'` +if [ ! "${CFG_ENABLE_TXN_STANDALONE}" = "1" ]; +then + echo "check please - ENABLE_TXN_STANDALONE option in imx.prop(value:${CFG_ENABLE_TXN_STANDALONE})" + exit 1 +fi + +echo "ENABLE_TXN_STANDALONE config checked." +########################################## + +########################################## +# run process + +# stop mode INTERMAX_HOME ʿϿ ⿡ install, uninstall óѴ. +case ${RUN_MODE} in +"install") + if [ -f "${PROC_PID_PATH}" ]; + then + func_is_running_process \ + `cat ${PROC_PID_PATH}` \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "true" ]; + then + echo "imxtxnd - imxtxn is already running." + echo "imxtxnd - Rerun imxtxnd with run mode \"continue\"." + func_log "" "imxtxnd - imxtxn is already running." + func_log "" "imxtxnd - 'imxtxnd --stop' or delete '${INTERMAX_HOME}/data/agent/imxtxnd.pid'" + exit 1 + fi + fi + + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - installed[$!]" + func_log "${LOG_PATH}" "imxtxnd - installed[$!]" + + exit 0 + ;; + +"continue") + TEMP_STR="" + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + TEMP_PID=`cat ${INTERMAX_HOME}/data/agent/imxtxnd.pid` + TEMP_STR=`ps -p ${TEMP_PID} | grep imxtxnd` + fi + + if [ -n "${TEMP_STR}" ]; + then + func_log "" "${TEMP_STR}" + func_log "" "imxtxnd - imxtxnd is not running." + exit 1 + fi + + # imxtxnd ¿ imxtxn + # imxtxn ״ Ѵ. + nohup ${SELF_PROC_PATH} --daemon --set-home=${INTERMAX_HOME} 1>/dev/null 2>&1 & + echo "$!" > ${INTERMAX_HOME}/data/agent/imxtxnd.pid + + echo "imxtxnd - continue[$!]" + func_log "${LOG_PATH}" "imxtxnd - continue[$!]" + + exit 0 + ;; + +"uninstall") + if [ -f "${INTERMAX_HOME}/data/agent/imxtxnd.pid" ]; + then + rm -rf ${INTERMAX_HOME}/data/agent/imxtxnd.pid + fi + + if [ -f "${PROC_PID_PATH}" ]; + then + rm -rf ${PROC_PID_PATH} + func_log "${LOG_PATH}" "imxtxnd - uninstall" + else + func_log "${LOG_PATH}" "imxtxnd - imxtxn is not running." + fi + exit 0 + ;; +"daemon") + func_log "${LOG_PATH}" "imxtxnd daemon" + ;; +esac +########################################## + + + + +########################################## +# run imxtxn +if [ ! -f "${PROC_PID_PATH}" ]; +then + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + sleep 3 +fi + +if [ ! -f "${PROC_PID_PATH}" ]; +then + func_log "${LOG_PATH}" "execute process has failed.[${EXEC_PROCESS}]" + exit 4 +fi + +PROC_NAME="" +while [ -f "${PROC_PID_PATH}" ] +do + echo "PROC_PID_PATH[${PROC_PID_PATH}][$EXEC_PROCESS]" + PROC_PID=`cat ${PROC_PID_PATH}` + echo "PROC_PID[${PROC_PID}]" + + func_is_running_process \ + "${PROC_PID}" \ + "${EXEC_PROCESS}" + if [ "${FUNC_RESULT}" = "false" ]; + then + func_log "${LOG_PATH}" "process is not running." + # run process + ${EXEC_PROCESS} -D + func_log "${LOG_PATH}" "execute process[$EXEC_PROCESS]" + fi + + sleep 3 + +done +########################################## + + +func_log "${LOG_PATH}" "imxtxnd end" diff --git a/intermax/23.12.07.02/jspd/bin/launcher.bat b/intermax/23.12.07.02/jspd/bin/launcher.bat new file mode 100755 index 0000000..5950a87 --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/launcher.bat @@ -0,0 +1,17 @@ +rem @echo off + +pushd "%~dp0" +set CURRENTDIR=%cd% +cd ..\ +set JSPD_HOME=%cd% + +set JAVA_HOME=%JAVA_HOME% + +set JAVA_OPTS=-Djspd.home=%JSPD_HOME% +set JAVA_OPTS=%JAVA_OPTS% -Djspd.jar=%JSPD_HOME%\lib\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd.jar=%JSPD_HOME%\lib\patch\jspd.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-common.jar=%JSPD_HOME%\lib\patch\jspd-common.jar +set JAVA_OPTS=%JAVA_OPTS% -Dpatch.jspd-pool.jar=%JSPD_HOME%\lib\patch\jspd-pool.jar +cd %CURRENTDIR% + +"%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%JAVA_HOME%\lib\tools.jar;%JSPD_HOME%\lib\libs\*;%JSPD_HOME%\lib\jspd-launcher.jar" com.exem.jspd.launcher.Main %1 %2 %3 diff --git a/intermax/23.12.07.02/jspd/bin/launcher.sh b/intermax/23.12.07.02/jspd/bin/launcher.sh new file mode 100755 index 0000000..9d35da4 --- /dev/null +++ b/intermax/23.12.07.02/jspd/bin/launcher.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +JAVA_HOME=$JAVA_HOME +cd ../ +JSPD_HOME=`pwd` + +JAVA_OPTS="-Djspd.home=$JSPD_HOME" +JAVA_OPTS="$JAVA_OPTS -Djspd.jar=$JSPD_HOME/lib/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd.jar=$JSPD_HOME/lib/patch/jspd.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-common.jar=$JSPD_HOME/lib/patch/jspd-common.jar" +JAVA_OPTS="$JAVA_OPTS -Dpatch.jspd-pool.jar=$JSPD_HOME/lib/patch/jspd-pool.jar" + +$JAVA_HOME/bin/java $JAVA_OPTS -classpath $JAVA_HOME/lib/tools.jar:$JSPD_HOME/lib/jspd-launcher.jar:$JSPD_HOME/lib/libs/* com.exem.jspd.launcher.Main $1 $2 $3 diff --git a/intermax/23.12.07.02/jspd/build-ext/build.bat b/intermax/23.12.07.02/jspd/build-ext/build.bat new file mode 100755 index 0000000..2e99da6 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/build.bat @@ -0,0 +1,6 @@ +set JAVA_HOME= +set JAVA_VERSION= +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant -DJAVA_HOME="%JAVA_HOME%" -DJAVA_VERSION="%JAVA_VERSION%" %1 diff --git a/intermax/23.12.07.02/jspd/build-ext/build.sh b/intermax/23.12.07.02/jspd/build-ext/build.sh new file mode 100755 index 0000000..354fb8e --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/build.sh @@ -0,0 +1,7 @@ +export JAVA_HOME= +export JAVA_VERSION= +export ANT_HOME=../../ant +export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$PATH + +ant -DJAVA_HOME="$JAVA_HOME" -DJAVA_VERSION="$JAVA_VERSION" $1 + diff --git a/intermax/23.12.07.02/jspd/build-ext/build.xml b/intermax/23.12.07.02/jspd/build-ext/build.xml new file mode 100755 index 0000000..618d02c --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/23.12.07.02/jspd/build-ext/src/build.bat b/intermax/23.12.07.02/jspd/build-ext/src/build.bat new file mode 100755 index 0000000..a8735e0 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/build.bat @@ -0,0 +1,5 @@ +set JAVA_HOME=C:\Program Files (x86)\java\jdk1.6.0_03 +set ANT_HOME=..\..\ant +set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin + +ant %1 diff --git a/intermax/23.12.07.02/jspd/build-ext/src/build.xml b/intermax/23.12.07.02/jspd/build-ext/src/build.xml new file mode 100755 index 0000000..b640084 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/build.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java new file mode 100755 index 0000000..ff6634e --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_HTTP.java @@ -0,0 +1,52 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_HTTP implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("HTTP", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + XmCommon.xstart(info); + String id = (String) obj[obj.length - 1]; + XmCommon.x(info, id.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + if (obj[obj.length - 1] != null) + { + xInbound(thread, info, obj); + } + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + + String id = (String) obj[obj.length - 1]; + if(id != null) + { + XmCommon.xstart(info); + XmCommon.x(info, id.getBytes()); + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java new file mode 100755 index 0000000..297f705 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_BOUND_X.java @@ -0,0 +1,35 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_RT.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_RT.java new file mode 100755 index 0000000..5e7ed92 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_RT.java @@ -0,0 +1,24 @@ +package com.exem.ext; + +import com.exem.IThread; +import com.exem.IXRt; +import com.exem.jspd.state.XmXInfo; + +import java.net.Socket; + +public class XM_RT implements IXRt +{ + public void onSocket(IThread thread, XmXInfo info, int mode, Socket socket) + { + if(mode == 5) + { + String remoteAddress = socket.getRemoteSocketAddress() + ""; + String[] ss = remoteAddress.split("/"); + info.s00 = ss[1]; + } + } + + public void onFile(IThread thread, XmXInfo info, int mode, String name) + { + } +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN.java new file mode 100755 index 0000000..196afdf --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN.java @@ -0,0 +1,46 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java new file mode 100755 index 0000000..6c03f70 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/ext/XM_TXN_CALLBACK.java @@ -0,0 +1,25 @@ +package com.exem.ext; + +import com.exem.TxnCallbackBase; +import com.exem.IThread; + +public class XM_TXN_CALLBACK extends TxnCallbackBase { + public boolean isExcludeException(Object err) { + return super.isExcludeException(err); + } + + public boolean isIncludeException(Object err) { + return super.isIncludeException(err); + } + + public boolean isExcludeService(String txnName) { + return super.isExcludeService(txnName); + } + + public void beginTxn(IThread thread, Object[] param) { + } + + public void endTxn(IThread thread, Object[] param, Object err) { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java new file mode 100755 index 0000000..62b55f3 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_SAP.java @@ -0,0 +1,52 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = (String)XmClass.getMethod(obj[0], "getName"); + s = s == null ? "call" : s; + index = thread.regMtdIndex("SAP", s); + info.s00 = s; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### SAP xOutbound"); + byte[] xb = (byte[])obj[1]; + //XmCommon.print("xOutbound xb:", xb); + byte[] conv_id = (byte[])XmClass.getField(obj[0], obj[0].getClass().getSuperclass(), "conv_id", true); + XmCommon.xstart(info); + XmCommon.x(info, conv_id); + XmCommon.x(info, info.s00.getBytes()); + //XmCommon.print("xOutbound conv_id:", conv_id); + //XmCommon.print("xOutbound func:" + info.s00); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java new file mode 100755 index 0000000..15563bb --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TMAX.java @@ -0,0 +1,60 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tmax xOutbound"); + + byte[] xb = (byte[])obj[2]; + //System.out.println("xOutbound xb:" + new String(xb)); + XmCommon.xstart(info); + info.x40 = new byte[32]; + System.arraycopy(xb, 124, info.x40, 0, 32); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + + //thread.udp().xHeaderInfo(thread.tid(), "P", (byte)6, xb, 124, 32); + //info.x41 = new byte[10]; + //long l = System.currentTimeMillis(); + //String os = OS[((int)(l % 6L))]; + //String bank = BANK[((int)(l % 3L))]; + //System.arraycopy(os.getBytes(), 0, info.x41, 0, 2); + //System.arraycopy(bank.getBytes(), 0, info.x41, 2, 3); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java new file mode 100755 index 0000000..ce3d3f2 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_TUXEDO.java @@ -0,0 +1,53 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String id = XmUtil.getParamStr(obj, "call"); + index = thread.regMtdIndex("TP", id); + info.s00 = id; + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + //System.out.println("##### tuxedo xOutbound"); + + byte[] xb = (byte[])obj[1]; + //System.out.println("xOutbound xb:" + new String(xb)); + + XmCommon.xstart(info); + info.x40 = new byte[8]; + System.arraycopy(xb, 20, info.x40, 0, 8); + XmCommon.x(info, info.x40); + XmCommon.x(info, info.s00.getBytes()); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep new file mode 100755 index 0000000..84a3874 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.anylink4.fep @@ -0,0 +1,54 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + String s = thread.txn().getTxnName(); + if (s.indexOf("/a") > -1) + { + info.s00 = "async" + s.substring(2); + } + else if (s.indexOf("/s") > -1) + { + info.s00 = s.substring(2); + } + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String s1 = new String( b, 277, 43); + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 32); + if (s1.indexOf("Ext") > -1) + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s1); + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci new file mode 100755 index 0000000..c3752dd --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.igate4.mci @@ -0,0 +1,55 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +public class XM_BOUND_X implements IXBound +{ + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + Object o1 = XmClass.getMethod(obj[3], "getFieldValue","HFD_Standard_System_Header"); + String s = (String)XmClass.getMethod(o1, "getFieldValue", "rcvSrvcCd"); + thread.txn().setTxnName(s); + String s1 = (String)XmClass.getMethod(o1, "getFieldValue", "tlgrWrtnDt"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrCrtnSysNm"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrSrlNo"); + s1 += (String)XmClass.getMethod(o1, "getFieldValue", "tlgrPrgrsNo"); + String s2 = (String)XmClass.getMethod(o1, "getFieldValue", "orgnlTx"); + String s3 = s2.substring(0,30); + String s4 = (String)XmClass.getMethod(o1, "getFieldValue","custId"); + byte[] b = s3.getBytes(); + XmCommon.xstart(info); + XmCommon.x(info, b); + thread.udp().xHeaderInfo(thread.tid(),"orgguid",XmConst.E_HEADER, s2); + thread.udp().xHeaderInfo(thread.tid(),"guid",XmConst.E_HEADER, s1); + thread.txn().setLoginName(s4); + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai new file mode 100755 index 0000000..7d855ee --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_BOUND_X.java.tibco.eai @@ -0,0 +1,104 @@ +package com.exem.sample; + +import com.exem.IThread; +import com.exem.IXBound; +import com.exem.XmUtil; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.jspd.state.XmXDesc; +import com.exem.jspd.state.XmXInfo; + +import java.text.SimpleDateFormat; +import java.util.Date; + +public class XM_BOUND_X implements IXBound +{ + private final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy"); + + public int xCall(int index, IThread thread, XmXInfo info, Object[] obj) + { + index = thread.regMtdIndex("SVC", "call"); + return index; + } + + public void xOutbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 4, year.getBytes()); + String s1 = new String((byte[])obj[1], 157, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + boolean b3 = XmUtil.compBytes(b, 12, year.getBytes()); + if (b3) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 4, 30); + long l = info.x20; + info.x20 = l - 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'C', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Outbound Create C", t); + } + info.x20 = l; + } + } + + public void xReply(IThread thread, Object[] obj, XmXDesc desc) + { + } + + public void xInboundEnter(IThread thread, XmXInfo info, Object[] obj) + { + } + + public void xInbound(IThread thread, XmXInfo info, Object[] obj) + { + byte[] b = (byte[])obj[1]; + String year = sdf.format(new Date()); + boolean b1 = XmUtil.compBytes(b, 12, year.getBytes()); + String s1 = new String((byte[])obj[1], 165, 1); + String s2 = obj[0].getClass().getName(); + if (s2.indexOf("DefaultTransportEntity") > -1) + { + if (b1) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + } + } + else if (b1 && s1.equals("S")) + { + XmCommon.xstart(info); + XmCommon.x(info, b, 12, 30); + long l = info.x20; + info.x20 = l + 1; + try + { + thread.udp().xInfo(thread.tid(), thread.txn(), 'P', 1, 1, info, null); + } + catch (Throwable t) + { + XmCommon.print("Inbound Create P", t); + } + info.x20 = l; + } + } + + public void xInboundLeave(IThread thread, XmXInfo info, Object[] obj) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep new file mode 100755 index 0000000..1775943 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.anylink4.fep @@ -0,0 +1,70 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + byte[] b = (byte[])obj; + String s= new String(b, 277, 43); + IThread thread = com.exem.jspd.agent.XmMain.current(); + + if (s.indexOf("Ext") > -1) + { + thread.udp().xHeaderInfo(thread.tid(), "fep_uid", XmConst.E_HEADER, s); + } + if (b[500] == 0x30 && b[501] == 0x30); + else + { + String s1 = new String(b, 122, 13); + String s2 = "|"; + s1 += s2; + s1 += new String(b, 12, 32); + s1 += s2; + s1 += new String(b, 321, 20); + s1 += s2; + s1 += new String(b, 507, 10); + s1 += s2; + s1 += new String(b, 517, 200); + thread.udp().xHeaderInfo(thread.tid(), "retmsg", XmConst.E_HEADER, s1); + } + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank new file mode 100755 index 0000000..5146d5e --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.bankware.corebank @@ -0,0 +1,61 @@ +package com.exem.ext; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmConst; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + Object o1 = XmClass.getField(obj, "header"); + String s1 = (String)XmClass.getMethod(o1, "getScrnId"); + String s2 = (String)XmClass.getMethod(o1, "getSrvcCd"); + String s3 = (String)XmClass.getMethod(o1, "getOrgGuid"); + String s4 = (String)XmClass.getMethod(o1, "getGuid"); + String s5 = (String)XmClass.getMethod(o1, "getCustId"); + IThread thread = com.exem.jspd.agent.XmMain.current(); + thread.udp().xHeaderInfo(thread.tid(), "orgguid", XmConst.E_HEADER, s3); + thread.udp().xHeaderInfo(thread.tid(), "guid", XmConst.E_HEADER, s4); + thread.udp().xHeaderInfo(thread.tid(), "custid", XmConst.E_HEADER, s5); + thread.txn().setLoginName(s5); + if (s1 == null) + return "+" + s2; + else + return s1 + "+" + s2; + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco new file mode 100755 index 0000000..d8f3860 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN.java.kepco @@ -0,0 +1,54 @@ +package com.exem.kepco; + +import com.exem.IXTxn; +import com.exem.IThread; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN implements IXTxn +{ + public String getName(Object svc, XmHttpRequest req) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] param) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] param) + { + XmCommon.print("11111"); + String s = txnName; + Object o1 = param[1]; + txnName = (String)o1 + "+" + s; + XmCommon.print("txnName:" + txnName); + String txnIp = "127.127.127.1"; + thread.txn().setTxnIp(txnIp); + XmCommon.print("Ip:" + txnIp); + return txnName; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getIpAddr(String txnIp, Object obj) + { + return txnIp; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + return null; + } + + public void xHeaderInfo(IThread thread, XmHttpRequest req) + { + } + +} diff --git a/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java new file mode 100755 index 0000000..d79c084 --- /dev/null +++ b/intermax/23.12.07.02/jspd/build-ext/src/com/exem/sample/XM_TXN_EXT.java @@ -0,0 +1,202 @@ +package com.exem.sample; + +import com.exem.IXTxn; +import com.exem.XmUtil; +import com.exem.IThread; +import com.exem.IUdpThread; +import com.exem.IXTxn; +import com.exem.jspd.XmClass; +import com.exem.jspd.XmCommon; +import com.exem.weave.http.XmHttpRequest; +import com.exem.weave.http.XmHttpSession; + +public class XM_TXN_EXT implements IXTxn +{ + private static final byte TRX_PARAMETER = 1; + private static final byte TRX_PARAM_NOURI = 2; + private static final byte TRX_ATTRIBUTRE = 3; + + private static final byte APP_ATTRIBUTRE = 1; + private static final byte APP_COOKIE = 2; + + public String getName(Object svc, XmHttpRequest req) + { + if (XmCommon.TRX_NAME_KEY.length == 0) + return req.getRequestURI(); + + String name = null; + switch (XmCommon.TRX_NAME_TYPE) + { + case TRX_PARAMETER: + case TRX_PARAM_NOURI: + String param = null; + for (int i = 0; i < XmCommon.TRX_NAME_KEY.length; i++) + { + String key = XmCommon.TRX_NAME_KEY[i]; + String value = req.getParameter(key); + if (value != null) + { + if (param == null) + param = key + "=" + value; + else + param = param + "&" + key + "=" + value; + } + } + if (param != null) + { + if (XmCommon.TRX_NAME_TYPE == TRX_PARAM_NOURI) + name = param; + else + name = req.getRequestURI() + "?" + param; + } + break; + case TRX_ATTRIBUTRE: + name = (String) req.getAttribute(XmCommon.TRX_NAME_KEY[0]); + break; + } + return name; + } + + public String getName(XmHttpRequest req, Object obj) + { + return req.getRequestURI(); + } + + public String getName(String txnName, Object[] obj) + { + return null; + } + + public String getName(IThread thread, String txnName, Object[] obj) + { + return null; + } + + public String getIpAddr(String ip, Object obj) + { + return ip; + } + + public String getLoginName(XmHttpRequest req, XmHttpSession session) + { + String name = null; + switch (XmCommon.TRX_LOGIN_TYPE) + { + case APP_ATTRIBUTRE: + Object o1 = session.getAttribute(XmCommon.TRX_LOGIN_KEY); + if (o1 instanceof java.lang.String) + name = (String) o1; + break; + case APP_COOKIE: + name = XmCommon.Cookie_getValue(req, XmCommon.TRX_LOGIN_KEY); + break; + } + return name; + } + + /* getName **************************************************** */ + public String getServletName(Object svc, XmHttpRequest req) + { + Object o1; + if ((o1 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o1; + else if ((o1 = XmClass.getMethod(svc, "getServletConfig")) != null) + { + Object o2; + if ((o2 = XmClass.getMethod(svc, "getServletName")) != null) + return (String) o2; + } + return null; + } + + public String getLastUri(Object svc, XmHttpRequest req) + { + String name = req.getRequestURI(); + if (name.indexOf(XmCommon.TRX_NAME_KEY[0]) > -1) + { + int i = name.lastIndexOf('/'); + if (i > -1) + return name.substring(i + 1); + else + return name; + } + return name; + } + + public String getXFrame(String value) + { + try + { + String s = value.substring(12); + String src = new String(new sun.misc.BASE64Decoder().decodeBuffer(s)); + + int ix = 0; + String item[] = new String[6]; + for (int i = 0; i < 6; i++) + { + ix++; + int len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + ix = ix + 4 + len; + + len = XmUtil.byteArrayToInt(src.substring(ix, ix + 4).getBytes()); + item[i] = src.substring(ix + 4, ix + 4 + len); + ix = ix + 4 + len; + } + return item[0] + "/" + item[1]; + } + catch (Throwable t) + { + return null; + } + } + + /* getName **************************************************** */ + public String getProFrameV1(XmHttpRequest req, Object obj) + { + return (String) XmClass.getMethod(obj, "getPfmTxCode"); + } + + public String getProFrameV2(XmHttpRequest req, Object obj) + { + String name = req.getRequestURI(); + name = name + "+" + XmClass.getMethod(obj, "getPfmFnCd") + "+" + XmClass.getMethod(obj, "getPfmTxCode"); + return name; + } + + public String getProFrameV3(XmHttpRequest req, Object obj) + { + return XmClass.getMethod(obj, "getPfmAppName") + "+" + XmClass.getMethod(obj, "getPfmSvcName") + "+" + XmClass.getMethod(obj, "getPfmFnName"); + } + + public String getNICSV1(XmHttpRequest req, Object obj) + { + return (String) obj; + } + + public String getTITV1(XmHttpRequest req, Object obj) + { + int count = ((Integer) XmClass.getMethod(obj, "getRowCount")).intValue(); + String[] values = new String[count]; + Class[] acls = new Class[] { Integer.TYPE, String.class }; + for (int i = 0; i < count; i++) + { + Object[] aobj = new Object[] { new Integer(i), "SQL_ID" }; + values[i] = (String) XmClass.getMethod(obj, "getColumnAsString", acls, aobj); + } + return XmUtil.toString(values, ","); + } + + /* getIpAddr ************************************************** */ + public String getPfmClntIp(Object obj, String ip) + { + return (String) XmClass.getMethod(obj, "getPfmClntIp"); + } + + /* getLoginName *********************************************** */ + public void xHeaderInfo(IThread thread, XmHttpRequest req); + { + String query = req.getQueryString(); + String url = req.getRequestURL() + (query == null ? "" : new StringBuilder().append("?").append(query).toString()); + thread.udp().xHeaderInfo(thread.tid(), "qa.url", (byte)1, url); + } +} diff --git a/intermax/23.12.07.02/jspd/cfg/agent/imx.dbm b/intermax/23.12.07.02/jspd/cfg/agent/imx.dbm new file mode 100755 index 0000000..b5feef5 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/imx.dbm @@ -0,0 +1,3 @@ +# IMXDBM ADDR=DB ADDR +# ex) 127.0.0.1:2604=127.0.0.1.1521.ora11203 +# ex) 127.0.0.1:2605=127.0.0.1.1522.ora11204 diff --git a/intermax/23.12.07.02/jspd/cfg/agent/imx.prop b/intermax/23.12.07.02/jspd/cfg/agent/imx.prop new file mode 100755 index 0000000..60c8e5b --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/imx.prop @@ -0,0 +1,258 @@ +############################################################################### +# COMMON OPTIONS # +############################################################################### + +######################################### +# NOT USED +# # 2: garbage clean log, 4: udp packet detail log, 8: udp packet detail log for send to imxdbm +# # 16: topology info detail log +# LOG_OPT=0 +# +# # 1: prepare, 2: execute, 4: execute end, 8: jsp end, 16: active txn signal +# # 32: remotecall, 64: userdata, 128: real user monitor +# DEBUG=0 +# NOT USED +######################################### + +# common +# 1: cpu/core*, 2: exclude iowait +# linux +# 4: free memory = MemFree + Buffers + Cached +# sun +# 4: exclude network info +# aix +# 8: VP mode for cpu (Shared-SMT) +# 16(0x10): cpu/online_vcpus* (Shared-SMT) +# 32(0x20): no virtual free memory (default free memory = (real_total - virt_active) * 4 (4K Pages)) +# 32768(0x8000): use perfstat_pagingspace (paging space usage) +CPU100=1 + +#Packet Queue Max Count +#MAX_UDP_QUEUE=20000 +#MAX_TCP_QUEUE=2000 + +# info_log interval (sec) +# default: imxosm = 300 , imxtxn = 60 +#INTERVAL_INFO_LOG= + +# DG TCP Reconnect interval (ms) +# defaut: 5000 +DG_RECONNECT_DELAY_TIME=5000 + +#if WAS process name is not a java +#WAS_PROCESS_NAME= + +############################################################################### +# IMXOSM COMMON OPTIONS # +############################################################################### + +#0 : DG 2016.12.19 before version +#1 : DG 2016.12.19 after version +# Gather Version(yyyymmdd) +#IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE= + +# 0 : disable_osm_standalone, 1 : enable_osmstandalone +#ENABLE_OSM_STANDALONE=0 + +# Collect NFS(Filesystem) type(Y:collect,N:not collect(default)) +#COLLECT_FS_NFS= + +# Use the option to run more than one imxosm on the local server. +# (preventing duplication collect of processes) +# 0 : master(default), 1 : slave +#IMX_OSM_SLAVE= + +# Custom hostkey (hostkey = org_hostkey + sys_host + OSM_MODULE_KEY) +#OSM_MODULE_KEY= + +# Windows Global Nameing MMF +# 0: Not use(default), 1: use global name mmf(.NET) +#USE_GLOBAL_NAMING_MMF= + +# update manager setting +# target api server ip +API_SERVER_IP= + +# target api server port +API_SERVER_PORT= + +# update check interval setting (sec) +UPDATE_CHECK_INTERVAL= + +# Maximum number of package versions to keep +BACKUP_PATH_COUNT= + +# Set imxtxn running (default: true) +RUN_IMXTXN= + +############################################################################### +# IMXOSM TMAXTP OPTIONS # +############################################################################### + +# imxtpm_tmax Config file path +TP_CONF_DIR= + +# imxtpm_tmax Config file name (default: mxtpl.conf) +TP_CONF_FILE_NAME=mxtpl.conf + +# imxtpm_tmax env file path for imxosm +TP_TMAX_ENV_DIR= + +# imxtpm_tmax env file name (default: tmax.env) +TP_TMAX_ENV_FILE_NAME=tmax.env + +# tmax tp process user name +TP_PROCESS_USER=tmax + +# if filename = A/B/SLOG.123456 +# set SLOG_DIR = A/B +SLOG_DIR= + +# If the string is included in the SLOG, the data line is skipped. +# set SLOG_FILTER_TEXT = abc , def, ghi , ... +#SLOG_FILTER_TEXT + +# tpcall (tmadmin data) interval second +TPCALL_INTERVAL=10 + +# The number of failures of TPCALL sending an error alarm +TPCALL_ERROR_REPEAT=3 + +# Skip processing for an active transaction that is longer than the set value.(ms) +ACTIVE_ELAPSE_LIMIT=0 + +# Skip active transactions shorter than this value. +ACTIVE_ELAPSE_TIME=0 + +# 0: OFF (default) 1: shm active txn logging (Dynamic Option) +TP_SHM_DEBUG=0 + +## TPCALL_DEBUG_TYPE (Dynamic Option) +## (ex: TP_CALL_DEBUG_TYPE=12 --> MXTSVGCONF(4), MXTSVRCONF(8) logging) +## 0: NONE(OFF)(default) +## 1: MXTDOMAINCONF +## 2: MXTNODECONF +## 4: MXTSVGCONF +## 8: MXTSVRCONF +## 16: MXTSVCCONF +## 32: MXTSVRSTAT +## 64: MXTSPRSTATEX +## 128: MXTSVCSTATEX +## 256: MXTCLIINFO +TPCALL_DEBUG=0 + +## The selected service does not perform. +## 0: all gathering.(default) +## The remaining values are the same as in the "TPCALL_DEBUG_TYPE" option above +## (ex: TP_NOTGATHER_STAT=12 --> MXTSVCCONF(4), MXTSVRCONF(8) Do not collect data.) +TP_NOTGATHER_STAT=0 + +############################################################################### +# IMXOSM TUXEDO OPTIONS # +############################################################################### + +# imxtpm_tuxedo Config file path +TUX_CONF_DIR=/home/tuxedo/tm_agent + +# imxtpm_tuxedo Config file name (default: mxtup.conf) +TUX_CONF_FILE_NAME=mxtup.conf + +# if filename = A/B/ULOG.123456 +# set TUX_ULOG_FILE = A/B/ULOG +TUX_ULOG_FILE=$TUXDIR/ULOG + +# library debug on/off +TUX_LIB_DEBUG=0 + +# stat data interval +TUX_STAT_INTERVAL=10 + +# 0 : All, 1 : stat off 2: server off 4:service off 8: client off 16:queue off +TUX_NOTGATHER_STAT=0 + +# 0 : off, 1 : stat on 2: server on 4:service on 8: client on 16:queue on +TUX_STAT_DEBUG=0 + +############################################################################### +# IMXOSM C API OPTIONS # +############################################################################### + +# imxosm shared memory read interval (ms) +APIM_READ_INTERVAL=1000 + +# imxosm debug log setting +APIM_DEBUG_LOG=0 + + +############################################################################### +# IMXTXN OPTIONS # +############################################################################### + +# Packet Debugging Options ( Multiple selections are available ) +# [ 0] ALLOFF +# [ 1] TRANSACTION_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END/JSP_END ) +# [ 2] SQL_PROCESSING ( PREPARE/EXECUTE_BEGIN/EXECUTE_END ) +# [ 3] SQL_TEXT ( SQL_TEXT ) +# [ 4] ACTIVE_TXN ( ACTIVE_TXN_SIGNAL ) +# [ 5] REMOTECALL_PROCESSING ( REMOTECALL ) +# Warning) Do not use together No. 1 and No. 2. +# ex) XM_LOG_OPT=1,3,4 +XM_LOG_OPT=0 + +# imxtxn worker thread count (default:1, MAX:10) +WORKING_THREAD_COUNT=1 + +# Gather Version(yyyymmdd) +#IMX_DATAGATHER_PACKET_VERSION= + +# Send Packet to imxdbm (default:1, 0:OFF 1:ON) +SEND_UDP_TO_DBM=0 + +# 0 : disable_txn_standalone, 1 : enable_txnstandalone +ENABLE_TXN_STANDALONE=0 + +# Collect only sql information with longer SQL elapse time.(ms) +SQL_DETAIL_ELAPSE_LIMIT=0 + + + +############################################################################### +# IMXDBM OPTIONS # +############################################################################### + +# env server port +ENV_PORT=2405 + +# DB Address, copy address from imx.dbm file. +# DB_ADDR=127.0.0.1.1521.orcl (IP.PORT.SID) + +# session status filter +# 1: active, 2: exclude inactive background, 3: both +SESSION_LIST_OPT=1 + + +############################################################################### +# IMXTXN SITE OPTIONS # +############################################################################### + +# 0: send all, 0<: send limit(per sec), 10000(defualt, max): max send count +#MAX_SEND_BIND_LIST_COUNT=0 + +# Add sql bind space (default:1, OFF:0 ON:1) +#INPUT_SPACE_SQL_BIND=1 + +# SQL TEXT TRIM (HEAD) (default:0, HEAD+TAIL:0 HEAD:1) +#SQL_LEFT_TRIM=0 + +# USE CONVERT SQL TEXT UTF8->EUCKR (default:0, OFF:0 ON:1) +#SQL_TEXT_CONVERT_UTF8_EUCKR=0 + +# txn sql_text hash count (default: 5000) +#MAX_SQL_TEXT_HASH_COUNT=5000 + +# USE Topology Key1, Key3, dest (default:0) +#USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 + +# Use open_addr for topology address (default:0, OFF:0 ON:1, if USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR=1 this option is ignore) +#USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR=0 + diff --git a/intermax/23.12.07.02/jspd/cfg/agent/imxlog.conf b/intermax/23.12.07.02/jspd/cfg/agent/imxlog.conf new file mode 100755 index 0000000..1c57518 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/imxlog.conf @@ -0,0 +1,28 @@ + +[ imxosm ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxosm.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ imxtxn ] +directory = ${INTERMAX_HOME}/log/imx +# filename = imxtxn.log +output_type = file +level = info +header_flag = time,pid,level +limit_file_size = 10 +#backup_directory = ${INTERMAX_HOME}/log/imx +backup_file_count = 3 + +[ debug_console ] +output_type = stdout +level = trace +header_flag = time + + + diff --git a/intermax/23.12.07.02/jspd/cfg/agent/jspd.alias b/intermax/23.12.07.02/jspd/cfg/agent/jspd.alias new file mode 100755 index 0000000..e69de29 diff --git a/intermax/23.12.07.02/jspd/cfg/agent/jspd.home b/intermax/23.12.07.02/jspd/cfg/agent/jspd.home new file mode 100755 index 0000000..e69de29 diff --git a/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop new file mode 100755 index 0000000..9d20c77 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop @@ -0,0 +1,42 @@ +# ${DG_IP}:${DG_PORT},${DG_IP}:${DG_PORT} ... (max:10)) +# default: NULL +DGADDR_LIST= + +# If DG connection fails by the set value, "imxosm" attempts to connect sequentially to the value in "DG_ADDR_LIST" ( default:5) +DGADDR_LIST_RECONNECT_COUNT=5 + +# ${IP}:${TCP_PORT} +#WR_ADDR=127.0.0.1:1314 +WR_ADDR=10.10.52.5:1314 +#WR_ADDR=10.10.52.4:1314 + +# ${UDP_PORT|UDP_PORT} +TXN_ADDR=2404 + +# ${UDP_PORT|UDP_PORT} +UTS_ADDR=2504 + +# default 10000 +TXN_REGISTRY_SIZE= + +# default 200000 +MTD_REGISTRY_SIZE= + +# default 200 +MTD_BUFFER_COUNT= + +# default 60KB +MTD_MAX_SIZE= + +# default false +REMOVE_JDBC_ADVICE= + +# default false +REMOVE_JDBC_BIND_ADVICE= + +# default false +DISABLE_SQL_SID= + +# default true +USE_TCP_SEND_HEADER= + diff --git a/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini new file mode 100755 index 0000000..47500c8 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini @@ -0,0 +1,496 @@ +# txn name 0:default, 1:parameter, 2:param_nouri, 3:attribute +TRX_NAME_TYPE= + +# txn key +TRX_NAME_KEY= + +# txn login name 0:default, 1:attribute, 2:cookie +TRX_LOGIN_TYPE= + +# txn login key +TRX_LOGIN_KEY= + +# default 0sec +APP_SLEEP= + +# default 400, max 400 +ACTIVE_TOP_COUNT= + +# default 0ms +ACTIVE_ELAPSE_TIME= + +# ${TXNNAME}:${TXNTIME(ms)},${TXNNAME}:${TXNTIME(ms)} +#CURR_TRACE_TXN=*:3000 +CURR_TRACE_TXN=*:0 + +# default 100, 0~100 +CURR_TRACE_LEVEL= + +# default true +TRACE_JDBC= + +# default false +TRACE_SIMPLE_METHOD= + +# default false +METHOD_DEBUG= + +# eg) gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 +EXCLUDE_SERVICE=gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 + +# eg) gif, js, css +EXCLUDE_SERVICE_AT_END_TIME= + +# eg) type.Exception +INCLUDE_EXCEPTION= + +# eg) type.Exception +EXCLUDE_EXCEPTION=weblogic.servlet.jsp.AddToMapException + +# error.jsp +REDIRECT_URL= + +# default false +RESP_HTML_SCRIPT= + +# default 50ms +RESP_HTML_ELAPSE_TIME= + +# eg) .*\.jsp +RESP_HTML_SCRIPT_TARGET=.*\.jsp + +# default false +RESP_HEADER_TID= + +# default false +USE_TRACE_CLIENT_TIME= + +# default empty string +TRACE_CLIENT_TIME_POSTFIX= + +# eg) 192.168.0.10:8082 +TRACE_CLIENT_TIME_ADDR= + +# default true +RT_RMI= + +# default ext +RT_RMI_VENDOR= + +# default 3: normal, 1: pkey, 2: ckey, 3: pckey +RT_RMI_TYPE= + +# default 0ms +RT_RMI_ELAPSE_TIME= + +# default 0x00 eg) FILE_OPEN,FILE_CLOSE +RT_FILE= + +# default 0x10 eg) SOCKET_OPEN,SOCKET_CLOSE +RT_SOCKET= + +# default false +USE_MTD_EXT= + +# default false +MTD_PARAM_TRACE= + +# default 100000 +MTD_LIMIT= + +# default 2500 +MTD_BUFFER_SIZE= + +# default 100 +MTD_EXCEPTION_BUFFER_SIZE= + +# default 100 +MTD_STACK_BUFFER_SIZE= + +# default 20 +LIMIT_SQL= + +# default true +USE_SQL_ELLIPSIS= + +# default 2000, max MTD_BUFFER_SIZE +TXN_SQL_LIMIT_COUNT= + +# default 0ms +SQL_DETAIL_ELAPSE_LIMIT= + +# default 2048, max 8192 +BIND_SIZE= + +# default 50ms +BIND_ELAPSE_TIME= + +# default false +TXN_CPU_TIME= + +# default false +TXN_MEMORY= + +# default false +TXN_CPU_CORE= + +# default 0 +THROW_TXN_FETCH_COUNT= + +# default 0 +THROW_SQL_FETCH_COUNT= + +# eg) gif, js, css +THROW_EXCLUDE_SERVICE= + +# ${ALERT}:${RESTART}:${LEVEL},${ALERT}:${RESTART}:${LEVEL} +LOG_ALERT=1:java.lang.OutOfMemoryError,2:container {0} booted + +# default false +USE_SESSIONID_FOR_WEBID= + +# default false +ENABLE_WEB_ID_WHEN_NO_USERAGENT= + +# default false +USE_RUNTIME_REDEFINE=true + +# default true +USE_RUNTIME_REDEFINE_HTTP_REMOTE= + +# default false +USE_RUNTIME_REDEFINE_FUTURE_ETOE= + +# default false +DISABLE_FUTURE_ETOE_TRACE= + +# default true +USE_JMX= + +# default true +DISABLE_JDBC_ALARM= + +# default false +USE_TRACE_COLLECTION_LEAK= + +# default 1000 +TRACE_COLLECTION_SIZE= + +# default 10000 +TRACE_COLLECTION_STACKTRACE_SIZE= + +# default 600000ms(10minutes) +TRACE_COLLECTION_REPORT_PERIOD= + +# default 3 (Min 3, Max 99) +IMXOSM_CHECK_COUNT= + +# default true +USE_NEW_IMXTXN_SQL_PACKET= + +# default 1000ms (Min 500, Max 60000) +DG_RECONNECT_DELAY_TIME= + +# default false +USE_SQL_SEQ= + +# default false +TRACE_FETCH_METHOD= + +# default false +TRACE_MONGO_FETCH= + +# eg) replace number patterns [0-9]+ +REPLACE_URL_PATTERNS= + +# eg) prefix1, prefix2 +EXCLUDE_TXCODE= + +# eg) thread name pattern (startsWith) +EXCLUDE_THREAD= + +# default false +USE_ETOE_ONLY= + +# default false +DISABLE_ACTIVE_TXN= + +# default false +USE_METHOD_LIST= + +# default false +USE_METHOD_SEQ= + +# default false +TRACE_METHOD_MEMORY= + +# default false +TRACE_METHOD_CPUTIME= + +# default true +TRACE_DBPOOL_NAME= + +# default false +TRACE_THREAD_NAME= + +# default false +DISABLE_ROOT_METHOD= + +# default 128 +MTD_ERROR_LIMIT= + +# default 1(sec) +WASID_CHECK_TIMEOUT= + +# default false +DISABLE_JDBC_CONNECTION_FAIL= + +# default false +TRX_NAME_USE_ENCODING= + +# default ISO-8859-1 +TRX_NAME_ENCODING_FROM= + +# default UTF-8 +TRX_NAME_ENCODING_TO= + +# default empty string +TRX_IP_KEY= + +# txn error 0: default, 1: response(500), 2: response(400) +TRX_ERR_TYPE= + +# default empty string +TRX_ERR_STATUS= + +# 0: none(default), 1: error thread dump, 2: all thread dump +TRX_ERR_STATUS_TYPE= + +# default 0 +TXN_ELAPSE_TIME= + +# default 0 +MTD_ELAPSE_TIME= + +# default false +INCLUDE_EXCEPTION_FOR_ALARM= + +# default false +CONVERT_SQL_ASCII_TO_KSC5601= + +# default null +CONVERT_SQL_ASCII_TO= + +# default null +CONVERT_SQL_TEXT_ENCODING_FROM= + +# default null +CONVERT_SQL_TEXT_ENCODING_TO= + +# default false +ENABLE_UPDATE_WEBID_COOKIE_TIME= + +# default 0 +TXN_NAME_SET_INDEX= + +# default 0 +TXN_NAME_SET_INDEX2= + +# default 0 +TXN_NAME_APPEND_INDEX= + +# default false +DISABLE_SQL_SID= + +# default false +DISABLE_SQL_SID_ORACLE= + +# default false +DISABLE_SQL_SID_DB2= + +# default false +DISABLE_SQL_SID_MSSQL= + +# default false +DISABLE_SQL_SID_TIBERO= + +# default false +DISABLE_SQL_FETCH= + +# default false +DISABLE_SQL_BIND= + +# default false +ENABLE_ENCRYPT_SQL_BIND= + +# default false +ENABLE_ENCRYPT_LOGIN_NAME= + +# default 0 +TYPE_AUTOMATIC_WASID=4 + +# default empty string +K8S_URL_KEY= + +# default empty string +AUTOWASID_DG_KEY=core_business1 + +# default 2 (Min 2, Max 10) +THREAD_DUMP_MAX_SIZE= + +# default log eg) log or AbsolutePath +LOG_PATH= + +# default -1 (Min 2) +LOG_MAX_COUNT= + +# default empty string +LOGGER_IP= + +# default 10010 +LOGGER_PORT= + +# default 0 (Min 0, Max 100) +LOG_ARCHIVE_DAYS= + +# default 2 (Min 0, Max 10) +LOG_FILE_COUNT= + +# default 10 (Min 0, Max 10) +LOG_FILE_SIZE= + +# default false +GET_SID_WHEN_STMT= + +# default 600000ms(10minutes) +GET_SID_WHEN_STMT_LIMIT= + +# default false +CHANGE_DB2_SID_QUERY= + +# default false +COMPRESS_SQL= + +# default false +USE_ORACLE_RAC= + +# default false +USE_TIBERO_TAC= + +# deprecated. default false +USE_TRACE_ORACLE= + +# default false +USE_TRACE_ORACLE2= + +# default false +USE_TRACE_POSTGRES= + +# default false +USE_TRACE_ORACLE2_CLEAR_PING= + +# default false +USE_TRACE_ORACLE3= + +# default false +USE_TRACE_DB2= + +# default false +USE_TRACE_MSSQL= + +# default false +USE_TRACE_TIBERO= + +# default false +USE_TRACE_TIBERO3= + +# default 200 +CONNECTION_CLASS_LIMIT= + +# default 2000 +CONNECTION_LIMIT= + +# default 60927 +SQL_TEXT_BUFFER_SIZE= + +# default false +RMI_GET_PARAM= + +# default 1024 +MONGO_BIND_SIZE= + +# default empty string +PLC_MESSAGE= + +# default empty string +RUM_MESSAGE= + +# default false +USE_NONE_ASYNCKEY_IMXUTS_PACKET= + +# default false +SEND_OOM_ALARM_DIRECTLY= + +# default false +USE_JAR_LIST= + +# default false +USE_TRX_NAME_WHEN_LEAVE= + +# default true +DISABLE_WEBID= + +# default true +DISABLE_DETAIL_DB_INFO= + +# default false +ENABLE_TRACE_JSP_CLASS= + +# default false +DISABLE_EXCLUDE_THREAD= + +# default false +IMX_RUN_ON_CONTAINER=true + +# default /tmp +IMX_WID_PATH= + +# default false +DISABLE_OSM= + +# default true +ENABLE_RELOAD_ADVICE= + +# default false +ENABLE_BATCH_MODE= + +# default 3600 +RUM_SCRIPT_INJECTION_CLIENT_RESET_SECOND= + +# default -1 +RUM_SCRIPT_INJECTION_CLIENT_COUNT= + +# default false +USE_XRT_HANDLE= + +# default false +DISABLE_SQL= + +# default false +ENABLE_POOL_NAME_GET_BY_CONN= + +# default false +USE_LONG_SQL= + +# default 1,2,3, 1: Environment, 2: InetAddress, 3: Command +HOSTNAME_COLLECT_TYPE_PRIORITY= + +# default false +DISABLE_CLASS_SOURCE= + +# default false +DISABLE_CLASS_META_CACHING= + +# default 0x000000000 eg) RMI,HTML,RESPONSE,CLASS,GC,UDP,TCP,TRACE,DEBUG +DEBUG=0x000000000 + diff --git a/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini.org b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini.org new file mode 100755 index 0000000..90c2f9a --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.ini.org @@ -0,0 +1,495 @@ +# txn name 0:default, 1:parameter, 2:param_nouri, 3:attribute +TRX_NAME_TYPE= + +# txn key +TRX_NAME_KEY= + +# txn login name 0:default, 1:attribute, 2:cookie +TRX_LOGIN_TYPE= + +# txn login key +TRX_LOGIN_KEY= + +# default 0sec +APP_SLEEP= + +# default 400, max 400 +ACTIVE_TOP_COUNT= + +# default 0ms +ACTIVE_ELAPSE_TIME= + +# ${TXNNAME}:${TXNTIME(ms)},${TXNNAME}:${TXNTIME(ms)} +#CURR_TRACE_TXN=*:3000 +CURR_TRACE_TXN=*:0 + +# default 100, 0~100 +CURR_TRACE_LEVEL= + +# default true +TRACE_JDBC= + +# default false +TRACE_SIMPLE_METHOD= + +# default false +METHOD_DEBUG= + +# eg) gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 +EXCLUDE_SERVICE=gif, js, css, xml, jpg, jpeg, png, ico, woff, woff2 + +# eg) gif, js, css +EXCLUDE_SERVICE_AT_END_TIME= + +# eg) type.Exception +INCLUDE_EXCEPTION= + +# eg) type.Exception +EXCLUDE_EXCEPTION=weblogic.servlet.jsp.AddToMapException + +# error.jsp +REDIRECT_URL= + +# default false +RESP_HTML_SCRIPT= + +# default 50ms +RESP_HTML_ELAPSE_TIME= + +# eg) .*\.jsp +RESP_HTML_SCRIPT_TARGET=.*\.jsp + +# default false +RESP_HEADER_TID= + +# default false +USE_TRACE_CLIENT_TIME= + +# default empty string +TRACE_CLIENT_TIME_POSTFIX= + +# eg) 192.168.0.10:8082 +TRACE_CLIENT_TIME_ADDR= + +# default true +RT_RMI= + +# default ext +RT_RMI_VENDOR= + +# default 3: normal, 1: pkey, 2: ckey, 3: pckey +RT_RMI_TYPE= + +# default 0ms +RT_RMI_ELAPSE_TIME= + +# default 0x00 eg) FILE_OPEN,FILE_CLOSE +RT_FILE= + +# default 0x10 eg) SOCKET_OPEN,SOCKET_CLOSE +RT_SOCKET= + +# default false +USE_MTD_EXT= + +# default false +MTD_PARAM_TRACE= + +# default 100000 +MTD_LIMIT= + +# default 2500 +MTD_BUFFER_SIZE= + +# default 100 +MTD_EXCEPTION_BUFFER_SIZE= + +# default 100 +MTD_STACK_BUFFER_SIZE= + +# default 20 +LIMIT_SQL= + +# default true +USE_SQL_ELLIPSIS= + +# default 2000, max MTD_BUFFER_SIZE +TXN_SQL_LIMIT_COUNT= + +# default 0ms +SQL_DETAIL_ELAPSE_LIMIT= + +# default 2048, max 8192 +BIND_SIZE= + +# default 50ms +BIND_ELAPSE_TIME= + +# default false +TXN_CPU_TIME= + +# default false +TXN_MEMORY= + +# default false +TXN_CPU_CORE= + +# default 0 +THROW_TXN_FETCH_COUNT= + +# default 0 +THROW_SQL_FETCH_COUNT= + +# eg) gif, js, css +THROW_EXCLUDE_SERVICE= + +# ${ALERT}:${RESTART}:${LEVEL},${ALERT}:${RESTART}:${LEVEL} +LOG_ALERT=1:java.lang.OutOfMemoryError,2:container {0} booted + +# default false +USE_SESSIONID_FOR_WEBID= + +# default false +ENABLE_WEB_ID_WHEN_NO_USERAGENT= + +# default false +USE_RUNTIME_REDEFINE=true + +# default true +USE_RUNTIME_REDEFINE_HTTP_REMOTE= + +# default false +USE_RUNTIME_REDEFINE_FUTURE_ETOE= + +# default false +DISABLE_FUTURE_ETOE_TRACE= + +# default true +USE_JMX= + +# default true +DISABLE_JDBC_ALARM= + +# default false +USE_TRACE_COLLECTION_LEAK= + +# default 1000 +TRACE_COLLECTION_SIZE= + +# default 10000 +TRACE_COLLECTION_STACKTRACE_SIZE= + +# default 600000ms(10minutes) +TRACE_COLLECTION_REPORT_PERIOD= + +# default 3 (Min 3, Max 99) +IMXOSM_CHECK_COUNT= + +# default true +USE_NEW_IMXTXN_SQL_PACKET= + +# default 1000ms (Min 500, Max 60000) +DG_RECONNECT_DELAY_TIME= + +# default false +USE_SQL_SEQ= + +# default false +TRACE_FETCH_METHOD= + +# default false +TRACE_MONGO_FETCH= + +# eg) replace number patterns [0-9]+ +REPLACE_URL_PATTERNS= + +# eg) prefix1, prefix2 +EXCLUDE_TXCODE= + +# eg) thread name pattern (startsWith) +EXCLUDE_THREAD= + +# default false +USE_ETOE_ONLY= + +# default false +DISABLE_ACTIVE_TXN= + +# default false +USE_METHOD_LIST= + +# default false +USE_METHOD_SEQ= + +# default false +TRACE_METHOD_MEMORY= + +# default false +TRACE_METHOD_CPUTIME= + +# default true +TRACE_DBPOOL_NAME= + +# default false +TRACE_THREAD_NAME= + +# default false +DISABLE_ROOT_METHOD= + +# default 128 +MTD_ERROR_LIMIT= + +# default 1(sec) +WASID_CHECK_TIMEOUT= + +# default false +DISABLE_JDBC_CONNECTION_FAIL= + +# default false +TRX_NAME_USE_ENCODING= + +# default ISO-8859-1 +TRX_NAME_ENCODING_FROM= + +# default UTF-8 +TRX_NAME_ENCODING_TO= + +# default empty string +TRX_IP_KEY= + +# txn error 0: default, 1: response(500), 2: response(400) +TRX_ERR_TYPE= + +# default empty string +TRX_ERR_STATUS= + +# 0: none(default), 1: error thread dump, 2: all thread dump +TRX_ERR_STATUS_TYPE= + +# default 0 +TXN_ELAPSE_TIME= + +# default 0 +MTD_ELAPSE_TIME= + +# default false +INCLUDE_EXCEPTION_FOR_ALARM= + +# default false +CONVERT_SQL_ASCII_TO_KSC5601= + +# default null +CONVERT_SQL_ASCII_TO= + +# default null +CONVERT_SQL_TEXT_ENCODING_FROM= + +# default null +CONVERT_SQL_TEXT_ENCODING_TO= + +# default false +ENABLE_UPDATE_WEBID_COOKIE_TIME= + +# default 0 +TXN_NAME_SET_INDEX= + +# default 0 +TXN_NAME_SET_INDEX2= + +# default 0 +TXN_NAME_APPEND_INDEX= + +# default false +DISABLE_SQL_SID= + +# default false +DISABLE_SQL_SID_ORACLE= + +# default false +DISABLE_SQL_SID_DB2= + +# default false +DISABLE_SQL_SID_MSSQL= + +# default false +DISABLE_SQL_SID_TIBERO= + +# default false +DISABLE_SQL_FETCH= + +# default false +DISABLE_SQL_BIND= + +# default false +ENABLE_ENCRYPT_SQL_BIND= + +# default false +ENABLE_ENCRYPT_LOGIN_NAME= + +# default 0 +TYPE_AUTOMATIC_WASID= + +# default empty string +K8S_URL_KEY= + +# default empty string +AUTOWASID_DG_KEY= + +# default 2 (Min 2, Max 10) +THREAD_DUMP_MAX_SIZE= + +# default log eg) log or AbsolutePath +LOG_PATH= + +# default -1 (Min 2) +LOG_MAX_COUNT= + +# default empty string +LOGGER_IP= + +# default 10010 +LOGGER_PORT= + +# default 0 (Min 0, Max 100) +LOG_ARCHIVE_DAYS= + +# default 2 (Min 0, Max 10) +LOG_FILE_COUNT= + +# default 10 (Min 0, Max 10) +LOG_FILE_SIZE= + +# default false +GET_SID_WHEN_STMT= + +# default 600000ms(10minutes) +GET_SID_WHEN_STMT_LIMIT= + +# default false +CHANGE_DB2_SID_QUERY= + +# default false +COMPRESS_SQL= + +# default false +USE_ORACLE_RAC= + +# default false +USE_TIBERO_TAC= + +# deprecated. default false +USE_TRACE_ORACLE= + +# default false +USE_TRACE_ORACLE2= + +# default false +USE_TRACE_POSTGRES= + +# default false +USE_TRACE_ORACLE2_CLEAR_PING= + +# default false +USE_TRACE_ORACLE3= + +# default false +USE_TRACE_DB2= + +# default false +USE_TRACE_MSSQL= + +# default false +USE_TRACE_TIBERO= + +# default false +USE_TRACE_TIBERO3= + +# default 200 +CONNECTION_CLASS_LIMIT= + +# default 2000 +CONNECTION_LIMIT= + +# default 60927 +SQL_TEXT_BUFFER_SIZE= + +# default false +RMI_GET_PARAM= + +# default 1024 +MONGO_BIND_SIZE= + +# default empty string +PLC_MESSAGE= + +# default empty string +RUM_MESSAGE= + +# default false +USE_NONE_ASYNCKEY_IMXUTS_PACKET= + +# default false +SEND_OOM_ALARM_DIRECTLY= + +# default false +USE_JAR_LIST= + +# default false +USE_TRX_NAME_WHEN_LEAVE= + +# default true +DISABLE_WEBID= + +# default true +DISABLE_DETAIL_DB_INFO= + +# default false +ENABLE_TRACE_JSP_CLASS= + +# default false +DISABLE_EXCLUDE_THREAD= + +# default false +IMX_RUN_ON_CONTAINER= + +# default /tmp +IMX_WID_PATH= + +# default false +DISABLE_OSM= + +# default true +ENABLE_RELOAD_ADVICE= + +# default false +ENABLE_BATCH_MODE= + +# default 3600 +RUM_SCRIPT_INJECTION_CLIENT_RESET_SECOND= + +# default -1 +RUM_SCRIPT_INJECTION_CLIENT_COUNT= + +# default false +USE_XRT_HANDLE= + +# default false +DISABLE_SQL= + +# default false +ENABLE_POOL_NAME_GET_BY_CONN= + +# default false +USE_LONG_SQL= + +# default 1,2,3, 1: Environment, 2: InetAddress, 3: Command +HOSTNAME_COLLECT_TYPE_PRIORITY= + +# default false +DISABLE_CLASS_SOURCE= + +# default false +DISABLE_CLASS_META_CACHING= + +# default 0x000000000 eg) RMI,HTML,RESPONSE,CLASS,GC,UDP,TCP,TRACE,DEBUG +DEBUG=0x000000000 diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.auto.regist.json b/intermax/23.12.07.02/jspd/cfg/jspd.auto.regist.json new file mode 100755 index 0000000..e69de29 diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.file.history b/intermax/23.12.07.02/jspd/cfg/jspd.file.history new file mode 100755 index 0000000..9a0e5ad --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.file.history @@ -0,0 +1 @@ +#D:\dump1.txt diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.jdbc.advice b/intermax/23.12.07.02/jspd/cfg/jspd.jdbc.advice new file mode 100755 index 0000000..be4902c --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.jdbc.advice @@ -0,0 +1,45 @@ +poolClose@com.exem.weave.sql.XmPoolClose +ibatisClose@com.exem.weave.sql.XmIbatisClose +#jdbc@com.exem.weave.sql.XmJdbc + +########## POOL ########## + +poolClose=weblogic/jdbc/rmi/SerialConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTAConnection.close()V +poolClose=weblogic/jdbc/wrapper/JTSConnection.close()V +poolClose=weblogic/jdbc/wrapper/PoolConnection.close()V + +ibatisClose=com/ibatis/common/jdbc/SimpleDataSource.pushConnection(Lcom/ibatis/common/jdbc/SimpleDataSource$SimplePooledConnection;)V + +########## JDBC ########## + +### db2jcc ### +### Note: Enable both options ### +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,XADATASOURCE:com/ibm/db2/jcc/DB2XADataSource,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/conn,CALLABLE:com/ibm/db2/jcc/cstmt,PREPARE:com/ibm/db2/jcc/pstmt,STATEMENT:com/ibm/db2/jcc/stmt,RESULTSET:com/ibm/db2/jcc/resultset +jdbc=DRIVER:com/ibm/db2/jcc/DB2Driver,POOLDATASOURCE:com/ibm/db2/jcc/DB2ConnectionPoolDataSource,CONNECTION:com/ibm/db2/jcc/am/Connection,PREPARE:com/ibm/db2/jcc/am/jo,STATEMENT:com/ibm/db2/jcc/am/io,RESULTSET:com/ibm/db2/jcc/am/ResultSet + +### jtds-1.2 ### +#jdbc=DRIVER:net/sourceforge/jtds/jdbc/Driver,POOLDATASOURCE:net/sourceforge/jtds/jdbcx/JtdsDataSource,CONNECTION:net/sourceforge/jtds/jdbc/ConnectionJDBC2,CALLABLE:net/sourceforge/jtds/jdbc/JtdsCallableStatement,PREPARE:net/sourceforge/jtds/jdbc/JtdsPreparedStatement,STATEMENT:net/sourceforge/jtds/jdbc/JtdsStatement,RESULTSET:net/sourceforge/jtds/jdbc/JtdsResultSet,NEXT:true + +### edb-jdbc15 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc23/AbstractJdbc23ConnectionPoolDataSource,CONNECTION:com/edb/jdbc2/AbstractJdbc2Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### edb-jdbc16, edb-jdbc17 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/PGConnectionPoolDataSource,CONNECTION:com/edb/jdbc/PgConnection,CALLABLE:com/edb/jdbc/PgCallableStatement,PREPARE:com/edb/jdbc/PgPreparedStatement,STATEMENT:com/edb/jdbc/PgStatement,RESULTSET:com/edb/jdbc/PgResultSet,NEXT:true + +### another edb-jdbc16 ### +#jdbc=DRIVER:com/edb/Driver,POOLDATASOURCE:com/edb/ds/jdbc4/AbstractJdbc4ConnectionPoolDataSource,CONNECTION:com/edb/jdbc4/Jdbc4Connection,CALLABLE:com/edb/jdbc2/AbstractJdbc2Statement,PREPARE:com/edb/jdbc2/AbstractJdbc2Statement,STATEMENT:com/edb/jdbc2/AbstractJdbc2Statement,RESULTSET:com/edb/jdbc2/AbstractJdbc2ResultSet,NEXT:true + +### postgresql-42.2.5 ### +jdbc=DRIVER:org/postgresql/Driver,POOLDATASOURCE:org/postgresql/ds/PGConnectionPoolDataSource,CONNECTION:org/postgresql/jdbc/PgConnection,CALLABLE:org/postgresql/jdbc/PgCallableStatement,PREPARE:org/postgresql/jdbc/PgPreparedStatement,STATEMENT:org/postgresql/jdbc/PgStatement,RESULTSET:org/postgresql/jdbc/PgResultSet,NEXT:true + +### mariadb-2.3.3 ### +### Note: Enable both options ### +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/BasePrepareStatement,PREPARE:org/mariadb/jdbc/ClientSidePreparedStatement,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true +#jdbc=DRIVER:org/mariadb/jdbc/Driver,POOLDATASOURCE:org/mariadb/jdbc/MariaDbDataSource,CONNECTION:org/mariadb/jdbc/MariaDbConnection,CALLABLE:org/mariadb/jdbc/MariaDbPreparedStatementClient,PREPARE:org/mariadb/jdbc/MariaDbPreparedStatementClient,STATEMENT:org/mariadb/jdbc/MariaDbStatement,RESULTSET:org/mariadb/jdbc/internal/com/read/resultset/SelectResultSet,NEXT:true + +### mysql-connector-java-8.0.15 ### +#jdbc=DRIVER:com/mysql/cj/jdbc/NonRegisteringDriver,POOLDATASOURCE:com/mysql/cj/jdbc/MysqlDataSource,CONNECTION:com/mysql/cj/jdbc/ConnectionImpl,CALLABLE:com/mysql/cj/jdbc/CallableStatement,PREPARE:com/mysql/cj/jdbc/ClientPreparedStatement,STATEMENT:com/mysql/cj/jdbc/StatementImpl,RESULTSET:com/mysql/cj/jdbc/result/ResultSetImpl,NEXT:true + +### cubrid-10.1.3 ### +#jdbc=DRIVER:cubrid/jdbc/driver/CUBRIDDriver,POOLDATASOURCE:cubrid/jdbc/driver/CUBRIDDataSource,CONNECTION:cubrid/jdbc/driver/CUBRIDConnection,CALLABLE:cubrid/jdbc/driver/CUBRIDPreparedStatement,PREPARE:cubrid/jdbc/driver/CUBRIDPreparedStatement,STATEMENT:cubrid/jdbc/driver/CUBRIDStatement,RESULTSET:cubrid/jdbc/driver/CUBRIDResultSet,NEXT:true diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.local.advice b/intermax/23.12.07.02/jspd/cfg/jspd.local.advice new file mode 100755 index 0000000..7dd4d28 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.local.advice @@ -0,0 +1,14 @@ + +### 작성방법 +# 패키지 및 클래스 구분자는 slash(/)이며 클래스와 메소드는 dot(.)으로 구분한다. +# 강제포함, 제외, 포함 순으로 높은 우선순위를 갖는다. +# 강제포함은 exclamation mark(!), 제외는 dash(-)를 접두사로 붙여 표기한다. +# 와일드카드 문자(*)를 포함해 startWith, endWith 연산을 수행할 수 있다. +# 로드된 전체 클래스를 대상으로한 설정은 안정성 문제로 인해 동적 적용되지 않는다. + +### 작성예시 +# com/inzent.* +# -com/inzent/igate.* +# !com/inzent/igate/util.* + +!javax/servlet/http/HttpServlet.* \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.local.advice.all b/intermax/23.12.07.02/jspd/cfg/jspd.local.advice.all new file mode 100755 index 0000000..7e81c40 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.local.advice.all @@ -0,0 +1,47 @@ +#com/inzent.* +#-com/inzent/igate.* +#!com/inzent/igate/util.* +*.* +#!javax/servlet/http/HttpServlet.* + +-*log4j.* +-*logging.* +-*Loader + +-AOPProxy$ +-$Proxy* +-account/* +-antlr/* +-bsh/* +-com/* +-COM/* +-compressionFilters/* +-EDU/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jennifer/* +-jeus/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-net/* +-netscape/* +-oracle/* +-org/* +-schemacom_bea_xml/* +-signgate/* +-tmax/*webt/* +-weblogic/* +-wlstLibSample$ +-workshop +-ch/*qos/*logback/* +-elsoft/* diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.method.list b/intermax/23.12.07.02/jspd/cfg/jspd.method.list new file mode 100755 index 0000000..41cd497 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.method.list @@ -0,0 +1,66 @@ +#include +* + +#exclude +-javax/* +-java/* +-jrockit/* +-jdk/* +-com/exem/* +-org/bsp/* +-sun/* +-com/sun/* +-ibm/* +-com/ibm/* +-org/apache/* +-org/springframework/* +-com/google/* + +-*.toString()Ljava/lang/String; +-*.equals(Ljava/lang/Object;)Z +-*.hashCode()I +-*.()V +-*.()V +-*.clone()Ljava/lang/Object; +-*.finalize()V +-*.wait(J)V +-*.wait(JI)V +-*$* +-*_aroundBody* +-*__WL_* + +-*log4j* +-*logging* +-*Loader +-AOPProxy$* +-$Proxy* +-account/* +-antlr/* +-bsh/* +-compressionFilters/* +-examples/* +-external/* +-filters/* +-gnu/* +-hello/* +-javassist/* +-javelin/* +-jboss/* +-jrun/* +-jrunx/* +-kodo/* +-gateway/* +-gateway2/* +-listeners/* +-netscape/* +-oracle/* +-schemacom_bea_xml/* +-signgate/* +-weblogic/* +-wlstLibSample$* +-workshop* +-ch/qos/logback/* +-elsoft/* +-org/springframework/jdbc/datasource/TransactionAwareDataSourceProxy.* + +#forceInclude diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.other.advice b/intermax/23.12.07.02/jspd/cfg/jspd.other.advice new file mode 100755 index 0000000..da1ff0b --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.other.advice @@ -0,0 +1,62 @@ +txnProFrameV1@com.exem.weave.servlet.XmTxnProFrameV1 +txnNICSV1@com.exem.weave.servlet.XmTxnNICSV1 +txnTITV1@com.exem.weave.servlet.XmTxnTITV1 +#txnProFrameV3@com.exem.weave.servlet.XmTxnProFrameV3 + +jspWrite@com.exem.weave.servlet.XmJspWrite +jspWriteA@com.exem.weave.servlet.XmJspWriteA +jspWriteB@com.exem.weave.servlet.XmJspWriteB +jspWriteC@com.exem.weave.servlet.XmJspWriteC + +logRecord@com.exem.weave.io.XmLogRecord + +servletThrowable@com.exem.weave.io.XmServletThrowable + +temp@com.exem.weave.temp.XmTemp + +txnProFrameV1=com/tmax/proframe/object/CommonBufferImpl.setSystemHeader(Lcom/tmax/proframe/object/SystemHeader;)V + +txnNICSV1=com/tmax/proframe/object/SystemHeader.setPfmTxCode(Ljava/lang/String;)V + +txnTITV1=tit/service/miplatform/MiplatformBusinessContext.getInputDataset(Ljava/lang/String;)Lcom/tobesoft/platform/data/Dataset; + +#txnProFrameV3=proframe/core/context/ProFrameContext.getProFrameHeaderInstance()Lproframe/cto/ProFrameHeader; + +jspWrite=jeus/servlet/jsp/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=jeus/servlet/jsp2/runtime/JspWriterImpl.write(Ljava/lang/String;)V +jspWrite=weblogic/servlet/jsp/JspWriterImpl.print(Ljava/lang/String;)V + +jspWriteA=weblogic/servlet/jsp/JspWriterImpl.write([BLjava/lang/String;)V +jspWriteB=org/apache/jasper/runtime/JspWriterImpl.write(Ljava/lang/String;II)V +jspWriteC=org/apache/jasper/runtime/JspWriterImpl.write([CII)V + +logRecord=jeus/util/logging/JeusLogRecord.(Ljava/util/logging/Level;Ljava/lang/String;)V + +servletThrowable=javax/servlet/ServletException.getRootCause()Ljava/lang/Throwable; + +#XmTxnKepco@com.exem.weave.servlet.XmTxnKepco +#XmTxnKepco= +#getName(String txnName, Object[] obj) + +#XmSetTxnName@com.exem.weave.tx.XmSetTxnName +#XmSetTxnName= +#TXN_NAME_SET_INDEX=1~n +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnName2@com.exem.weave.tx.XmSetTxnName2 +#XmSetTxnName2= +#TXN_NAME_SET_INDEX2=1~n + +#XmSetTxnNameRet@com.exem.weave.tx.XmSetTxnNameRet +#XmSetTxnNameRet= +#getName(XmHttpRequest req, Object obj) + +#XmSetTxnNameRet2@com.exem.weave.tx.XmSetTxnNameRet2 +#XmSetTxnNameRet2= + +#XmAppendTxnName@com.exem.weave.tx.XmAppendTxnName +#XmAppendTxnName= +#TXN_NAME_APPEND_INDEX=1~n + +#XmAppendTxnNameRet@com.exem.weave.tx.XmAppendTxnNameRet +#XmAppendTxnNameRet= \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.param.runtime b/intermax/23.12.07.02/jspd/cfg/jspd.param.runtime new file mode 100755 index 0000000..e69de29 diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.plc.list b/intermax/23.12.07.02/jspd/cfg/jspd.plc.list new file mode 100755 index 0000000..466d714 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.plc.list @@ -0,0 +1,23 @@ +########################################### PLC 기능 ########################################### + +### 작성방법 +# [숫자] : 제어 기준 수치(기준 트랜잭션수) +# 접두사 ^(caret) : 차단할 트랜잭션명 +# 접두사 .*(dot asterisk) : 와일드 카드 +# 제어 기준은 여러 개를 입력할 수 있으며, 그 기준은 이 파일의 위에서 아래순으로 우선 적용된다. + +### 작성예시 +# [200] +# ^.*/select +# +# [100] +# ^.*oracle/select +# .*postgres/select +# +# [50] +# ^.*postgres/select +# +# 액티브 트랜잭션 수가 200 이상이면 /select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 oracle/select로 끝나는 모든 트랜잭션을 차단한다. +# 액티브 트랜잭션 수가 100 이상이면 postgres/select로 끝나는 트랜잭션은 허용한다. +# 액티브 트랜잭션 수가 50 이상이면 postgres/select로 끝나는 모든 트랜잭션을 차단한다. \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.x.advice b/intermax/23.12.07.02/jspd/cfg/jspd.x.advice new file mode 100755 index 0000000..8c55134 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.x.advice @@ -0,0 +1,75 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpCallHeader@com.exem.weave.io.XmHttpCallHeader +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xInbound@com.exem.weave.io.XmXInbound +xOutbound@com.exem.weave.io.XmXOutbound +xReply@com.exem.weave.io.XmXReply +service@com.exem.weave.servlet.XmService + +########## APPLICATION ########## +#appService= + +#websphere 8.5 browser response time +#service=com/ibm/ws/webcontainer/filter/WebAppFilterManager.invokeFilters(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lcom/ibm/wsspi/webcontainer/servlet/IServletContext;Lcom/ibm/wsspi/webcontainer/RequestProcessor;Ljava/util/EnumSet;)Z + +## Spring Cloud Gateway ## +#appService=org/springframework/cloud/gateway/filter/NettyRoutingFilter.filter(Lorg/springframework/web/server/ServerWebExchange;Lorg/springframework/cloud/gateway/filter/GatewayFilterChain;)Lreactor/core/publisher/Mono; + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/commons/httpclient/HttpMethodBase.execute(Lorg/apache/commons/httpclient/HttpState;Lorg/apache/commons/httpclient/HttpConnection;)I + +## soap ## +httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;II)Lorg/apache/soap/transport/TransportMessage; +## soap-2.3.jar higher ## +#httpCall=org/apache/soap/util/net/HTTPUtils.post(Ljava/net/URL;Lorg/apache/soap/transport/TransportMessage;ILjava/lang/String;IILjava/lang/Boolean;)Lorg/apache/soap/transport/TransportMessage; +## apache axis ## +httpCall=org/apache/axis/client/Call.setRequestMessage(Lorg/apache/axis/Message;)V +## reactor netty / jetty (webflux) ## +httpCall=reactor/netty/http/client/HttpClientConnect.connect()Lreactor/core/publisher/Mono; +httpCall=org/eclipse/jetty/client/HttpRequest.send(Lorg/eclipse/jetty/client/api/Response$CompleteListener;)V +## Spring AsyncRestTemplate ## +httpCall=org/springframework/web/client/AsyncRestTemplate$AsyncRequestCallbackAdapter.doWithRequest(Lorg/springframework/http/client/AsyncClientHttpRequest;)V +## apache httpasyncclient ## +httpCall=org/apache/http/impl/nio/client/CloseableHttpAsyncClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/protocol/HttpContext;Lorg/apache/http/concurrent/FutureCallback;)Ljava/util/concurrent/Future; +httpCall=org/apache/http/impl/nio/client/CloseableHttpAsyncClient.execute(Lorg/apache/http/nio/protocol/HttpAsyncRequestProducer;Lorg/apache/http/nio/protocol/HttpAsyncResponseConsumer;Lorg/apache/http/concurrent/FutureCallback;)Ljava/util/concurrent/Future; +## okhttp ## +httpCallHeader=okhttp3/Request$Builder.build()Lokhttp3/Request; +httpCall=okhttp3/RealCall.execute()Lokhttp3/Response; +httpCall=okhttp3/RealCall.enqueue(Lokhttp3/Callback;)V +## spring cloud zuul (restclient) ## +httpCallHeader=com/netflix/client/http/HttpRequest$Builder.build()Lcom/netflix/client/http/HttpRequest; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V + +########## Kafka ########## +kafkaProduce@com.exem.weave.io.XmKafkaProduce +kafkaProduce=org/apache/kafka/clients/producer/KafkaProducer.doSend(Lorg/apache/kafka/clients/producer/ProducerRecord;Lorg/apache/kafka/clients/producer/Callback;)Ljava/util/concurrent/Future; + +########## RabbitMQ ########## +rabbitMQPublish@com.exem.weave.io.XmRabbitMQPublish +rabbitMQPublish=com/rabbitmq/client/impl/AMQChannel.transmit(Lcom/rabbitmq/client/impl/AMQCommand;)V diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.x.advice.sample b/intermax/23.12.07.02/jspd/cfg/jspd.x.advice.sample new file mode 100755 index 0000000..336c402 --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/jspd.x.advice.sample @@ -0,0 +1,63 @@ +appService@com.exem.weave.servlet.XmAPPService +httpCall@com.exem.weave.io.XmHttpCall +httpRequest@com.exem.weave.io.XmHttpRequest +xCall@com.exem.weave.io.XmXCall +xOutbound@com.exem.weave.io.XmXOutbound +xInbound@com.exem.weave.io.XmXInbound +xReply@com.exem.weave.io.XmXReply +#httpURL@com.exem.weave.io.XmHttpURL +#txnKBank@com.exem.weave.tx.XmSetTxnName + +########## APPLICATION ########## +#appService= + +########## IGATE MCI ############ +#appService=com/inzent/igate/service/activity/ActService.executeService(Lcom/inzent/igate/message/Record;Lcom/inzent/igate/repository/meta/Service;Lcom/inzent/igate/message/Record;Lorg/apache/commons/logging/Log;)Lcom/inzent/igate/message/Record; +#httpURL=com/inzent/igate/session/http/thin/HttpClientSession.getRequestURI(Lcom/inzent/igate/adapter/AdapterParameter;)Ljava/lang/String; +#HttpCall=com/inzent/igate/session/http/thin/HttpSession.writeHeader(Ljava/util/Map;)V + +########## Bankware CORE ########## +#txnKBank=kbank/extention/service/endpoint/HttpServiceEndpoint.loadParameters(Lbxm/request/ResolvedRequest;Lkbank/extention/context/impl/KbankInstitutionParameters;Lkbank/extention/context/impl/KbankCachedControlParameters;Lkbank/extention/service/trace/KbankServiceMessageTrace;)V + +########## TIBCO BW EAI ########### +#appService=com/tibco/plugin/share/http/client/JakartaHttpTransportDriver$RequestExecutor.run()V +#appService=com/tibco/plugin/tcp/TCPReadActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#appService=com/tibco/plugin/tcp/TCPWriteActivity.eval(Lcom/tibco/pe/plugin/ProcessContext;Lcom/tibco/xml/datamodel/XiNode;)Lcom/tibco/xml/datamodel/XiNode; +#xCall=com/tibco/bw/service/binding/bwhttp/impl/HttpTransportApplication.a(Lcom/tibco/xml/soap/api/transport/TransportMessage;Lcom/tibco/bw/service/config/ec/OperationConfiguration;Lcom/tibco/plugin/share/siapiplugin/bw/BwPort;Lcom/tibco/plugin/share/security/context/SecurityContext;)V +#xOutbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.setContent([B)V +#xInbound=com/tibco/xml/soap/impl/transport/DefaultTransportEntity.getContent()[B +#xInbound=com/tibco/xml/data/primitive/values/XsBase64Binary.castAsBase64Binary()[B +#xCall=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.long()[B +#xOutbound=com/tibco/plugin/tcp/BinaryDelimitedStreamReader.void()[B + +########## ANYLINK4 FEP ########### +#txnKBankRet=anylink/engine/AnyLink.responseMapping([BLjava/lang/Object;[BLjava/lang/Object;ILanylink/common/object/TxParameter;ZLanylink/common/exception/AnyLinkRequestFormatErrorException;)[B +#xCall=anylink/engine/AnyLink.process([BLjava/lang/Object;Z[Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Object; +#xOutbound=anylink/engine/AnyMapper.mapping([B[BLjava/lang/Object;Z)V + +########## HTTP ########## +httpCall=weblogic/net/http/HttpClient.parseHTTP(Lweblogic/net/http/MessageHeader;)V +httpRequest=weblogic/net/http/HttpURLConnection.writeRequests()V +httpCall=org/apache/commons/httpclient/HttpClient.executeMethod(Lorg/apache/commons/httpclient/HostConfiguration;Lorg/apache/commons/httpclient/HttpMethod;Lorg/apache/commons/httpclient/HttpState;)I +httpCall=org/apache/http/impl/client/InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/MinimalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; +httpCall=org/apache/http/impl/client/AbstractHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse; + +########## TMAX ########## +xCall=tmax/webt/WebtRemoteService.tpcall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; +xCall=tmax/webt/WebtRemoteService.tpacall(Ljava/lang/String;Ltmax/webt/WebtBuffer;Ltmax/webt/WebtAttribute;Ltmax/webt/WebtMessageHandler;)I +#xOutbound=tmax/webt/io/WebtOutputStream.getSerializedPacket(Ltmax/webt/WebtBuffer;)[B +#xReply=tmax/webt/WebtRemoteService.tpgetrply(ILtmax/webt/WebtAttribute;)Ltmax/webt/WebtBuffer; + +########## TUXEDO ########## +xCall=weblogic/wtc/gwt/TuxedoConnection.tpcall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;I)Lweblogic/wtc/jatmi/Reply; +xCall=weblogic/wtc/gwt/TuxedoConnection.tpacall(Ljava/lang/String;Lweblogic/wtc/jatmi/TypedBuffer;ILweblogic/wtc/jatmi/TpacallAsyncReply;)Lweblogic/wtc/jatmi/CallDescriptor; +#xOutbound=weblogic/wtc/jatmi/TuxedoArrayOutputStream.getByteArrayReference()[B +#xReply=weblogic/wtc/gwt/TuxedoConnection.tpgetrply(Lweblogic/wtc/jatmi/CallDescriptor;I)Lweblogic/wtc/jatmi/Reply; + +########## SAP ########## +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;)V +xCall=com/sap/conn/jco/rt/AbapFunction.execute(Lcom/sap/conn/jco/JCoDestination;Ljava/lang/String;Ljava/lang/String;)V +#xOutbound=com/sap/conn/rfc/driver/CpicDriver.write([BIZ)I +#xReply=com/sap/conn/rfc/engine/RfcIoOpenCntl.RfcReceive([Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcParameter;[Lcom/sap/conn/rfc/api/IRfcTable;Lcom/sap/conn/jco/JCoRepository;)V diff --git a/intermax/23.12.07.02/jspd/cfg/jspd.x.include b/intermax/23.12.07.02/jspd/cfg/jspd.x.include new file mode 100755 index 0000000..e69de29 diff --git a/intermax/23.12.07.02/jspd/cfg/license.TRIAL_20240331.rts.key.org b/intermax/23.12.07.02/jspd/cfg/license.TRIAL_20240331.rts.key.org new file mode 100644 index 0000000..e71497d --- /dev/null +++ b/intermax/23.12.07.02/jspd/cfg/license.TRIAL_20240331.rts.key.org @@ -0,0 +1 @@ +DE912939B7753C71EB39FA373F2821BFF4CE192455CAC732E0A3296B18CE7EECDCE90629F84BAE04461D70EBE826159DC6DDAD9E5560C491253EFE0F97D7C064B4DB7C93B164A13BD14B9CC5ED9D7F44E8035E13FE8FCC86E96DC0E14B38EE0415DFBA01B30665F24AE2629817F98BBF29D5AFEA1FB3A05E07A37EEA1A29F292DCDE19E5C83504CF15C749AE6FA90133FCBA48BABD92EF6E67EBFE6BAC13D8EA98B52F9BBFE6D9EC31A16A1CA70AD6ED635328A2EB8B7AAA090B86C523DFC9808BF03DAF24D02103CD137F48A8AEC817D720B03C6238F3A5E67BC367C8F1F01162CE01A197354F376F08981248D632B32BB7EBA81A44ABE937F2A77AAAA26E7DFFFFFF0278A819122C2F5AC1F7D3577B285196478211469284146448312180453117360376193492263207352098494382102091034201019230259218249290199103268257039400248332088006439232317114343475277071129269427437121150052491450016000417184500365362105502480337160128358345305020066425083420499432044143273250418115465440430266306399057138443407282333498374353296304084291252467155267338C7130BC0277A685FA0B356700B731227D0907134A426E53518A9FC3B67AF8D5A9F8382CF6DBABAFB1EAA4C311B4BF2A3EA9BB5C813056BA73B9D76699A8F839B6205C79232E4C20C3F4F8299EB01C541CA02CA99C17024CB04CC9B88ED3B79FBD32FD179A7EDBDE960A6E6DB2F3E0FC1E841ABA24E955756F0298B1171649BA6DD616B1FD442C9B949B69257E015A3F1B72F8BF0753980D8D457A3AA16FAAC2EBB1D10652A24421865165047F1B48E32D325BD623F14487042D48C79C9F750684256C2069308234DED3C06696DDAD32071A1C375FB63494767BBD78A1966F87A3EA3EC9FF243BBF36DBE817BC79BAC27A009DB1A95B5235CCF6FE67791F984BE1A2A24049A07BDAE989FCB000AAE650D06BD67E21926E3738B747C0E8250CF7AE32397F1665B201056B98224244D75A7D89DBD11461FDD9C49C6C0E354ED6A33DFB5BE634F05D6E5951F40DEDD50984FB72BB865A95373E6768C434D16F6782739760B0783F022E5EA1BDF9B4B3B10A1E061811807CC27B2A1DFEF153B9A67C0E040D77CC7C581F6F43342F5C6777995216C93844E7A90310AC7A0826F5C6F0FD10C3664448DAEC57799558761C57E044606C8D302CA7F53B0E358D256E1A2368C2550EC0991B9A30538E5F0C2DA10E3DED523535190237AF46331C243D7BC6ECA7BC5752AFDF55AB98CDE105608345834E71BB7C5141AB1A7FBE9FEF6CCA5B07AF0ACA1E621E0D517D4122D72B1AC10293F16B56C0BFA0544A898A19063903E491CCF5F4C01C49B01E819841131922303d391356254145228RTS_TRIAL_20240331 \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/data/agent/0 b/intermax/23.12.07.02/jspd/data/agent/0 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/0 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5002 b/intermax/23.12.07.02/jspd/data/agent/5002 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5002 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5004 b/intermax/23.12.07.02/jspd/data/agent/5004 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5004 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5005 b/intermax/23.12.07.02/jspd/data/agent/5005 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5005 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5006 b/intermax/23.12.07.02/jspd/data/agent/5006 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5006 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5007 b/intermax/23.12.07.02/jspd/data/agent/5007 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5007 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5008 b/intermax/23.12.07.02/jspd/data/agent/5008 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5008 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5011 b/intermax/23.12.07.02/jspd/data/agent/5011 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5011 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5012 b/intermax/23.12.07.02/jspd/data/agent/5012 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5012 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5013 b/intermax/23.12.07.02/jspd/data/agent/5013 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5013 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5014 b/intermax/23.12.07.02/jspd/data/agent/5014 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5014 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5015 b/intermax/23.12.07.02/jspd/data/agent/5015 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5015 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5024 b/intermax/23.12.07.02/jspd/data/agent/5024 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5024 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5026 b/intermax/23.12.07.02/jspd/data/agent/5026 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5026 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5028 b/intermax/23.12.07.02/jspd/data/agent/5028 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5028 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/5030 b/intermax/23.12.07.02/jspd/data/agent/5030 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5030 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5035 b/intermax/23.12.07.02/jspd/data/agent/5035 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5035 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5055 b/intermax/23.12.07.02/jspd/data/agent/5055 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5055 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/5093 b/intermax/23.12.07.02/jspd/data/agent/5093 new file mode 100644 index 0000000..573541a --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/5093 @@ -0,0 +1 @@ +0 diff --git a/intermax/23.12.07.02/jspd/data/agent/imxosm b/intermax/23.12.07.02/jspd/data/agent/imxosm new file mode 100644 index 0000000..5481399 Binary files /dev/null and b/intermax/23.12.07.02/jspd/data/agent/imxosm differ diff --git a/intermax/23.12.07.02/jspd/data/agent/imxtxn b/intermax/23.12.07.02/jspd/data/agent/imxtxn new file mode 100644 index 0000000..842722e Binary files /dev/null and b/intermax/23.12.07.02/jspd/data/agent/imxtxn differ diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/0 b/intermax/23.12.07.02/jspd/data/agent/oom/0 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/0 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5002 b/intermax/23.12.07.02/jspd/data/agent/oom/5002 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5002 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5004 b/intermax/23.12.07.02/jspd/data/agent/oom/5004 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5004 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5005 b/intermax/23.12.07.02/jspd/data/agent/oom/5005 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5005 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5006 b/intermax/23.12.07.02/jspd/data/agent/oom/5006 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5006 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5007 b/intermax/23.12.07.02/jspd/data/agent/oom/5007 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5007 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5008 b/intermax/23.12.07.02/jspd/data/agent/oom/5008 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5008 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5011 b/intermax/23.12.07.02/jspd/data/agent/oom/5011 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5011 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5012 b/intermax/23.12.07.02/jspd/data/agent/oom/5012 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5012 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5013 b/intermax/23.12.07.02/jspd/data/agent/oom/5013 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5013 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5014 b/intermax/23.12.07.02/jspd/data/agent/oom/5014 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5014 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5015 b/intermax/23.12.07.02/jspd/data/agent/oom/5015 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5015 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5024 b/intermax/23.12.07.02/jspd/data/agent/oom/5024 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5024 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5026 b/intermax/23.12.07.02/jspd/data/agent/oom/5026 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5026 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5028 b/intermax/23.12.07.02/jspd/data/agent/oom/5028 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5028 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5030 b/intermax/23.12.07.02/jspd/data/agent/oom/5030 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5030 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5035 b/intermax/23.12.07.02/jspd/data/agent/oom/5035 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5035 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5055 b/intermax/23.12.07.02/jspd/data/agent/oom/5055 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5055 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/agent/oom/5093 b/intermax/23.12.07.02/jspd/data/agent/oom/5093 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/agent/oom/5093 @@ -0,0 +1 @@ +1 diff --git a/intermax/23.12.07.02/jspd/data/common.immf b/intermax/23.12.07.02/jspd/data/common.immf new file mode 100644 index 0000000..e9ab30e Binary files /dev/null and b/intermax/23.12.07.02/jspd/data/common.immf differ diff --git a/intermax/23.12.07.02/jspd/data/jspd.dbm b/intermax/23.12.07.02/jspd/data/jspd.dbm new file mode 100644 index 0000000..059069e --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/jspd.dbm @@ -0,0 +1,6 @@ +10.10.52.4.1521.free=-2054787924 +10.10.52.4.1521.free=-2054787924 +10.10.52.4.5432.intermax=122261965 +10.10.52.4.3306.wrm=-902146507 +10.10.52.4.3306.wrm=-902146507 +10.10.52.4.3306.wrm=-902146507 diff --git a/intermax/23.12.07.02/jspd/data/jspd.pools b/intermax/23.12.07.02/jspd/data/jspd.pools new file mode 100644 index 0000000..342f8a1 --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/jspd.pools @@ -0,0 +1,5 @@ +WAS_ORACLE_DATASOURCE=1 +CUSTDS=2 +ORA19C=3 +JDBC/POSTGRESDS=5 +MYSQLDB=6 diff --git a/intermax/23.12.07.02/jspd/data/xm_jspd_api_em.js b/intermax/23.12.07.02/jspd/data/xm_jspd_api_em.js new file mode 100755 index 0000000..83166c9 --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/xm_jspd_api_em.js @@ -0,0 +1,147 @@ + +(function () { + var _XM_TID = '%{XM_TID}'; + var _XM_TRACE_ELAPSE = '%{XM_TRACE_ELAPSE}'; + var _XM_CLIENT_API = '_XM_CLIENT_API%{XM_CLIENT_API}'; + var _XM_CLIENT_ADDR = '%{XM_CLIENT_ADDR}'; + var _XM_TID_HEADER = 'X-Xm-Tid'; + var _XM_TRACE_ELAPSE_HEADER = 'X-Xm-ElapseTime'; + + + var openProxied = window.XMLHttpRequest.prototype.open; + window.XMLHttpRequest.prototype.open = function () { + if (arguments[1].indexOf(_XM_CLIENT_API) == -1) { + if (document.removeEventListener) { + this.removeEventListener("loadstart", _xm_loadstart); + this.removeEventListener("loadend", _xm_loadend); + } + else { + this.detachEvent("loadstart", _xm_loadstart); + this.detachEvent("loadend", _xm_loadend); + } + if (this.addEventListener) { + this.addEventListener("loadstart", _xm_loadstart); + this.addEventListener("loadend", _xm_loadend); + } + else if (this.attachEvent) { + this.attachEvent("onloadstart", _xm_loadstart); + this.attachEvent("onloadend", _xm_loadend); + } + } + return openProxied.apply(this, [].slice.call(arguments)); + }; + + var _xm_loadstart = function () { + var eventProxied = this.onreadystatechange; + this.onreadystatechange = function () { + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.es = Date.now(); + } + + if (eventProxied != null && typeof eventProxied != 'undefined') { + eventProxied.apply(this, [].slice.call(arguments)); + } + + if (this.readyState === XMLHttpRequest.DONE) { + this._xm_clientinfo.ee = Date.now(); + } + }; + this._xm_clientinfo = __xm_create_clientinfo(); + this._xm_clientinfo.ss = Date.now(); + this._xm_clientinfo.se = Date.now(); + }; + + var _xm_loadend = function () { + if (typeof this._xm_clientinfo == 'undefined') return; + if (this._xm_clientinfo.es == 0) { + this._xm_clientinfo.es = Date.now(); + this._xm_clientinfo.ee = Date.now(); + } + this._xm_clientinfo.tid = this.getResponseHeader(_XM_TID_HEADER); + var traceElapseTime = this.getResponseHeader(_XM_TRACE_ELAPSE_HEADER); + + if (typeof traceElapseTime == 'undefined' || typeof this._xm_clientinfo.tid == 'undefined') { + return; + } + + if (traceElapseTime > this._xm_clientinfo.ee - this._xm_clientinfo.ss) { + return; + } + + var _xm_clientinfo = this._xm_clientinfo; + __xm_send_post(_xm_clientinfo); + }; + + function __xm_create_clientinfo() { + var clientinfo = {}; + clientinfo.tid = 0; + clientinfo.ss = 0; + clientinfo.se = 0; + clientinfo.es = 0; + clientinfo.ee = 0; + return clientinfo; + } + + function __xm_send_post(clientinfo) { + try{ + var queryParameters = 'tid=' + clientinfo.tid + '&ss=' + clientinfo.ss + "&se=" + clientinfo.se; + queryParameters += '&es=' + clientinfo.es + "&ee=" + clientinfo.ee; + + var xmlhttp; + if (window.XMLHttpRequest) { + xmlhttp = new XMLHttpRequest(); + } else { + xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); + } + + if(_XM_CLIENT_ADDR == "") { + xmlhttp.open('GET', './'+_XM_CLIENT_API+'?' + queryParameters, true); + }else{ + xmlhttp.open('GET', 'http://' + _XM_CLIENT_ADDR + '/' + _XM_CLIENT_API + '?' + queryParameters, true); + } + + xmlhttp.send(null); + + if (true) { + var sendElapseTime = clientinfo.se - clientinfo.ss; + var recvElapseTime = clientinfo.ee - clientinfo.es; + var serverElapseTime = clientinfo.es - clientinfo.se; + + console.log('__xm_send_post serverElapseTime=' + serverElapseTime + ', sendElapseTime=' + sendElapseTime + ', recvElapseTime=' + recvElapseTime); + } + } + catch(e) { + console.log(e); + } + } + + var _xm_window_load = function () { + //return; + setTimeout(function () { + var timing = window.performance.timing; + var clientinfo = __xm_create_clientinfo(); + clientinfo.ss = timing.navigationStart; + clientinfo.se = timing.connectEnd; + clientinfo.es = timing.responseEnd; + clientinfo.ee = timing.loadEventEnd; + clientinfo.tid = _XM_TID; + + if (_XM_TRACE_ELAPSE > clientinfo.ee - clientinfo.ss) { + return; + } + + __xm_send_post(clientinfo); + }, 0); + }; + + if (!window.performance || !window.performance.timing) { + return; + } + + if (this.addEventListener) { + this.addEventListener("load", _xm_window_load); + } + else if (this.attachEvent) { + this.attachEvent("onload", _xm_window_load); + } +})(); diff --git a/intermax/23.12.07.02/jspd/data/xm_plc_message.html b/intermax/23.12.07.02/jspd/data/xm_plc_message.html new file mode 100755 index 0000000..40a7658 --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/xm_plc_message.html @@ -0,0 +1,30 @@ + + + + Message (InterMax) + + + + + +
      %{XM_PLC_MESSAGE}
      + + + \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/data/xm_rum_message.html b/intermax/23.12.07.02/jspd/data/xm_rum_message.html new file mode 100755 index 0000000..d18d8f2 --- /dev/null +++ b/intermax/23.12.07.02/jspd/data/xm_rum_message.html @@ -0,0 +1,28 @@ + + + + Message (InterMax) + + + +

      InterMax Rum Message

      +
      %{XM_RUM_MESSAGE}
      + + \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/lib/IMXAgent.bat b/intermax/23.12.07.02/jspd/lib/IMXAgent.bat new file mode 100755 index 0000000..be91cab --- /dev/null +++ b/intermax/23.12.07.02/jspd/lib/IMXAgent.bat @@ -0,0 +1,22 @@ +@echo off + +setlocal + +SET INTERMAX_HOME=%1 +SET IMX_NAME=%2 +SET IMX_BIT=%3 + +if "%IMX_BIT%" == "32" ( + set "path=%INTERMAX_HOME%\lib\imx\DLL\x86;" +) + + +if not exist %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe ( + copy %INTERMAX_HOME%\lib\imx\%IMX_NAME%_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe + copy %INTERMAX_HOME%\lib\imx\imxtxn_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxtxn.exe + copy %INTERMAX_HOME%\lib\imx\imxuts_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxuts.exe +) + +%INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe -D + +exit 0 diff --git a/intermax/23.12.07.02/jspd/lib/IMXAgent.sh b/intermax/23.12.07.02/jspd/lib/IMXAgent.sh new file mode 100755 index 0000000..849c7ed --- /dev/null +++ b/intermax/23.12.07.02/jspd/lib/IMXAgent.sh @@ -0,0 +1,74 @@ +#!/bin/sh + +INTERMAX_HOME="$1" +IMX_NAME="$2" +IMX_BIT="$3" + +OS_NAME=`uname` +OS_ARCH=`uname -m` +IM_FILE=$INTERMAX_HOME"/lib/imx/"$IMX_NAME + +# check arguments +if [ $# -eq 3 ]; +then + if [ ! -f $IM_FILE ]; + then + # set process name + case $OS_NAME in + "HP-UX" ) OS_BIT=`getconf KERNEL_BITS` + if [ $OS_ARCH != "ia64" ]; + then + IMX_PROC_NAME=$IMX_NAME"_hppa_"$OS_BIT + else + IMX_PROC_NAME=$IMX_NAME"_hpia_"$OS_BIT + + # if [ $IMX_NAME = "imxosm" ] && [ $OS_BIT = "64" ] && [ $IMX_BIT = "32" ]; + # then + # IMX_PROC_NAME=$IMX_PROC_NAME"a"$IMX_BIT + # fi + fi + ;; + + "SunOS" ) OS_BIT=`isainfo -b` + IMX_PROC_NAME=$IMX_NAME"_sun_"$OS_BIT + ;; + + "AIX" ) if [ "" != "`file /usr/lib/boot/unix* | grep 64`" ]; + then + OS_BIT="64" + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_aix_"$OS_BIT + ;; + + "Linux" ) if [ $OS_ARCH = "x86_64" ]; + then + OS_BIT="64" + LDD_VER=`ldd --version 2>&1 | awk 'NR==1 {print $0; exit}' | awk -F' ' '{print $1}'` + if [ "$LDD_VER" = "musl" ];then + ADD_FLAG="_alpine" + fi + else + OS_BIT="32" + fi + IMX_PROC_NAME=$IMX_NAME"_linux_"$OS_BIT$ADD_FLAG + ;; + + * ) echo "Unkown OS Name: $OS_NAME" + exit 1 + ;; + + esac + + cp $INTERMAX_HOME"/lib/imx/"$IMX_PROC_NAME $IM_FILE + + chmod 750 $IM_FILE + + fi + + export INTERMAX_HOME + # start process + $IM_FILE -D + +fi diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm b/intermax/23.12.07.02/jspd/lib/imx/imxosm new file mode 100755 index 0000000..798aa9a Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_aix_64 b/intermax/23.12.07.02/jspd/lib/imx/imxosm_aix_64 new file mode 100755 index 0000000..c9f6d1b Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_aix_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_hpia_64 b/intermax/23.12.07.02/jspd/lib/imx/imxosm_hpia_64 new file mode 100755 index 0000000..51f5d97 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_hpia_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_32 b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_32 new file mode 100755 index 0000000..269f04b Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_32 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64 b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64 new file mode 100755 index 0000000..798aa9a Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64_alpine b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64_alpine new file mode 100755 index 0000000..9b98d74 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_linux_64_alpine differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_sun_64 b/intermax/23.12.07.02/jspd/lib/imx/imxosm_sun_64 new file mode 100755 index 0000000..caa0bb7 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_sun_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_32.exe b/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_32.exe new file mode 100755 index 0000000..6c43b2a Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_32.exe differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_64.exe b/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_64.exe new file mode 100755 index 0000000..5ee35f0 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxosm_win_64.exe differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn b/intermax/23.12.07.02/jspd/lib/imx/imxtxn new file mode 100755 index 0000000..d01acc9 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_aix_64 b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_aix_64 new file mode 100755 index 0000000..abd835e Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_aix_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_hpia_64 b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_hpia_64 new file mode 100755 index 0000000..c277163 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_hpia_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_32 b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_32 new file mode 100755 index 0000000..39d0856 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_32 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64 b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64 new file mode 100755 index 0000000..d01acc9 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64_alpine b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64_alpine new file mode 100755 index 0000000..f4e62f4 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_linux_64_alpine differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_sun_64 b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_sun_64 new file mode 100755 index 0000000..dcd83ce Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_sun_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_32.exe b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_32.exe new file mode 100755 index 0000000..177fff0 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_32.exe differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_64.exe b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_64.exe new file mode 100755 index 0000000..d23e2f8 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/imxtxn_win_64.exe differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/libs/libldap.so.5 b/intermax/23.12.07.02/jspd/lib/imx/libs/libldap.so.5 new file mode 100755 index 0000000..ad2f98d Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/libs/libldap.so.5 differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/msvcr100.dll b/intermax/23.12.07.02/jspd/lib/imx/msvcr100.dll new file mode 100755 index 0000000..0318fb0 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/msvcr100.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/msvcr100d.dll b/intermax/23.12.07.02/jspd/lib/imx/msvcr100d.dll new file mode 100755 index 0000000..5adaf8e Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/msvcr100d.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/vcruntime140.dll b/intermax/23.12.07.02/jspd/lib/imx/vcruntime140.dll new file mode 100755 index 0000000..64e5016 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/vcruntime140.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/vcruntime140d.dll b/intermax/23.12.07.02/jspd/lib/imx/vcruntime140d.dll new file mode 100755 index 0000000..671af4c Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/vcruntime140d.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/zlib1.dll b/intermax/23.12.07.02/jspd/lib/imx/zlib1.dll new file mode 100755 index 0000000..31996cd Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/zlib1.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/imx/zlibwapi.dll b/intermax/23.12.07.02/jspd/lib/imx/zlibwapi.dll new file mode 100755 index 0000000..4194c0d Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/imx/zlibwapi.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_32.dll b/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_32.dll new file mode 100755 index 0000000..96dc117 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_32.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_64.dll b/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_64.dll new file mode 100755 index 0000000..72215e8 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/ImxJNI_win_64.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_32.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_32.so new file mode 100755 index 0000000..c47dc17 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_64.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_64.so new file mode 100755 index 0000000..a302321 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_aix_64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia32.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia32.so new file mode 100755 index 0000000..268a6ed Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia64.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia64.so new file mode 100755 index 0000000..340e8e5 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_hp_ia64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_32.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_32.so new file mode 100755 index 0000000..828733d Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so new file mode 100755 index 0000000..4687f6c Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_32.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_32.so new file mode 100755 index 0000000..ff8631d Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_64.so b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_64.so new file mode 100755 index 0000000..61c8eab Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_sun_64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_32 b/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_32 new file mode 100755 index 0000000..aa669bb Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_32 differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_64 b/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_64 new file mode 100755 index 0000000..e9f4b8a Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/libgcc_s.so.1_64 differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so new file mode 100755 index 0000000..e03c7e9 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so new file mode 100755 index 0000000..fbf238d Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/aix/libxmsysinfojni64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so new file mode 100755 index 0000000..2c8d854 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so new file mode 100755 index 0000000..beca632 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/hpia/libxmsysinfojni64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so new file mode 100755 index 0000000..84c9c7b Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so new file mode 100755 index 0000000..9431162 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/linux/libxmsysinfojni64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so new file mode 100755 index 0000000..6103321 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni32.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so new file mode 100755 index 0000000..0672b11 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/sun/libxmsysinfojni64.so differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll new file mode 100755 index 0000000..9b3b70b Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni32.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll new file mode 100755 index 0000000..c903b33 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jni/xmsysinfo/win/libxmsysinfojni64.dll differ diff --git a/intermax/23.12.07.02/jspd/lib/jspd-common.jar b/intermax/23.12.07.02/jspd/lib/jspd-common.jar new file mode 100755 index 0000000..49f8196 Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jspd-common.jar differ diff --git a/intermax/23.12.07.02/jspd/lib/jspd-ext.jar b/intermax/23.12.07.02/jspd/lib/jspd-ext.jar new file mode 100755 index 0000000..45a41dc Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jspd-ext.jar differ diff --git a/intermax/23.12.07.02/jspd/lib/jspd-pool.jar b/intermax/23.12.07.02/jspd/lib/jspd-pool.jar new file mode 100755 index 0000000..ffffc5b Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jspd-pool.jar differ diff --git a/intermax/23.12.07.02/jspd/lib/jspd.jar b/intermax/23.12.07.02/jspd/lib/jspd.jar new file mode 100755 index 0000000..fb673da Binary files /dev/null and b/intermax/23.12.07.02/jspd/lib/jspd.jar differ diff --git a/intermax/23.12.07.02/jspd/lib/notice/LGPL.txt b/intermax/23.12.07.02/jspd/lib/notice/LGPL.txt new file mode 100755 index 0000000..52790ad --- /dev/null +++ b/intermax/23.12.07.02/jspd/lib/notice/LGPL.txt @@ -0,0 +1,144 @@ +GNU LESSER GENERAL PUBLIC LICENSE +Version 2.1, February 1999 + + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + +Preamble +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. + +This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. + +When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. + +To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. + +For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. + +We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. + +To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. + +Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. + +Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. + +When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. + +We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. + +For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. + +In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. + +Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. + +The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. + + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". + +A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. + +The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) + +"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. + +1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + +a) The modified work must itself be a software library. +b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. +c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. +d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. +(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. + +Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. + +This option is useful when you wish to copy part of the code of the Library into a program that is not a library. + +4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. + +If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. + +5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. + +However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. + +When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. + +If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) + +Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. + +6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. + +You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: + + +a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) +b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. +c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. +d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. +e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. +For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. + +7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: + + +a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. +b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. +8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. + +10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. + +11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. + +14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +END OF TERMS AND CONDITIONS diff --git a/intermax/23.12.07.02/jspd/lib/release_note.txt b/intermax/23.12.07.02/jspd/lib/release_note.txt new file mode 100755 index 0000000..cbf9dd9 --- /dev/null +++ b/intermax/23.12.07.02/jspd/lib/release_note.txt @@ -0,0 +1,475 @@ + + +``` + 88 ad88888ba 88888888ba 88888888ba, + 88 d8" "8b 88 "8b 88 `"8b + 88 Y8, 88 ,8P 88 `8b + 88 `Y8aaaaa, 88aaaaaa8P' 88 88 + 88 `"""""8b, 88""""""' 88 88 + 88 `8b 88 88 8P +88, ,d88 Y8a a8P 88 88 .a8P + "Y8888P" "Y88888P" 88 88888888Y"' + +``` + + +================================================ + +- 3.1.1 20.01.02.09 +- Protocol Version 21 +- DG: IMX_TFT.DataGather.161201.01.RC 이상 + +================================================ +# 20.01.02.09 +- protocol version up to 21 +- java 9, java 11 지원 +- add 시계열 콜트리 기능 +- add 중앙관리 라이센스 기능 +- imp #1375, #1370, #1332 ACTIVE TXN PACKET에 SQL elapsetime 필드 추가 +- imp #1514 설정 파일에 단위 명시 +- imp USE_JAVA_VERIFY 옵션 안정화 +- imp #1756 ENABLE_WEB_ID_WHEN_NO_USERAGENT 옵션 추가(브라우저 접근 여부에 따라 webid 발급) +- imp ENABLE_UPDATE_WEBID_COOKIE_TIME 옵션 추가(webid를 사용할 때도 max age를 갱신) +- fix #1416 boot, down 알람 순서 뒤틀리는 현상 +- fix 다이나믹 리디파인 기능 안정성 개선(상수 변경) +- fix TXN_SQL_LIMIT_COUNT 옵션 추가(트랜잭션당 SQL 수집 갯수 제한) + +# 2019.10.10.9 +- protocol version up to 19 +- java 1.5로 올림 (1.4는 지원 불가) +- add EXCLUDE_THREAD 옵션 추가 (특정 thread name을 보고 모니터링을 막는 기능) +- add USE_ETOE_ONLY 옵션 추가 (etoe 모드로 동작하기 위한 옵션) +- add DISABLE_ACTIVE_TXN 옵션 추가 (active txn 패킷 비활성, 재시작 필요) +- add REPLACE_URL_PATTERNS 옵션 추가 (수집되는 트랜잭션의 URL 형태를 단순화) +- add #1315 EXCLUDE_TXCODE 옵션 추가 (txcode 기준으로 트랜잭션 수집 필터링) +- add 동적 프로파일 기능 +- imp 로컬 라이센스가 정상일 경우 중앙 라이센스의 유효성 확인 생략 +- imp 트랜잭션 시작, 완료시에 queue에 담는 로직에서 synchronized 제거 +- imp USE_TRACE_ORACLE 에서 query 방식이 아니라 setClientInfo 방식으로 개선 (java 1.6 이상) +- fix xapm_txn_detail의 endCount 제한 확장 +- fix http etoe에서 key1, key3가 중복이 발생하는 현상 +- fix 콜트리에 socket io가 포함된 경우 summary 되지 않는 현상 + +# 2019.06.25.9.legacy +- protocol version up to 16 +- add #8594 JSPD가 로드한 class, jar 목록 로그 기능(WRITE_CLASS_LIST, WRITE_JAR_LIST 옵션) +- add #8762 oracle fetch 함수 콜트리 추가(TRACE_FETCH_METHOD 옵션) +- add #8835 mongodb fetch 함수 콜트리 추가(TRACE_MONGO_FETCH 옵션) +- add apache axis 리모트콜 +- add setNull, setNString 함수에 대한 바인드 변수 수집 +- add asynckey 설정 함수 추가(setAsyncKeyP, setAsyncKeyC) +- add db2 연계 지원(USE_TRACE_DB2 옵션) +- add sqlserver 연계 지원(USE_TRACE_MSSQL 옵션) +- add INCLUDE_EXCEPTION_FOR_ALARM 옵션 추가 +- imp #4538 rt.jar weaving 기능 개선(USE_RUNTIME_REDEFINE 옵션) +- imp #7191 OutOfMemoryError 오류 발생 감지 기능 개선 +- imp #8694 jspd 시작점과 etoe도 재기동 없이 설정하도록 개선 +- imp #8895 ext에 의해 변경된 트랜잭션 이름에 대한 EXCLUDE_SERVICE 재확인(EXCLUDE_SERVICE_AT_END_TIME 옵션) +- imp wasid 별 jspd.plc.list 설정 기능 +- imp hostname 가져오는 로직 개선 +- fix 소켓, 파일 입출력의 수행시간이 0ms인 경우도 콜트리 표시 +- fix mongodb driver 2.4에서 누락된 fetch 지표 수정 +- fix 콜트리 클래스, 메소드 이름 한글깨짐 +- fix ojdbc14.jar에서 sql 미수집 현상 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 integer 범위를 넘어가는 숫자에 대해서도 동작하도록 수정 +- fix USE_REPLACE_NUMBER_PATH 옵션 사용 시 트랜잭션 이름이 / 인 트랜잭션이 수집안되는 문제 수정 +- fix jspd.advice에서 정규식 적용 시, 트랜잭션 미수집 오류 수정 +- fix HttpClient 3.1에서 http etoe 연계 시 uri 추출 중 발생하던 오류 수정 + +# 2019.03.20.10.legacy +- protocol version up to 14 +- add PLC message 설정 기능 추가. +- add mssql SQLServerDatasource 수집 추가. +- add sybase SybDataSource 수집 추가. +- add mongodb 수집. +- add mongodb pool, connection 수집 추가. +- add oracle 전체 내부 fetch count 수집 기능 추가. +- add #8722 파일 및 디렉토리 생성시 권한 부여. +- add 트랜잭션 종료 시에 EXCLUDE_SERVICE를 확인하여 트랜잭션 정보를 전송하지 않는 EXCLUDE_SERVICE_AT_END_TIME 옵션 추가 +- imp TRACE_COLLECTION_SIZE, TRACE_COLLECTION_STACKTRACE_SIZE 옵션들 동적 적용 +- fix pool name 100 바이트 까지 수집하도록 수정. +- fix properties 한글 처리. +- fix XmTxnState 몇가지 변수 초기화 시점 변경. +- fix collection leak 위빙 버그 수정. + +# 2019.02.15.5.legacy +- protocol version up to 13 +- add #8065 oracle 내부 fetch count 수집 기능 추가. +- add aws 연동시 local ip, account id 추가 수집 +- imp #8472 xapm_txn_detail에 저장될 filler 데이터 수집 가능 하도록 기능 개선. +- imp jspd <-> txn sql패킷 txnId 추가. (이전txn과 호환을 위한 USE_NONE_TXNID_PACKET 옵션 추가) +- fix #8483 sybase 풀 생성 안되는 현상 수정 및 pooledConn 수집 기능 구현. +- fix sybase 쿼리 미수집 현상 수정. + +# 2019.01.24.1.legacy +- imp #8464 apache SOAPHTTPConnection E2E 수집 기능 추가. + +# 2019.01.17.3.legacy +- add #8360 DB Name Alias 기능 추가 +- add #6720 PLC기능 jspd.priority.include 기능 변경 +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix USE_TRACE_ORACLE 사용시 audit 기능의 프로시져 변수 bind 하도록 변경 +- fix XmTcpReqWasInfo 패킷에서 docker id 보낼때 "docker://" string 제거 +- fix #8485 MSSQL 쿼리 수집 오류 수정. + +# 2018.12.07.7.legacy +- imp GC Stat 수집 시 OpenJDK도 HotspotJVM처럼 동작하도록 수정 +- add #8239 jspd.home 터치시 jspd properties 전송 기능 추가. +- add RMI_GET_PARAM 옵션 추가. (RT_RMI 옵션 사용시 request의 getParameter 사용 여부) +- fix 브라우져응답시간 기능(USE_TRACE_CLIENT_TIME) 사용간 게더와의 연결이 끊기면 redirection 유발 현상 수정. +- fix 트랜잭션 쓰레드가 아닌 별도의 쓰레드에서 connection 사용시 미수집 하도록 수정. +- fix #8478 USE_JMX 사용 시 클래스수 비정상 표현 수정. + +# 2018.11.28.2.legacy +- fix osm 기동 관련 count 로직 수정. + +# 2018.11.28.1.legacy +- protocol version up to 12 +- imp 일부 설정 imx.prop에서 읽도록 대체(SQL_DETAIL_ELAPSE_LIMIT, INPUT_SPACE_SQL_BIND, SQL_LEFT_TRIM) + - SQL_DETAIL_ELAPSE_LIMIT 삭제, imx.prop SQL_DETAIL_ELAPSE_LIMIT 으로 대체 + - DISABLE_INPUT_SPACE_SQL_BIND 삭제, imx.prop INPUT_SPACE_SQL_BIND 로 대체 + - DISABLE_TRIM_SQL 삭제, imx.prop SQL_LEFT_TRIM 으로 대체 +- imp MTD_BUFFER_SIZE 동적으로 변경 가능하게 수정 +- add TRACE_SIMPLE_METHOD 옵션을 켜는 경우에 include에 포함된 package 들에 한하여 simple method도 모두 calltree에 보여지게 함 +- add #7962 sql seq 패킷 추가 +- add #8124 sql execute count 수집 크기 확장(protocol version 12) +- add 삼성 CELLO 버전에만 추가했었던 GET_SID_WHEN_STMT_LIMIT, CHANGE_DB2_SID_QUERY 옵션 추가 +- add #8171 MTD_ELAPSE_TIME 옵션 추가 +- add DG 분산 기능 추가 +- fix 특정 tibero6 드라이버 관련 버그 수정 +- fix #8192 udp 소켓 생성 시 에러가 발생하는 경우 트랜잭션 종료가 안되는 문제 수정 + +# 2018.10.26.11.legacy +- imp 오류 로그에 대해 DEBUG 옵션 적용 +- imp 게더 연결 재시도 요청을 일정 수치 만큼 지연 시켜 요청하는 알고리즘 적용(DG_RECONNECT_DELAY_TIME) +- add USE_SQL_ELLIPSIS 옵션 추가. (COMPRESS_SQL 옵션이 false 이고 64K 이상의 SQL 수집시 생략 수집) +- fix 라이센스 요청 정보 로직 수정. (version 정보 수정) +- fix SysJNI load 예외처리 수정. (exception -> throwable) +- fix sql id 생성 시 trim 로직 변경 +- fix jspd 암호화시 jspd version UNKNOW 출력 현상 수정. +- fix USE_TRACE_ORACLE 관련 콜트리 bug 수정. + +# 2018.10.25.1.legacy +- fix INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE 옵션명 변경. (DISABLE_INPUT_SPACE_SQL_BIND, DISABLE_TRIM_SQL) + +# 2018.10.23.1.legacy +- add protocol version up to 11 +- add TYPE_REQ_WAS_LICENSE_INFO (RES_WAS_LICENSE_INFO) 패킷 추가 +- imp 라이센스 체크 시점을 프로토콜 버전 교환 이후로 변경 (JVM boot 알람도 이때 날라감) +- fix INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL 옵션명 변경. (INPUT_SPACE_SQL_BIND_DISABLE, INPUT_TRIM_SQL_DISABLE) + +# 2018.10.11.4.legacy +- fix #7811 txn sqlid 생성 로직 변경에 따른 수정 및 옵션 추가, INPUT_SPACE_SQL_BIND_REMOVE, INPUT_TRIM_SQL + +# 2018.10.11.3.legacy +- fix InetAddress 의 getLocalHost 함수 예외처리. + +# 2018.10.11.1.legacy +- add USE_NEW_IMXTXN_SQL_PACKET 옵션 추가. (신규 통합 sql 패킷 txn 전송, txn 4.00 버전 이상부터 지원) + +# 2018.05.04.23 +- fix XmTcpResWasInfo wasid 마이너스 버그 수정 + +# 2018.05.04.7 +- imp IBM JDK에서 HttpsURLConnection 사용 시 리모트콜 생성할 수 있도록 수정 + +# 2018.05.04.6 +- add sid 수집 제한 옵션 추가(DISABLE_SQL_SID) + +# 2018.05.04.5 +- add HttpClient method로 직접 execute하는 경우에도 etoe 연결되도록 수정 + +# 2018.05.04.3 +- fix 프로토콜 네고시에이션 버그 수정 +- add SQL 별 fetch 정보 수집 제한 옵션 추가(DISABLE_SQL_FETCH) +- add SQL 별 fetch 정보 수집 시간 제한 옵션 추가(SQL_DETAIL_ELAPSE_LIMIT) + +# 2018.05.04.2 +- fix #6677 header에 tid 추가하는 기능 추가(RESP_HEADER_TID) +- fix #6904 jvmstat 패킷 순서 오류 수정 +- fix 버전 교환 오류 수정 +- fix 게더 설정 오류 상태에서 autowasid 발급시 license check를 지속적으로 하는 현상 +- imp #6605 JSPD long class method 처리 관련 logging 내용 개선 요청 +- imp #6820 jspd.x.advice에 설정된 구현부가 jspd.jar에 없을 경우 예외처리 +- imp #6907 java 1.8 metaspace 정보 수집 +- add #6026 InterMax-MaxGauge 연동 기능 추가 +- add #6606 wasid 자동 발급 기능을 구현 +- add #6757 Solaris i386 cpu 지원 바이너리 추가(jni, osm, txn, uts) +- add #6780 HttpsURLConnection 리모트 콜 데이터 수집 +- add aws를 위한 wasid 자동 발급 기능 추가 +- add jspd 구동시 설정값 출력 + +# 2018.03.23.1 +- protocol version up (7 -> 9) +- fix 프로토콜 네고시에이션 버그 수정 +- fix #6169 gRPC 라이브러리와 ImxJNI.getArgs() 함수 충돌 문제수정. +- fix #6370 mssql xadatasource 사용시 db address 생성되지 않는 현상 수정 +- fix #6628 Client IP 수집 이상 현상 수정 +- imp #6011 브라우저 응답시간 수집 기능 개선(protocol version 8, DG.180222.01 이상 호환) +- imp #6226 tibero 6 및 5 jdbc 사용시 옵션 설정없이 모두 수집 가능하도록 수정. +- imp #6259 jspd.dbm 오라클sid 대소문자값 개선 +- imp #6606 normal type (3) auto wasid 발급 기능 +- add #6285 add jtds jdbc 수집하도록 구현. jspd.jdbc.advice 설정 필요(README.md 참조). +- add #6300 edb jdbc 수집. (jspd.jdbc.advice 옵션 추가. README.md 참조) +- add #6302 트랜잭션 memory 사용량 항목 추가(protocol version 8, DG.180222.01 이상 호환) +- add #6368 콜트리 파일,소켓명 별도 수집 기능 구현. (protocol version 9, USE_MTD_EXT 옵션 추가, DG 3월 Release 버전 이상 호환) +- add #6459 Resin 환경에서 커넥션풀 수집 + +# 2018.01.03.1 +- protocol version up (6 -> 7) +- imp #5128 Deadlock 표시 기능 추가 +- imp #5097 root cause exception도 확인하도록 수정 +- imp #5842 GET_SID_WHEN_STMT 옵션 추가. (sid 조회 시점을 첫 쿼리 사용 시점으로 변경) +- imp #6030 getHeaders 사용을 통한 client ip 획득 +- imp #5899 PKT_WAS_STAT(10004) 패킷 수정(txn, sql의 elapse time의 max값을 추가) +- add #5134 관련 콜트리 수집 제한 옵션 MTD_LIMIT 추가(기본 값 10,000) +- fix #4711 localhost 사용시 실제 ip 표현되도록 수정 +- fix #5976 MSSQL fetch count 수집 수정 +- fix #5267 wasid 중복시 재연결 시도 안하게 수정 + +# 2017.10.19 (2017.10.19.1) +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) +- add thread dump max size 지정 옵션 THREAD_DUMP_MAX_SIZE 추가 +- add 로그 경로 변경 기능 추가. (jspd.prop.ini 에 LOG_PATH 옵션 추가. 절대 경로를 입력 하여야 하며 잘못된 경로 입력시 default로그 그대로 사용.) +- fix #4664 jspd.exclude 에 ! 기능을 추가. (!을 prefix로 클래스를 등록하게 되면 무조건 위빙하지 않게 기능 추가, TransactionAwareDataSourceProxy사용 시 pool카운트 비정상 건 처리) +- fix #5812 TRX_NAME_USE_ENCODING, TRX_NAME_ENCODING_FROM, TRX_NAME_ENCODING_TO 옵션 추가. (한글깨짐 처리) +- fix weblogic jta sql db id 미수집 현상 수정 +- fix jboss5 was pool max count 잘못 수집 되는 문제 수정 + +# 2017.09.21 (2017.09.21.1) +- fix #5665 org.apache.commons.dbcp.BasicDataSource 커넥션 풀 수집 수정 + +# 2017.09.12 (2017.09.12.2) +- fix weblogic jta sql db id 미수집 현상 수정 +- add rt 관련 rmi 로그 추가 (rmi 디버그 옵션을 켜는 경우에만 출력) + +# 2017.09.07 (2017.09.07.1) +- 2017.07.21.1 추가 기능 활성화 +- protocol version up (4 -> 6) +- imp thread dump 수집 시 dump를 발생 시킨 시간도 수집 + +# 2017.09.05 (2017.09.05.1) +- fix Servlet api 3.0 미만에서 getStatus관련 에러나는 문제 수정 + +# 2017.08.30 (2017.08.30.3) +- fix WAS ID 자동 발급 관련 버그 수정 + +# 2017.08.29 (2017.08.29.1) +- fix USE_INACTIVE_SOCKET_RT추가 socket rt 설정 시 트랜잭션이 active 되지 않은 상태에서 열린 socket에 대해서 정보 수집이 안되는 문제 (우리은행 인뱅) + +# 2017.08.28 (2017.08.28.1) +- add WAS ID 자동 발급 관련 TYPE_AUTOMATIC_WASID 옵션 추가(1:OpenShift) + +# 2017.08.23 (2017.08.23.1) +- fix weblogic에서 mssql 드라이버 수집이 안되는 문제 (우리은행 APM POC) + +# 2017.08.16 (2017.08.16.1) +- 2017.07.21.1 추가 기능 비활성화 +- protocol version down (5 -> 4) +- imp WebApplication이 아닌 경우에도 EXCLUDE_SERVICE가 적용되도록 수정 +- add RESTful url에서 숫자로만 이루어진 path ### 처리 +- fix MySQL Property 설정을 통해 여러개의 DB ip를 지정하는 경우 수집된 SQL이 화면에 보이지 않는 문제 수정 + +# 2017.07.19 (2017.07.21.1) +- protocol version up (4 -> 5) +- imp fetch count 수집 크기 향상(DataGather.170719.01 이상) +- add bind 변수 암호화 옵션 ENABLE_ENCRYPT_SQL_BIND 추가 +- add login name 암호화 옵션 ENABLE_ENCRYPT_LOGIN_NAME 추가 +- add 암호화 관련 패킷 수정 + +# 2017.07.11 (2017.07.11.1) +- upgrade asm3 to asm5(java8 람다식 지원) +- imp #5323 메모리릭 객체 개수 임계치 초과시 TID, CREATED_TIME 변경 +- add #5273 TXN_ELAPSE_TIME 옵션 추가 (트랜잭션 수집 제한 옵션) +- add #5321 CONVERT_SQL_ASCII_TO 옵션 추가(CONVERT_SQL_ASCII_TO="encoding name") +- add #5194 ojdbc8 지원 +- add #5196 SQL 수집 크기 64K -> 100K로 확장 옵션 USE_LONG_SQL 추가(imxtxn 3.00.17071760 버전 이상 지원) +- add bind 변수 미수집 옵션 DISABLE_SQL_BIND 추가 +- fix #4880 X-Forwarded-For 헤더의 ip가 2개 이상일 경우 수집이 안되던 문제 수정 + +# 2017.07.06 (2017.07.06.1) +- fix jboss7에서 pool state 중 active count 가 안맞는 문제 +- fix websphere7에서 pool state 중 max pool size 가 안맞는 문제 +- fix jmx를 이용한 GC 정보 수집 중 Eden 영역 정보가 일치하지 않는 문제 + +# 2017.07.03 (2017.07.03.1) +- fix info가 없어서 sql text 수집이 안되는 현상 (단 sid가 0으로 나올수는 있으나, 이것은 알수 없는 pool을 사용하는 경우에 발생하는 문제임) + + +# 2017.06.23 (2017.06.23.1) +- add GC지표 수집 시 JMX방식을 사용할 수 있도록 추가 +- add DISABLE_JDBC_ALARM 옵션 + +# 2017.06.19 (2017.06.19.1) +- add SQL별 fetch time, fetch count 수집 +- add IBM Websphere 7.0 was pool 정보 수집 +- fix remote packet 에서 key1, key3이 0인 경우 기본으로 전송을 안하도록 수정 (rmi 디버그 옵션을 켜면 전송함) + +# 2017.05.23 (2017.05.23.1) +- fix IMXAgent.sh 실행 시 에러가 발생할 경우 다시 실행하지 못하던 문제 수정 +- add Raemote Call Log 강화 + +# 2017.04.21 (2017.04.21.1) +- rollback 패킷들이 dg time 사용하도록 (우리은행) + +# 2017.04.20 (2017.04.20.1) +- add #4946 X_XP_REMOTE_RESET옵션 추가 (kbank) +- remove #4946 X_XP_HTTP_RESET옵션 삭제 (kbank) +- fix tcp rmi 에서 C패킷의 open port가 0으로 수집되는 문제 +- fix 패킷들이 dg time 사용하도록 (우리은행) +- fix gc 카운트가 나오지 않음 (우리은행) + + +# 2017.03.29 (2017.03.29.2) +- fix #4714 spring security filter를 거치면 트랜잭션이 누락되는 증상 (평창동계올림픽위원회) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함, 트랜잭션 중간에 전송하는 C패킷에도 동일한 로직 적용 (kbank) + + +# 2017.03.23 (2017.03.23.2) +- add #4946 X_XP_HTTP_RESET옵션 추가 (kbank) +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상2 (다른 tomcat pool 재테스트 필요) (웅진) + + +# 2017.03.16 (2017.03.16.1) +- add jvm state check error log +- fix tomcat jdbc pool 에서 특정 옵션에 의해서 connection 수집이 안되는 증상 (다른 tomcat pool 재테스트 필요) +- fix E2E에서 key,1,3이 0인경우 패킷 생성 안함 (kbank) + + +# 2017.03.09 (2017.03.09.2) +- add rmi log (http class name 출력) (웅진) +- fix weblogic JTSConnection jdbc 지표 수집 불가 문제(한양대, 중앙대학병원) +- fix #4845 tomcat pool에서 jndi name 을 수집하는 경우 추가(웅진) +- fix #4845 tomcat pool 사용시 pool이름이 중복되는 문제(웅진) +- fix #4819 weblogic oracle.jdbc.xa.client.OracleXADataSource 드라이버 지원(한양대, 중앙대학병원) + + +# 2017.02.28 (2017.02.28.1) -- tar package +- fix pid 체크 로직을 3초마다 file modified time을 기준으로 체크 함 + + +# 2017.02.23 (2017.02.23.1) +- merge kbank2 +- update processCheck error message + + +# 2017.02.16 (2017.02.16.1) +- fix jdbc getResultSet() 호출시 rs count, fetch count/time 수집 안되는 문제 +- fix #4574 weblogic 8에서 db create시 null 오류 발생 이슈 +- imp #3181 #4689 구동시 기존 pid로 프로세스 확인하여 중복되면 pid write 건너뜀 (kbank이슈) + + +# 2017-01-16 (2017.01.16.1) +- add socket rt ext 기능 추가 (kbank) +- add txnstate에 setLoginName 함수 추가 (kbank) + + + +# 2017-01-12 (2017.01.12.1) -- tar package +- fix mariadb 오래전 버전(1.3 이하)에서 BCI 예외처리 +- fix tomcat jdbc pool 오류 2 +- fix ibatis 관련 오류 메시지 수정 + + +# 2017-01-09 (2017.01.09.1) +- add #4452 txn_name 수집 기능 추가 (롯데렌탈 BMT 관련) +- fix weblogic 에서 dbname이 제대로 나오지 않는 증상 +- fix tomcat jdbc pool 오류 +- rollback #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 (exception 수집 문제) +- imp #4484 #4481 thread dump 에 호출 thread의 tid, thread id, os thread id 추가로 출력 +- imp jdbc 관련 트랜잭션 예외처리 강화 + + +# 2016-12-28 (2016.12.28.1) +- 릴리즈 + + +# 2016-12-23 (2016.12.23.1) +- fix class load시 deadlock 현상 (SK테크엑스) + +# 2016-12-21 (2016.12.21.3) +- fix #4050 open map이 최초 1회만 발생하여서 osm이 무한히 로딩되는 증상 +- improvement #4333 #4337 call tree에서 맨 상위 트랜잭션 시작 method도 나오게 변경 + +# 2016-12-20 (2016.12.20.1) +- fix weblogic에서 db info 수집에 was pool이 잡히는 문제 + +# 2016-12-14 (2016.12.14.1) +- add mariadb db type 추가 (신규로 mariadb를 등록 해봐야함) +- fix weblogic jdbc 지표가 안맞는 문제 (전반적으로 개선) +- fix mariadb fetch count, fetch time 지표 수집 불가 문제 +- fix oracle 12c ojdbc6.jar, ojdbc7.jar 에서 rs count, fetch count, fetch time이 안나오는 문제 + +# 2016-12-13 (2016.12.13.2) -- tar package +- add DG와 버전교환 프로토콜을 사용할지 여부 옵션 추가 (USE_PROTOCOL_VERSION, 기본값: true) false인 경우에 10월 21일자 기준 버전으로 동작함, (값 변경시 재시작필요) +- add #3181 pid 갱신 이슈 대응 코드 추가 (agent를 실행하기 직전에 pid를 체크해서 pid가 다르면 갱신) +- fix #4158 콜트리가 맞지 않는 문제 + +# 2016-12-12 (2016.12.12.3) +- fix jboss에서 rs close count가 맞지 않는 문제 + + +# 2016-12-06 (2016.12.06.6) +- fix jeus6에서 최초 db conn open시에 count가 min pool count까지 합산으로 잡히는 문제 +- fix jeus6에서 mariadb 이전버전에서 전체DB컨넥션수가 안맞는 문제 +- fix mysql 오래된 버전에서 sql text, sql binding이 안되는 문제 +- fix mysql 예전 버전과 새로운 버전과의 충돌문제 해결 +- fix db pool을 사용하지 않으면 conn open count가 안나오는 문제 + + +# 2016-12-05 +- fix JDBC sql 수집시 최초 DB 연결에 경우 수집이 안되는 문제 + + +# 2016-12-02 +- fix mariadb 관련 버그 +- fix mysql 관련 버그 +- fix 예전 mysql 드라이버에서 에러 나는 현상 수정(axa사이트대응) +- Improvement 한전 IP 수집관련 수정 + + +# 2016-12-01 +- enable fetch time, ResultSet open/close(use tcp protocol version 1, DataGather TFT (Build 161130.01) 이상 버전 권장) +- fix #4030 open / close statement 개수 불일치 +- fix #4096 Call Tree에 conn.createStatement(); 잡히지 않는 현상 +- fix #4142 bind 변수 수집 안됨 +- Improvement #3966 [야놀자] maria db 확인 +- Improvement #4145 [한전긴급대응] jspd agent 에 interface 추가 + + +# 2016-11-28 +- disable fetch time, ResultSet open/close +- fix #3828 axa 사이트 이슈 수정 (proframe에서 txn_name_type 설정시 화면이 안나오는 경우) +- fix #3967 altibase sql 실행 했을 때 에러 + + +# 2016-11-16 +- fix #3507 windows 에서 jvm thread count 기능 추가 (java 1.5이상 동작) +- fix #3846 POOL ID 중복 생성 +- fix 불필요한 로그제거 +- improvement JSPD 기동 시 ext.jar 및 pool.jar를 load하도록 수정 + + +# 2016-11-10 +- fix #2993 Connection재사용하여 내용이 다른 리터럴 sql을 여러번 수행시 sql문이 1건만 보이는 현상 +- feature #3552 fetch time, fetch count 구현 및 개선 +- Improvement #3692 WebID값 전송시 cookie를 이용하여 고유한 값을 유지 +- Improvement #3700 jspd udp buffer 동적 클리어 기능 개발 (옵션화) +- Improvement #3782 jspd 버전 확인 할 수 있도록 개선 요청 + + [버전확인 방법] + java -jar jspd.jar -version + + [추가된 옵션] + USE_SESSIONID_FOR_WEBID : true/false 사용하면 webid를 session으로 사용 + UDP_BUFFER_CLEAR_PERIOD : 분 단위, default 6000분, 설정된 시간동안 사용되지 않은 udp buffer 제거 + + +# 2016-11-04 +- fix #3443 #3585 환경 설정 변경 추적 소스 깨짐 +- Improvement #3448 JSPD에서 SQL Text를 UTF-8로 변환 작업 요청 +- Improvement #3429 jspd-하이닉스 remote_call 패킷의 elapse_time이 항상 0 인 문제 +- fix #3609 [s.com] 게더가 hang 일때 비 정상적으로 jspd 랑 게더랑 끊겼다 붙었다 반복하다가 게더랑 연결이 안되는 현상 +- fix #3399 Jboss ConnecionPool 모니터링 개발 요청 + + diff --git a/intermax/23.12.07.02/jspd/license/asm-LICENSE.txt b/intermax/23.12.07.02/jspd/license/asm-LICENSE.txt new file mode 100755 index 0000000..94f3321 --- /dev/null +++ b/intermax/23.12.07.02/jspd/license/asm-LICENSE.txt @@ -0,0 +1,29 @@ +ASM is released under the following 3-Clause BSD License: + +ASM: a very small and fast Java bytecode manipulation framework +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/log/imx/imxosm.log b/intermax/23.12.07.02/jspd/log/imx/imxosm.log new file mode 100644 index 0000000..00ebc1e --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/imx/imxosm.log @@ -0,0 +1,533 @@ +[25 16:24:04][43][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[25 16:24:04][43][INFO][check_double_execution] write pid. 43 +[25 16:24:04][43][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[25 16:24:04][43][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[25 16:24:04][43][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[25 16:24:04][43][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[25 16:24:04][43][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[25 16:24:04][43][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[25 16:24:04][43][INFO][read_properties_common] imx.prop DGADDR_LIST= +[25 16:24:04][43][INFO][read_properties_common] imx.prop CPU100:1 +[25 16:24:04][43][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[25 16:24:04][43][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[25 16:24:04][43][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[25 16:24:04][43][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[25 16:24:04][43][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[25 16:24:04][43][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[25 16:24:04][43][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[25 16:24:04][43][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[25 16:24:04][43][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[25 16:24:04][43][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[25 16:24:04][43][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[25 16:24:04][43][INFO][check_os_info] OS Name : Linux +[25 16:24:04][43][INFO][check_os_info] Nodename : ac1b321264bb +[25 16:24:04][43][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[25 16:24:04][43][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[25 16:24:04][43][INFO][check_os_info] Machine : x86_64 +[25 16:24:04][43][INFO][MAIN] initialize resources. +[25 16:24:04][43][INFO][osm_module_init] common.immf open success. +[25 16:24:04][43][INFO][initialize_offset] initialize offset success! 35eea000 35eea050 35efa060 +[25 16:24:04][43][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[25 16:24:04][43][INFO][read_properties] jspd.prop TXN_IP= +[25 16:24:04][43][INFO][get_cgroup_version] checking cgroup version ... cgroup +[25 16:24:04][43][INFO][run_thread] create success. THR_DGCONN (0) +[25 16:24:04][43][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[25 16:24:04][43][INFO][thr_DGConn] dg=5340a0a:1314 +[25 16:24:04][43][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[25 16:24:04][43][INFO][get_Hostname] Hostname:[ac1b321264bb] +[25 16:24:04][43][INFO][get_HostKey] Hostkey:[A44299C267A1384371A28BDC16DEF2D2B9CA9E9D] +[25 16:24:04][43][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[25 16:24:04][43][INFO][thr_DGConn] connection success. +[25 16:24:04][43][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[25 16:24:04][43][INFO][thr_DGConn] sock(3),data gather connect(1) +[25 16:24:04][43][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[25 16:24:04][43][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[25 16:24:04][43][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[25 16:24:04][43][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_SHELLCMD (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_FILESYSTEM (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_OSM_MODULE (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_JVMALERT (0) +[25 16:24:04][43][INFO][run_thread] create success. THR_WASSTAT (0) +[25 16:24:04][43][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[25 16:24:04][43][INFO][thread_docker_stat] thread terminate. +[25 16:24:04][48][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[25 16:24:04][48][ERRO][MFJ-OSM-00020080] Already exists. pid:43, ProcessName:imxosm +[25 16:24:13][43][INFO][process_msg] timesync diff:30542 +[25 16:25:00][43][INFO][info_log] current tcp_queue[0] skip[0] +[26 10:31:33][57][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[26 10:31:33][62][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[26 10:31:33][57][INFO][check_double_execution] write pid. 57 +[26 10:31:33][57][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[26 10:31:33][57][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[26 10:31:33][62][ERRO][MFJ-OSM-00020080] Already exists. pid:57, ProcessName:imxosm +[26 10:31:33][57][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[26 10:31:33][57][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[26 10:31:33][57][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[26 10:31:33][57][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[26 10:31:33][57][INFO][read_properties_common] imx.prop DGADDR_LIST= +[26 10:31:33][57][INFO][read_properties_common] imx.prop CPU100:1 +[26 10:31:33][57][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[26 10:31:33][57][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[26 10:31:33][57][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[26 10:31:33][57][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[26 10:31:33][57][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[26 10:31:33][57][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[26 10:31:33][57][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[26 10:31:33][57][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[26 10:31:33][57][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[26 10:31:33][57][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[26 10:31:33][57][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[26 10:31:33][57][INFO][check_os_info] OS Name : Linux +[26 10:31:33][57][INFO][check_os_info] Nodename : cae52bf8122a +[26 10:31:33][57][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[26 10:31:33][57][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[26 10:31:33][57][INFO][check_os_info] Machine : x86_64 +[26 10:31:33][57][INFO][MAIN] initialize resources. +[26 10:31:33][57][INFO][osm_module_init] common.immf open success. +[26 10:31:33][57][INFO][initialize_offset] initialize offset success! 4bfe5000 4bfe5050 4bff5060 +[26 10:31:33][57][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[26 10:31:33][57][INFO][read_properties] jspd.prop TXN_IP= +[26 10:31:33][57][INFO][get_cgroup_version] checking cgroup version ... cgroup +[26 10:31:33][57][INFO][run_thread] create success. THR_DGCONN (0) +[26 10:31:33][57][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[26 10:31:33][57][INFO][thr_DGConn] dg=5340a0a:1314 +[26 10:31:33][57][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[26 10:31:33][57][INFO][get_Hostname] Hostname:[cae52bf8122a] +[26 10:31:33][57][INFO][get_HostKey] Hostkey:[C677C68F01D088FDF22C44DE3696ED015E4C1D53] +[26 10:31:33][57][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[26 10:31:33][57][INFO][thr_DGConn] connection success. +[26 10:31:33][57][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[26 10:31:33][57][INFO][thr_DGConn] sock(3),data gather connect(1) +[26 10:31:33][57][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[26 10:31:33][57][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[26 10:31:34][57][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[26 10:31:34][57][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[26 10:31:34][57][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[26 10:31:34][57][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[26 10:31:34][57][INFO][thread_docker_stat] thread terminate. +[26 10:31:34][57][INFO][run_thread] create success. THR_SHELLCMD (0) +[26 10:31:34][57][INFO][run_thread] create success. THR_FILESYSTEM (0) +[26 10:31:34][57][INFO][run_thread] create success. THR_OSM_MODULE (0) +[26 10:31:34][57][INFO][run_thread] create success. THR_JVMALERT (0) +[26 10:31:34][57][INFO][run_thread] create success. THR_WASSTAT (0) +[26 10:31:34][57][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=5002 jvmpid=1 module_type=1001 jvmtype=JSPD +[26 10:31:36][57][ERRO][MFJ-OSM-00020090] File open failed. FileName:/usr/local/intermax/23.12.07.02/jspd/data/agent/imxtxn (2) +[26 10:31:36][57][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[26 10:31:43][57][INFO][process_msg] timesync diff:32936 +[26 10:48:40][62][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[26 10:48:40][62][ERRO][MFJ-OSM-00020080] Already exists. pid:57, ProcessName:imxosm +[26 10:48:40][57][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[26 10:48:40][57][ERRO][MFJ-OSM-00020080] Already exists. pid:57, ProcessName:imxosm +[26 10:48:51][67][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[26 10:48:51][67][INFO][check_double_execution] write pid. 67 +[26 10:48:51][67][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[26 10:48:51][67][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[26 10:48:51][67][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[26 10:48:51][67][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[26 10:48:51][67][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[26 10:48:51][67][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[26 10:48:51][67][INFO][read_properties_common] imx.prop DGADDR_LIST= +[26 10:48:51][67][INFO][read_properties_common] imx.prop CPU100:1 +[26 10:48:51][67][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[26 10:48:51][67][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[26 10:48:51][67][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[26 10:48:51][67][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[26 10:48:51][67][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[26 10:48:51][67][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[26 10:48:51][67][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[26 10:48:51][67][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[26 10:48:51][67][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[26 10:48:51][67][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[26 10:48:51][67][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[26 10:48:51][67][INFO][check_os_info] OS Name : Linux +[26 10:48:51][67][INFO][check_os_info] Nodename : 3d694599cb55 +[26 10:48:51][67][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[26 10:48:51][67][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[26 10:48:51][67][INFO][check_os_info] Machine : x86_64 +[26 10:48:51][67][INFO][MAIN] initialize resources. +[26 10:48:51][67][INFO][osm_module_init] common.immf open success. +[26 10:48:51][67][INFO][initialize_offset] initialize offset success! df217000 df217050 df227060 +[26 10:48:51][67][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[26 10:48:51][67][INFO][read_properties] jspd.prop TXN_IP= +[26 10:48:51][67][INFO][get_cgroup_version] checking cgroup version ... cgroup +[26 10:48:51][67][INFO][run_thread] create success. THR_DGCONN (0) +[26 10:48:51][67][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[26 10:48:51][67][INFO][thr_DGConn] dg=5340a0a:1314 +[26 10:48:51][67][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[26 10:48:51][67][INFO][get_Hostname] Hostname:[3d694599cb55] +[26 10:48:51][67][INFO][get_HostKey] Hostkey:[19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF] +[26 10:48:51][67][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[26 10:48:51][67][INFO][thr_DGConn] connection success. +[26 10:48:51][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[26 10:48:51][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[26 10:48:51][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[26 10:48:51][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[26 10:48:51][67][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[26 10:48:51][67][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[26 10:48:51][67][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[26 10:48:51][67][INFO][run_thread] create success. THR_SHELLCMD (0) +[26 10:48:51][67][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[26 10:48:51][67][INFO][thread_docker_stat] thread terminate. +[26 10:48:51][67][INFO][run_thread] create success. THR_FILESYSTEM (0) +[26 10:48:51][67][INFO][run_thread] create success. THR_OSM_MODULE (0) +[26 10:48:51][67][INFO][run_thread] create success. THR_JVMALERT (0) +[26 10:48:51][67][INFO][run_thread] create success. THR_WASSTAT (0) +[26 10:48:51][67][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=5004 jvmpid=1 module_type=1001 jvmtype=JSPD +[26 10:48:51][67][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5002 jvmpid=1 module_type=1001 jvmtype=JSPD +[26 10:48:54][67][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[26 10:49:01][67][INFO][process_msg] timesync diff:33711 +[26 10:50:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[26 10:55:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[26 11:00:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[26 11:00:10][67][INFO][process_msg] timesync diff:33085 +[26 11:05:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[26 11:10:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[26 11:15:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[26 11:20:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[26 11:25:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[26 11:30:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[26 11:35:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[26 11:37:38][67][INFO][read_all_jvm_pids] modified jvm pid idx=0 wasid=5004 jvmpid=0 prev_jvmpid=1 +[28 09:33:29][67][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=5005 jvmpid=1 module_type=1001 jvmtype=JSPD +[28 09:33:32][67][ERRO][processing_socket] get packet data failed(-1) +[28 09:33:32][67][INFO][DisconnectDGServer] sock:3 +[28 09:33:33][67][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=5005 jvmpid=1 prev_jvmpid=1 +[28 09:33:37][67][INFO][thr_DGConn] connection success. +[28 09:33:37][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[28 09:33:37][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[28 09:33:37][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[28 09:33:37][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[28 09:33:46][67][INFO][process_msg] timesync diff:35806 +[28 09:35:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[28 17:32:54][67][ERRO][processing_socket] get packet data failed(-1) +[28 17:32:54][67][INFO][DisconnectDGServer] sock:3 +[28 17:32:57][67][INFO][read_all_jvm_pids] modified jvm pid idx=2 wasid=5005 jvmpid=0 prev_jvmpid=1 +[28 17:32:59][67][INFO][thr_DGConn] connection success. +[28 17:32:59][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[28 17:32:59][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[28 17:32:59][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[28 17:32:59][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[28 17:33:00][67][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=5006 jvmpid=1 module_type=1001 jvmtype=JSPD +[28 17:33:02][67][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=5006 jvmpid=1 prev_jvmpid=1 +[28 17:33:09][67][INFO][process_msg] timesync diff:-55297 +[29 01:34:02][67][ERRO][processing_socket] get packet data failed(-1) +[29 01:34:02][67][INFO][DisconnectDGServer] sock:3 +[29 01:34:05][67][INFO][read_all_jvm_pids] modified jvm pid idx=3 wasid=5006 jvmpid=0 prev_jvmpid=1 +[29 01:34:07][67][INFO][thr_DGConn] connection success. +[29 01:34:07][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 01:34:07][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 01:34:07][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 01:34:07][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 01:34:08][67][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=5007 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 01:34:11][67][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=5007 jvmpid=1 prev_jvmpid=1 +[29 01:34:16][67][INFO][process_msg] timesync diff:-55995 +[29 01:35:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[29 09:35:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[29 09:35:01][67][ERRO][processing_socket] get packet data failed(-1) +[29 09:35:01][67][INFO][DisconnectDGServer] sock:3 +[29 09:35:03][67][INFO][read_all_jvm_pids] modified jvm pid idx=4 wasid=5007 jvmpid=0 prev_jvmpid=1 +[29 09:35:06][67][INFO][thr_DGConn] connection success. +[29 09:35:06][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 09:35:06][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 09:35:06][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 09:35:06][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 09:35:08][67][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=5008 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 09:35:11][67][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=5008 jvmpid=1 prev_jvmpid=1 +[29 09:35:16][67][INFO][process_msg] timesync diff:-55279 +[29 17:21:36][67][ERRO][processing_socket] get packet data failed(-1) +[29 17:21:36][67][INFO][DisconnectDGServer] sock:3 +[29 17:21:38][67][INFO][read_all_jvm_pids] modified jvm pid idx=5 wasid=5008 jvmpid=0 prev_jvmpid=1 +[29 17:21:41][67][INFO][thr_DGConn] connection success. +[29 17:21:41][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 17:21:41][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 17:21:41][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 17:21:41][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 17:21:44][67][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=5011 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 17:21:51][67][INFO][process_msg] timesync diff:39274 +[29 17:25:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:30:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[29 17:35:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:40:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[29 17:45:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[29 18:35:49][67][ERRO][processing_socket] get packet data failed(-1) +[29 18:35:49][67][INFO][DisconnectDGServer] sock:3 +[29 18:35:50][67][INFO][read_all_jvm_pids] modified jvm pid idx=6 wasid=5011 jvmpid=0 prev_jvmpid=1 +[29 18:35:55][67][INFO][thr_DGConn] connection success. +[29 18:35:55][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 18:35:55][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 18:35:55][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 18:35:55][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 18:35:56][67][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=5012 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 18:35:59][67][INFO][read_all_jvm_pids] modified jvm pid idx=7 wasid=5012 jvmpid=1 prev_jvmpid=1 +[29 18:36:04][67][INFO][process_msg] timesync diff:38116 +[29 19:03:55][67][ERRO][processing_socket] get packet data failed(-1) +[29 19:03:55][67][INFO][DisconnectDGServer] sock:3 +[29 19:03:56][67][INFO][read_all_jvm_pids] modified jvm pid idx=7 wasid=5012 jvmpid=0 prev_jvmpid=1 +[29 19:04:00][67][INFO][thr_DGConn] connection success. +[29 19:04:00][67][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 19:04:00][67][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 19:04:00][67][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 19:04:00][67][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 19:04:02][67][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=5013 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:04:05][67][INFO][read_all_jvm_pids] modified jvm pid idx=8 wasid=5013 jvmpid=1 prev_jvmpid=1 +[29 19:04:10][67][INFO][process_msg] timesync diff:39120 +[29 19:05:00][67][INFO][info_log] current tcp_queue[3] skip[0] +[29 19:10:00][67][INFO][info_log] current tcp_queue[0] skip[0] +[29 19:15:00][67][INFO][info_log] current tcp_queue[1] skip[0] +[29 19:23:54][62][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[29 19:23:54][62][INFO][check_double_execution] write pid. 62 +[29 19:23:54][62][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[29 19:23:54][62][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[29 19:23:54][62][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[29 19:23:54][62][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 19:23:54][62][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 19:23:54][62][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 19:23:54][62][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 19:23:54][62][INFO][read_properties_common] imx.prop CPU100:1 +[29 19:23:54][62][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[29 19:23:54][62][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 19:23:54][62][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 19:23:54][62][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 19:23:54][62][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 19:23:54][62][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 19:23:54][62][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 19:23:54][62][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 19:23:54][62][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[29 19:23:54][62][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[29 19:23:54][62][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[29 19:23:54][62][INFO][check_os_info] OS Name : Linux +[29 19:23:54][62][INFO][check_os_info] Nodename : a36d39bf7ca3 +[29 19:23:54][62][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[29 19:23:54][62][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[29 19:23:54][62][INFO][check_os_info] Machine : x86_64 +[29 19:23:54][62][INFO][MAIN] initialize resources. +[29 19:23:54][62][INFO][osm_module_init] common.immf open success. +[29 19:23:54][62][INFO][initialize_offset] initialize offset success! e3921000 e3921050 e3931060 +[29 19:23:54][62][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[29 19:23:54][62][INFO][read_properties] jspd.prop TXN_IP= +[29 19:23:54][62][INFO][get_cgroup_version] checking cgroup version ... cgroup +[29 19:23:54][62][INFO][run_thread] create success. THR_DGCONN (0) +[29 19:23:54][62][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 19:23:54][62][INFO][thr_DGConn] dg=5340a0a:1314 +[29 19:23:54][62][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 19:23:54][62][INFO][get_Hostname] Hostname:[a36d39bf7ca3] +[29 19:23:54][62][INFO][get_HostKey] Hostkey:[D23770240CE798560DBC2E5BDEB1CD8DAF296E80] +[29 19:23:54][62][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[29 19:23:54][62][INFO][thr_DGConn] connection success. +[29 19:23:54][62][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 19:23:54][62][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 19:23:54][57][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[29 19:23:54][57][ERRO][MFJ-OSM-00020080] Already exists. pid:62, ProcessName:imxosm +[29 19:23:54][62][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 19:23:54][62][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 19:23:54][62][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[29 19:23:54][62][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 19:23:54][62][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 19:23:54][62][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 19:23:54][62][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[29 19:23:54][62][INFO][thread_docker_stat] thread terminate. +[29 19:23:54][62][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 19:23:54][62][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 19:23:54][62][INFO][run_thread] create success. THR_JVMALERT (0) +[29 19:23:54][62][INFO][run_thread] create success. THR_WASSTAT (0) +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=5014 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5004 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=5005 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=5006 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=5007 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=5008 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=5011 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=5012 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=5013 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:23:54][62][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=5002 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:23:57][62][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[29 19:24:04][62][INFO][process_msg] timesync diff:44562 +[29 19:25:00][62][INFO][info_log] current tcp_queue[1] skip[0] +[29 19:30:00][62][INFO][info_log] current tcp_queue[3] skip[0] +[29 19:34:20][66][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[29 19:34:20][66][INFO][check_double_execution] write pid. 66 +[29 19:34:20][66][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[29 19:34:20][66][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[29 19:34:20][66][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[29 19:34:20][66][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[29 19:34:20][66][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[29 19:34:20][66][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[29 19:34:20][66][INFO][read_properties_common] imx.prop DGADDR_LIST= +[29 19:34:20][66][INFO][read_properties_common] imx.prop CPU100:1 +[29 19:34:20][66][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[29 19:34:20][66][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[29 19:34:20][66][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[29 19:34:20][66][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[29 19:34:20][66][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[29 19:34:20][66][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[29 19:34:20][66][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[29 19:34:20][66][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[29 19:34:20][66][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[29 19:34:20][66][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[29 19:34:20][66][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[29 19:34:20][66][INFO][check_os_info] OS Name : Linux +[29 19:34:20][66][INFO][check_os_info] Nodename : 624e0a67abf0 +[29 19:34:20][66][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[29 19:34:20][66][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[29 19:34:20][66][INFO][check_os_info] Machine : x86_64 +[29 19:34:20][66][INFO][MAIN] initialize resources. +[29 19:34:20][66][INFO][osm_module_init] common.immf open success. +[29 19:34:20][66][INFO][initialize_offset] initialize offset success! 920c2000 920c2050 920d2060 +[29 19:34:20][66][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[29 19:34:20][66][INFO][read_properties] jspd.prop TXN_IP= +[29 19:34:20][66][INFO][get_cgroup_version] checking cgroup version ... cgroup +[29 19:34:20][66][INFO][run_thread] create success. THR_DGCONN (0) +[29 19:34:20][66][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[29 19:34:20][66][INFO][thr_DGConn] dg=5340a0a:1314 +[29 19:34:20][66][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[29 19:34:20][66][INFO][get_Hostname] Hostname:[624e0a67abf0] +[29 19:34:20][66][INFO][get_HostKey] Hostkey:[CB18B6A173FB9BA1F9A94C465C2AD2F37CCB0494] +[29 19:34:20][66][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[29 19:34:20][66][INFO][thr_DGConn] connection success. +[29 19:34:20][66][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[29 19:34:20][66][INFO][thr_DGConn] sock(3),data gather connect(1) +[29 19:34:20][66][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[29 19:34:20][66][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[29 19:34:20][71][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[29 19:34:20][71][ERRO][MFJ-OSM-00020080] Already exists. pid:66, ProcessName:imxosm +[29 19:34:20][66][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[29 19:34:20][66][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[29 19:34:20][66][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[29 19:34:20][66][INFO][run_thread] create success. THR_SHELLCMD (0) +[29 19:34:20][66][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[29 19:34:20][66][INFO][run_thread] create success. THR_FILESYSTEM (0) +[29 19:34:20][66][INFO][thread_docker_stat] thread terminate. +[29 19:34:20][66][INFO][run_thread] create success. THR_OSM_MODULE (0) +[29 19:34:20][66][INFO][run_thread] create success. THR_JVMALERT (0) +[29 19:34:20][66][INFO][run_thread] create success. THR_WASSTAT (0) +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=5015 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5014 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=5004 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=5005 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=5006 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=5007 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=5008 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=5011 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=5012 jvmpid=0 module_type=0 jvmtype=JVM +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=5013 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:34:20][66][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=5002 jvmpid=1 module_type=1001 jvmtype=JSPD +[29 19:34:21][66][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[29 19:34:24][66][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[29 19:34:30][66][INFO][process_msg] timesync diff:44579 +[29 19:35:00][66][INFO][info_log] current tcp_queue[2] skip[0] +[31 10:15:10][58][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[31 10:15:10][58][INFO][check_double_execution] write pid. 58 +[31 10:15:10][58][INFO][MAIN] start imxosm. version (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) +[31 10:15:10][58][INFO][MAIN] HOME: /usr/local/intermax/23.12.07.02/jspd +[31 10:15:10][58][INFO][read_properties_common] jspd.prop WR_ADDR=10.10.52.5:1314 +[31 10:15:10][58][INFO][read_properties_common] jspd.prop WR_MASTER_ADDR=none +[31 10:15:10][58][INFO][read_properties_common] jspd.prop USE_TCP_SEND_HEADER=true +[31 10:15:10][58][INFO][read_properties_common] jspd.prop DGADDR_LIST_RECONNECT_COUNT:5 +[31 10:15:10][58][INFO][read_properties_common] imx.prop DGADDR_LIST= +[31 10:15:10][58][INFO][read_properties_common] imx.prop CPU100:1 +[31 10:15:10][58][INFO][read_properties_common] imx.prop IMX_OSM_VERSION_FOR_GATHER_COMPATIBLE:20230418 +[31 10:15:10][58][INFO][read_properties_common] imx.prop ENABLE_OSM_STANDALONE:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop COLLECT_FS_NFS:N +[31 10:15:10][58][INFO][read_properties_common] imx.prop IMX_OSM_SLAVE:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop OSM_MODULE_KEY: +[31 10:15:10][58][INFO][read_properties_common] imx.prop USE_GLOBAL_NAMING_MMF:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop COLLECT_OSM_HOSTID:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop COLLECT_SWAP_MEMORY:1 +[31 10:15:10][58][INFO][read_properties_common] imx.prop COLLECT_FILESYSTEM:1 +[31 10:15:10][58][INFO][read_properties_common] imx.prop ENABLE_UPDATE_MANAGER:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop DG_RECONNECT_DELAY_TIME:5000 +[31 10:15:10][58][INFO][read_properties_common] imx.prop USE_USERNAME_LOCK:1 +[31 10:15:10][58][INFO][read_properties_common] imx.prop INTERVAL_INFO_LOG:300 +[31 10:15:10][58][INFO][read_properties_common] imx.prop MAX_TCP_QUEUE:2000 +[31 10:15:10][58][INFO][read_properties_common] imx.prop ACTIVE_PACKET_METHOD_CHECKSTR:0 +[31 10:15:10][58][INFO][read_properties_common] imx.prop RUN_IMXTXN=true +[31 10:15:10][58][INFO][check_os_info] OS Name : Linux +[31 10:15:10][58][INFO][check_os_info] Nodename : 8fc7f3d17a8e +[31 10:15:10][58][INFO][check_os_info] Release : 3.10.0-1160.88.1.el7.x86_64 +[31 10:15:10][58][INFO][check_os_info] Version : #1 SMP Tue Mar 7 15:41:52 UTC 2023 +[31 10:15:10][58][INFO][check_os_info] Machine : x86_64 +[31 10:15:10][58][INFO][MAIN] initialize resources. +[31 10:15:10][58][INFO][osm_module_init] common.immf open success. +[31 10:15:10][58][INFO][initialize_offset] initialize offset success! 29712000 29712050 29722060 +[31 10:15:10][58][INFO][read_properties] jspd.prop TXN_ADDR=2404 +[31 10:15:10][58][INFO][read_properties] jspd.prop TXN_IP= +[31 10:15:10][58][INFO][get_cgroup_version] checking cgroup version ... cgroup +[31 10:15:10][58][INFO][run_thread] create success. THR_DGCONN (0) +[31 10:15:10][58][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... start +[31 10:15:10][58][INFO][thr_DGConn] dg=5340a0a:1314 +[31 10:15:10][63][NOTI]g_imx_home[/usr/local/intermax/23.12.07.02/jspd] +[31 10:15:10][58][INFO][run_thread] create success. THD_DGCONN_SENDER (0) +[31 10:15:10][58][INFO][get_Hostname] Hostname:[8fc7f3d17a8e] +[31 10:15:10][63][ERRO][MFJ-OSM-00020080] Already exists. pid:58, ProcessName:imxosm +[31 10:15:10][58][INFO][get_HostKey] Hostkey:[1496196B54265E6861B48C14D08CE49D733CFE4A] +[31 10:15:10][58][INFO][get_xm_sys_hostkey] xm_sys_hostkey:4327C677 +[31 10:15:10][58][INFO][thr_DGConn] connection success. +[31 10:15:10][58][INFO][send_identity_unite] agt ver[Build 23-09-21 11:47:55 Version 5.3.0 ],agt path[/usr/local/intermax/23.12.07.02/jspd] +[31 10:15:10][58][INFO][thr_DGConn] sock(3),data gather connect(1) +[31 10:15:10][58][INFO][set_res_identity_unite] g_protocol_version_compatible_gather :20230601, g_current_gather_version : 20230925 +[31 10:15:10][58][INFO][send_osm_license_info] send license data [server_id:0 agent_pid:0 module_type:1000] +[31 10:15:10][58][INFO][waiting_for_gather_identity]Waiting for response from Data Gather ... end(20230601) +[31 10:15:10][58][INFO][run_thread] create success. THR_OSSTAT_PROCLIST (0) +[31 10:15:10][58][INFO][run_thread] create success. THR_DOCKER_STAT (0) +[31 10:15:10][58][INFO][run_thread] create success. THR_SHELLCMD (0) +[31 10:15:10][58][ERRO][thread_docker_stat] get docker id has failed(ret:-2) +[31 10:15:10][58][INFO][run_thread] create success. THR_FILESYSTEM (0) +[31 10:15:10][58][INFO][thread_docker_stat] thread terminate. +[31 10:15:10][58][INFO][run_thread] create success. THR_OSM_MODULE (0) +[31 10:15:10][58][INFO][run_thread] create success. THR_JVMALERT (0) +[31 10:15:10][58][INFO][run_thread] create success. THR_WASSTAT (0) +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=0 wasid=5024 jvmpid=1 module_type=1001 jvmtype=JSPD +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=1 wasid=5015 jvmpid=1 module_type=1001 jvmtype=JSPD +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=2 wasid=5014 jvmpid=1 module_type=1001 jvmtype=JSPD +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=3 wasid=5004 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=4 wasid=5005 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=5 wasid=5006 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=6 wasid=5007 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=7 wasid=5008 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=8 wasid=5011 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=9 wasid=5012 jvmpid=0 module_type=0 jvmtype=JVM +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=10 wasid=5013 jvmpid=1 module_type=1001 jvmtype=JSPD +[31 10:15:10][58][INFO][read_all_jvm_pids] new jvm info idx=11 wasid=5002 jvmpid=1 module_type=1001 jvmtype=JSPD +[31 10:15:12][58][INFO][runprocess] execute process. (/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh /usr/local/intermax/23.12.07.02/jspd imxtxn 64) +[31 10:15:20][58][INFO][process_msg] timesync diff:50144 +[31 10:20:00][58][INFO][info_log] current tcp_queue[1] skip[0] +[31 10:25:00][58][INFO][info_log] current tcp_queue[2] skip[0] +[31 10:30:00][58][INFO][info_log] current tcp_queue[2] skip[0] +[31 10:35:00][58][INFO][info_log] current tcp_queue[1] skip[0] +[31 10:40:00][58][INFO][info_log] current tcp_queue[3] skip[0] +[31 10:45:00][58][INFO][info_log] current tcp_queue[1] skip[0] +[31 10:50:00][58][INFO][info_log] current tcp_queue[2] skip[0] +[31 10:55:00][58][INFO][info_log] current tcp_queue[0] skip[0] +[31 11:00:00][58][INFO][info_log] current tcp_queue[3] skip[0] +[31 11:00:10][58][INFO][process_msg] timesync diff:51020 +[31 11:05:00][58][INFO][info_log] current tcp_queue[3] skip[0] +[31 11:10:00][58][INFO][info_log] current tcp_queue[1] skip[0] +[31 11:15:00][58][INFO][info_log] current tcp_queue[1] skip[0] +[31 11:20:00][58][INFO][info_log] current tcp_queue[1] skip[0] diff --git a/intermax/23.12.07.02/jspd/log/imx/imxtxn.log b/intermax/23.12.07.02/jspd/log/imx/imxtxn.log new file mode 100644 index 0000000..c8a973e --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/imx/imxtxn.log @@ -0,0 +1,2791 @@ +[26 10:31:37][77][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[26 10:31:37][77][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[26 10:31:37][77][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[26 10:31:37][77][INFO]XM_LOG_OPT: 0 [opt_num:0] +[26 10:31:37][77][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[26 10:31:37][77][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[26 10:31:37][77][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[26 10:31:37][77][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[26 10:31:37][77][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[26 10:31:37][77][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[26 10:31:37][77][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[26 10:31:37][77][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[26 10:31:37][77][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[26 10:31:37][77][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[26 10:31:37][77][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[26 10:31:37][77][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[26 10:31:37][77][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[26 10:31:37][77][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[26 10:31:37][77][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[26 10:31:37][77][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[26 10:31:37][77][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[26 10:31:37][77][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[26 10:31:37][77][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[26 10:31:37][77][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[26 10:31:37][77][INFO][read_properties] imx.prop AGENT_MODE:2 +[26 10:31:37][77][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[26 10:31:37][77][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[26 10:31:37][77][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[26 10:31:37][77][INFO][MAIN] hostname[cae52bf8122a] +[26 10:31:37][77][INFO][check_double_execution] write pid. 77 +[26 10:31:37][77][INFO][create_new_dg_connection] 10.10.52.5:1314 (0a0a34050522) +[26 10:31:37][77][INFO][create_new_dg_connection] thread create: -1296882112 +[26 10:31:37][77][INFO][add_thread_handle] idx[0],handle[0xb2b32640] +[26 10:31:37][77][INFO][add_thread_handle] idx[1],handle[0xb2131640] +[26 10:31:37][77][INFO][create_new_dg_connection] thread create: -1307371968 +[26 10:31:37][77][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[3],thread_id[-1296882112] +[26 10:31:37][77][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[26 10:31:37][77][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[26 10:31:37][77][INFO]thr_udp_wasconn pthread_create created. +[26 10:31:37][77][INFO][add_thread_handle] idx[2],handle[0xb1730640] +[26 10:31:37][77][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[26 10:31:37][77][INFO][add_thread_handle] idx[3],handle[0xb0d2f640] +[26 10:31:37][77][INFO]thr_udp_wasconn pthread_create created. +[26 10:31:37][77][INFO][add_thread_handle] idx[4],handle[0xabfff640] +[26 10:31:37][77][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[26 10:31:37][77][INFO][add_thread_handle] idx[5],handle[0xab5fe640] +[26 10:31:37][77][INFO][CollectStart] log thread id (start_collect2_thread) : -1430268352 created +[26 10:31:37][77][INFO][add_thread_handle] idx[6],handle[0xaabfd640] +[26 10:31:37][77][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[26 10:31:37][77][INFO][add_thread_handle] idx[7],handle[0x8d5d2640] +[26 10:31:37][77][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[26 10:31:37][77][INFO][add_thread_handle] idx[8],handle[0x8cdd1640] +[26 10:31:37][77][INFO][collect_initialize] thread_udpsender pthread_create created. +[26 10:31:37][77][INFO][add_thread_handle] idx[9],handle[0x87fff640] +[26 10:32:00][77][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1640, skip_count: 0 bind_count:0 +[26 10:32:00][77][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:32:00][77][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:32:00][77][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:32:00][77][INFO][info_log] udp recv list by wasid [5002/] +[26 10:32:00][77][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:32:00][77][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:32:00][77][INFO][info_log] [0] udp recv(424.00b) 12 0 | 12 0 | 0 0 | 0 +[26 10:32:00][77][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:32:00][77][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:32:00][77][INFO][info_log] [1] udp recv(1.07k) 8 0 | 8 0 | 0 0 | 0 +[26 10:32:00][77][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:32:00][77][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:32:00][77][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[26 10:32:00][77][INFO][info_log] wasid:5002, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[26 10:32:00][77][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[4/4] +[26 10:32:00][77][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[26 10:33:00][77][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:33:00][77][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:33:00][77][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:33:00][77][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:33:00][77][INFO][info_log] udp recv list by wasid [5002/] +[26 10:33:00][77][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:33:00][77][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:33:00][77][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 10:33:00][77][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:33:00][77][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:33:00][77][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:33:00][77][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:33:00][77][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:48:55][82][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[26 10:48:55][82][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[26 10:48:55][82][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[26 10:48:55][82][INFO]XM_LOG_OPT: 0 [opt_num:0] +[26 10:48:55][82][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[26 10:48:55][82][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[26 10:48:55][82][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[26 10:48:55][82][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[26 10:48:55][82][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[26 10:48:55][82][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[26 10:48:55][82][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[26 10:48:55][82][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[26 10:48:55][82][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[26 10:48:55][82][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[26 10:48:55][82][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[26 10:48:55][82][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[26 10:48:55][82][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[26 10:48:55][82][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[26 10:48:55][82][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[26 10:48:55][82][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[26 10:48:55][82][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[26 10:48:55][82][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[26 10:48:55][82][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[26 10:48:55][82][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[26 10:48:55][82][INFO][read_properties] imx.prop AGENT_MODE:2 +[26 10:48:55][82][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[26 10:48:55][82][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[26 10:48:55][82][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[26 10:48:55][82][INFO][MAIN] hostname[3d694599cb55] +[26 10:48:55][82][ERRO][process_check] get_process_cmd_by_pid() has failed.(-1) +[26 10:48:55][82][INFO][check_double_execution] write pid. 82 +[26 10:48:55][82][INFO][create_new_dg_connection] 10.10.52.5:1314 (0a0a34050522) +[26 10:48:55][82][INFO][create_new_dg_connection] thread create: -1005742528 +[26 10:48:55][82][INFO][add_thread_handle] idx[0],handle[0xc40d9640] +[26 10:48:55][82][INFO][add_thread_handle] idx[1],handle[0xc36d8640] +[26 10:48:55][82][INFO][create_new_dg_connection] thread create: -1016232384 +[26 10:48:55][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[26 10:48:55][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[26 10:48:55][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[26 10:48:55][82][INFO]thr_udp_wasconn pthread_create created. +[26 10:48:55][82][INFO][add_thread_handle] idx[2],handle[0xc2cd7640] +[26 10:48:55][82][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[26 10:48:55][82][INFO][add_thread_handle] idx[3],handle[0xc22d6640] +[26 10:48:55][82][INFO]thr_udp_wasconn pthread_create created. +[26 10:48:55][82][INFO][add_thread_handle] idx[4],handle[0xc18d5640] +[26 10:48:55][82][INFO][CollectStart] log thread id (start_collect2_thread) : -1058191808 created +[26 10:48:55][82][INFO][add_thread_handle] idx[5],handle[0xc0ed4640] +[26 10:48:55][82][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[26 10:48:55][82][INFO][add_thread_handle] idx[6],handle[0xb3fff640] +[26 10:48:55][82][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[26 10:48:55][82][INFO][add_thread_handle] idx[7],handle[0x9ab81640] +[26 10:48:55][82][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[26 10:48:55][82][INFO][add_thread_handle] idx[8],handle[0x9a380640] +[26 10:48:55][82][INFO][collect_initialize] thread_udpsender pthread_create created. +[26 10:48:55][82][INFO][add_thread_handle] idx[9],handle[0x99b7f640] +[26 10:49:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:54, skip_count: 0 bind_count:0 +[26 10:49:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:49:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:49:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:49:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:49:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:49:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:49:00][82][INFO][info_log] [0] udp recv(26.00b) 1 0 | 1 0 | 0 0 | 0 +[26 10:49:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:49:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:49:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:49:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:49:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:50:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:50:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:50:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:50:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:50:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:50:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:50:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:50:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 10:50:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:50:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:50:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:50:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:50:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:51:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:51:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:51:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:51:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:51:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:51:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:51:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:51:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 10:51:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:51:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:51:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:51:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:51:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:52:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:2550, skip_count: 0 bind_count:0 +[26 10:52:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:52:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:52:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:52:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:52:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:52:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:52:00][82][INFO][info_log] [0] udp recv(756.00b) 24 0 | 24 0 | 0 0 | 0 +[26 10:52:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:52:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:52:00][82][INFO][info_log] [1] udp recv(822.00b) 6 0 | 6 0 | 0 0 | 0 +[26 10:52:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:52:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:52:00][82][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[26 10:52:00][82][INFO][info_log] wasid:5004, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[26 10:52:00][82][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[4/3] +[26 10:52:00][82][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[26 10:53:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:53:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:53:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 10:53:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:53:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:53:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:53:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:53:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 10:53:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:53:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:53:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:53:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:53:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:54:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:54:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:54:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:54:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:54:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:54:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:54:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:54:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 10:54:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:54:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:54:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:54:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:54:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:55:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:55:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:55:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:55:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:55:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:55:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:55:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:55:00][82][INFO][info_log] [0] udp recv(574.00b) 21 0 | 21 0 | 0 0 | 0 +[26 10:55:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:55:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:55:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:55:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:55:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:55:00][82][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[26 10:55:00][82][INFO][info_log] wasid:5004, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[26 10:55:00][82][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[1/1] +[26 10:55:00][82][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(1), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[26 10:56:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1659, skip_count: 0 bind_count:0 +[26 10:56:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:56:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:56:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:56:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:56:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:56:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:56:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 10:56:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:56:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:56:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:56:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:56:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:57:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:57:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:57:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:57:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:57:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:57:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:57:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:57:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 10:57:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:57:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:57:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:57:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:57:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:58:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:58:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:58:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:58:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:58:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:58:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:58:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:58:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 10:58:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:58:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:58:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:58:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:58:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 10:59:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 10:59:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 10:59:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 10:59:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 10:59:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 10:59:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[26 10:59:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 10:59:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[26 10:59:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 10:59:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 10:59:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 10:59:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 10:59:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:00:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:00:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:00:00][82][INFO][info_log] nmx:0 nlx:50b000 slt:(0) cqx:(41)(1)(1) +[26 11:00:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:00:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:00:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:00:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:00:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[26 11:00:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:00:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:00:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:00:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:00:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:01:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:01:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:01:00][82][INFO][info_log] nmx:0 nlx:50b000 slt:(0) cqx:(41)(1)(1) +[26 11:01:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:01:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:01:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[26 11:01:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:01:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[26 11:01:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:01:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:01:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:01:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:01:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:02:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:02:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:02:00][82][INFO][info_log] nmx:0 nlx:50b000 slt:(0) cqx:(41)(1)(1) +[26 11:02:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:02:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:02:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:02:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:02:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[26 11:02:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:02:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:02:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:02:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:02:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:03:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:03:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:03:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:03:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:03:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:03:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:03:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:03:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:03:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:03:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:03:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:03:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:03:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:04:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:04:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:04:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:04:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:04:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:04:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:04:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:04:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:04:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:04:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:04:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:04:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:04:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:05:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:05:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:05:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:05:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:05:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:05:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:05:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:05:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:05:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:05:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:05:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:05:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:05:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:06:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:06:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:06:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:06:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:06:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:06:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[26 11:06:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:06:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[26 11:06:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:06:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:06:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:06:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:06:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:07:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1807, skip_count: 0 bind_count:0 +[26 11:07:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:07:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:07:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:07:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:07:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:07:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:07:00][82][INFO][info_log] [0] udp recv(548.00b) 20 0 | 21 0 | 0 0 | 0 +[26 11:07:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:07:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:07:00][82][INFO][info_log] [1] udp recv(137.00b) 1 0 | 1 0 | 0 0 | 0 +[26 11:07:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:07:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:07:00][82][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[26 11:07:00][82][INFO][info_log] wasid:5004, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[26 11:07:00][82][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[1/1] +[26 11:07:00][82][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(1), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[26 11:08:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:08:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:08:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:08:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:08:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:08:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:08:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:08:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:08:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:08:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:08:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:08:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:08:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:09:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:09:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:09:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:09:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:09:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:09:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:09:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:09:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:09:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:09:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:09:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:09:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:09:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:10:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:10:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:10:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:10:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:10:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:10:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:10:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:10:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:10:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:10:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:10:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:10:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:10:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:11:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:11:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:11:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:11:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:11:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:11:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:11:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:11:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:11:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:11:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:11:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:11:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:11:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:12:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:12:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:12:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:12:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:12:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:12:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:12:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:12:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:12:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:12:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:12:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:12:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:12:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:13:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:13:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:13:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:13:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:13:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:13:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:13:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:13:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:13:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:13:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:13:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:13:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:13:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:14:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:14:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:14:00][82][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[26 11:14:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:14:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:14:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:14:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:14:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:14:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:14:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:14:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:14:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:14:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:15:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:15:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:15:00][82][INFO][info_log] nmx:0 nlx:b000 slt:(0) cqx:(41)(1)(1) +[26 11:15:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:15:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:15:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:15:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:15:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:15:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:15:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:15:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:15:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:15:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:16:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:16:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:16:00][82][INFO][info_log] nmx:0 nlx:b000 slt:(0) cqx:(41)(1)(1) +[26 11:16:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:16:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:16:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:16:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:16:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:16:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:16:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:16:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:16:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:16:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:17:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:17:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:17:00][82][INFO][info_log] nmx:0 nlx:b000 slt:(0) cqx:(41)(1)(1) +[26 11:17:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:17:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:17:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[26 11:17:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:17:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[26 11:17:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:17:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:17:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:17:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:17:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:18:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:18:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:18:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:18:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:18:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:18:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:18:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:18:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[26 11:18:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:18:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:18:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:18:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:18:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:19:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:19:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:19:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:19:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:19:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:19:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:19:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:19:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:19:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:19:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:19:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:19:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:19:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:20:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:20:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:20:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:20:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:20:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:20:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:20:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:20:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:20:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:20:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:20:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:20:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:20:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:21:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:21:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:21:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:21:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:21:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:21:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:21:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:21:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:21:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:21:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:21:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:21:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:21:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:22:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:22:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:22:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:22:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:22:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:22:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:22:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:22:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:22:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:22:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:22:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:22:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:22:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:23:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:23:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:23:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:23:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:23:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:23:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:23:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:23:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:23:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:23:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:23:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:23:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:23:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:24:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:24:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:24:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:24:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:24:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:24:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:24:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:24:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:24:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:24:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:24:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:24:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:24:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:25:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:25:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:25:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:25:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:25:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:25:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:25:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:25:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:25:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:25:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:25:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:25:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:25:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:26:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:26:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:26:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:26:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:26:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:26:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:26:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:26:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:26:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:26:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:26:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:26:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:26:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:27:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:27:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:27:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:27:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:27:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:27:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:27:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:27:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:27:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:27:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:27:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:27:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:27:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:28:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:28:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:28:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:28:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:28:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:28:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:28:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:28:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:28:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:28:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:28:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:28:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:28:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:29:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:29:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:29:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:29:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:29:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:29:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:29:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:29:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:29:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:29:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:29:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:29:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:29:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:30:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:30:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:30:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:30:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:30:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:30:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:30:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:30:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:30:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:30:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:30:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:30:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:30:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:31:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:31:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:31:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:31:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:31:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:31:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:31:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:31:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:31:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:31:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:31:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:31:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:31:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:32:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:32:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:32:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:32:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:32:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:32:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:32:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:32:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:32:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:32:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:32:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:32:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:32:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:33:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:33:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:33:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:33:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:33:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:33:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:33:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:33:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:33:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:33:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:33:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:33:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:33:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:34:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:34:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:34:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:34:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:34:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:34:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:34:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:34:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[26 11:34:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:34:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:34:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:34:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:34:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:35:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:35:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:35:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:35:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:35:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:35:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:35:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:35:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:35:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:35:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:35:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:35:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:35:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:36:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:36:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:36:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:36:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:36:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:36:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:36:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:36:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[26 11:36:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:36:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:36:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:36:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:36:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:37:00][82][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[26 11:37:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[26 11:37:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[26 11:37:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[26 11:37:00][82][INFO][info_log] udp recv list by wasid [5004/] +[26 11:37:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:37:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[26 11:37:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[26 11:37:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[26 11:37:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[26 11:37:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[26 11:37:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[26 11:37:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[26 11:37:36][82][ERRO][processing_socket] get packet data failed(-1) +[26 11:37:36][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[28 09:33:28][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[28 09:33:28][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[28 09:33:28][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[28 09:34:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:2565, skip_count: 0 bind_count:0 +[28 09:34:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:34:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:34:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:34:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:34:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:34:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:34:00][82][INFO][info_log] [0] udp recv(598.00b) 23 0 | 23 0 | 0 0 | 0 +[28 09:34:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:34:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:34:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:34:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:34:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 09:35:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:3240, skip_count: 0 bind_count:0 +[28 09:35:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:35:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:35:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:35:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:35:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:35:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:35:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[28 09:35:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:35:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:35:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:35:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:35:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 09:36:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:3240, skip_count: 0 bind_count:0 +[28 09:36:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:36:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:36:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:36:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:36:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:36:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:36:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[28 09:36:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:36:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:36:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:36:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:36:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 09:37:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:3240, skip_count: 0 bind_count:0 +[28 09:37:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:37:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:37:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:37:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:37:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:37:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:37:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[28 09:37:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:37:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:37:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:37:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:37:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 09:38:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:3240, skip_count: 0 bind_count:0 +[28 09:38:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:38:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:38:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:38:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:38:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:38:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:38:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[28 09:38:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:38:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:38:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:38:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:38:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 09:39:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:3240, skip_count: 0 bind_count:0 +[28 09:39:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 09:39:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 09:39:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 09:39:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 09:39:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:39:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 09:39:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[28 09:39:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 09:39:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 09:39:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 09:39:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 09:39:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 17:32:54][82][ERRO][processing_socket] get packet data failed(-1) +[28 17:32:54][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[28 17:32:59][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[28 17:32:59][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[28 17:32:59][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[28 17:33:00][82][INFO][info_log] tcp send queue count: 2 (10.10.52.5:1314), send size:594, skip_count: 0 bind_count:0 +[28 17:33:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 17:33:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 17:33:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 17:33:00][82][INFO][info_log] udp recv list by wasid [5004/5005/] +[28 17:33:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 17:33:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 17:33:00][82][INFO][info_log] [0] udp recv(104.00b) 4 0 | 4 0 | 0 0 | 0 +[28 17:33:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 17:33:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 17:33:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 17:33:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 17:33:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[28 17:33:59][82][INFO][info_log] tcp send queue count: 3 (10.10.52.5:1314), send size:4752, skip_count: 0 bind_count:0 +[28 17:33:59][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[28 17:33:59][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[28 17:33:59][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[28 17:33:59][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/] +[28 17:33:59][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 17:33:59][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[28 17:33:59][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[28 17:33:59][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[28 17:33:59][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[28 17:33:59][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[28 17:33:59][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[28 17:33:59][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 01:34:00][82][INFO][info_log] tcp send queue count: 3 (10.10.52.5:1314), send size:5832, skip_count: 0 bind_count:0 +[29 01:34:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 01:34:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 01:34:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 01:34:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/] +[29 01:34:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 01:34:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 01:34:00][82][INFO][info_log] [0] udp recv(676.00b) 26 0 | 26 0 | 0 0 | 0 +[29 01:34:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 01:34:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 01:34:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 01:34:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 01:34:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 01:34:02][82][ERRO][processing_socket] get packet data failed(-1) +[29 01:34:02][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[29 01:34:07][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[29 01:34:07][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 01:34:07][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 01:35:00][82][INFO][info_log] tcp send queue count: 4 (10.10.52.5:1314), send size:5724, skip_count: 0 bind_count:0 +[29 01:35:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 01:35:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 01:35:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 01:35:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/] +[29 01:35:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 01:35:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 01:35:00][82][INFO][info_log] [0] udp recv(416.00b) 16 0 | 16 0 | 0 0 | 0 +[29 01:35:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 01:35:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 01:35:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 01:35:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 01:35:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 09:35:00][82][INFO][info_log] tcp send queue count: 4 (10.10.52.5:1314), send size:7452, skip_count: 0 bind_count:0 +[29 09:35:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 09:35:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 09:35:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 09:35:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/] +[29 09:35:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:35:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 09:35:00][82][INFO][info_log] [0] udp recv(598.00b) 23 0 | 23 0 | 0 0 | 0 +[29 09:35:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:35:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 09:35:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 09:35:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 09:35:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 09:35:01][82][ERRO][processing_socket] get packet data failed(-1) +[29 09:35:01][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[29 09:35:06][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[29 09:35:06][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 09:35:06][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 09:36:00][82][INFO][info_log] tcp send queue count: 5 (10.10.52.5:1314), send size:7236, skip_count: 0 bind_count:0 +[29 09:36:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 09:36:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 09:36:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 09:36:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/] +[29 09:36:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:36:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 09:36:00][82][INFO][info_log] [0] udp recv(468.00b) 18 0 | 18 0 | 0 0 | 0 +[29 09:36:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:36:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 09:36:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 09:36:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 09:36:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 09:37:00][82][INFO][info_log] tcp send queue count: 5 (10.10.52.5:1314), send size:8100, skip_count: 0 bind_count:0 +[29 09:37:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 09:37:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 09:37:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 09:37:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/] +[29 09:37:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:37:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 09:37:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 09:37:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:37:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 09:37:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 09:37:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 09:37:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 09:38:00][82][INFO][info_log] tcp send queue count: 5 (10.10.52.5:1314), send size:8100, skip_count: 0 bind_count:0 +[29 09:38:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 09:38:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 09:38:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 09:38:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/] +[29 09:38:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:38:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 09:38:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 09:38:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:38:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 09:38:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 09:38:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 09:38:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 09:39:00][82][INFO][info_log] tcp send queue count: 5 (10.10.52.5:1314), send size:8100, skip_count: 0 bind_count:0 +[29 09:39:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 09:39:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 09:39:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 09:39:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/] +[29 09:39:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:39:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 09:39:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 09:39:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 09:39:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 09:39:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 09:39:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 09:39:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:21:36][82][ERRO][processing_socket] get packet data failed(-1) +[29 17:21:36][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[29 17:21:41][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[29 17:21:41][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 17:21:41][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 17:22:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:10746, skip_count: 0 bind_count:0 +[29 17:22:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:22:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:22:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:22:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:22:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:22:00][82][INFO][info_log] [0] udp recv(702.00b) 27 0 | 26 0 | 0 0 | 0 +[29 17:22:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:22:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:22:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:22:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:22:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:23:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:23:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:23:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:23:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:23:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:23:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:23:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 21 0 | 0 0 | 0 +[29 17:23:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:23:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:23:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:23:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:23:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:24:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:24:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:24:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:24:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:24:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:24:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:24:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 17:24:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:24:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:24:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:24:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:24:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:25:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:25:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:25:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:25:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:25:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:25:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:25:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:25:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:25:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:25:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:25:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:25:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:26:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:26:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:26:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:26:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:26:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:26:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:26:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:26:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:26:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:26:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:26:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:26:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:27:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:27:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:27:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:27:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:27:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:27:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:27:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:27:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:27:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:27:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:27:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:27:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:28:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:28:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:28:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:28:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:28:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:28:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:28:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 17:28:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:28:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:28:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:28:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:28:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:29:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:29:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:29:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:29:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:29:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:29:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:29:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 17:29:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:29:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:29:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:29:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:29:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:30:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:30:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:30:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:30:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:30:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:30:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:30:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:30:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:30:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:30:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:30:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:30:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:31:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:31:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:31:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:31:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:31:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:31:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:31:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:31:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:31:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:31:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:31:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:31:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:32:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:32:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:32:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:32:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:32:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:32:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:32:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[29 17:32:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:32:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:32:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:32:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:32:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:33:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:33:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:33:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:33:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:33:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:33:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:33:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[29 17:33:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:33:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:33:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:33:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:33:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:34:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:34:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:34:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:34:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:34:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:34:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:34:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:34:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:34:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:34:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:34:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:34:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:35:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:35:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:35:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:35:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:35:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:35:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:35:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:35:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:35:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:35:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:35:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:35:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:36:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:36:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:36:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:36:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:36:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:36:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:36:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:36:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:36:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:36:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:36:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:36:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:37:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:37:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:37:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:37:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:37:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:37:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:37:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:37:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:37:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:37:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:37:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:37:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:38:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:38:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:38:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:38:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:38:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:38:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:38:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:38:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:38:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:38:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:38:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:38:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:39:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:39:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:39:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:39:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:39:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:39:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:39:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:39:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:39:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:39:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:39:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:39:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:40:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:40:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:40:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:40:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:40:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:40:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:40:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:40:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:40:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:40:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:40:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:40:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:41:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:41:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:41:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:41:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:41:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:41:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:41:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:41:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:41:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:41:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:41:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:41:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:42:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:42:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:42:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:42:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:42:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:42:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:42:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[29 17:42:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:42:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:42:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:42:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:42:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:43:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:43:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:43:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:43:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:43:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:43:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:43:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:43:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:43:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:43:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:43:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:43:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:44:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:44:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:44:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:44:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:44:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:44:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:44:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[29 17:44:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:44:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:44:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:44:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:44:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:45:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:45:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:45:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:45:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:45:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:45:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:45:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 17:45:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:45:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:45:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:45:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:45:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 17:46:00][82][INFO][info_log] tcp send queue count: 6 (10.10.52.5:1314), send size:9720, skip_count: 0 bind_count:0 +[29 17:46:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 17:46:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 17:46:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 17:46:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/] +[29 17:46:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 17:46:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 17:46:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 17:46:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 17:46:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 17:46:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 17:46:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:35:48][82][ERRO][processing_socket] get packet data failed(-1) +[29 18:35:48][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[29 18:35:53][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[29 18:35:53][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 18:35:53][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 18:36:00][82][INFO][info_log] tcp send queue count: 7 (10.10.52.5:1314), send size:10692, skip_count: 0 bind_count:0 +[29 18:36:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:36:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:36:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:36:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/] +[29 18:36:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:36:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:36:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 18:36:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:36:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:36:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:36:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:36:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:37:00][82][INFO][info_log] tcp send queue count: 7 (10.10.52.5:1314), send size:11340, skip_count: 0 bind_count:0 +[29 18:37:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:37:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:37:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:37:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/] +[29 18:37:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:37:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:37:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 18:37:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:37:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:37:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:37:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:37:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 18:38:00][82][INFO][info_log] tcp send queue count: 7 (10.10.52.5:1314), send size:11340, skip_count: 0 bind_count:0 +[29 18:38:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 18:38:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 18:38:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 18:38:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/] +[29 18:38:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 18:38:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 18:38:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[29 18:38:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 18:38:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 18:38:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 18:38:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 18:38:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:03:43][82][ERRO][MFJ-IMX-00040080] Detected 'thread_tcpsender' hang. 1706522623 - 1706521080 > 3000 +[29 19:03:55][82][ERRO][processing_socket] get packet data failed(-1) +[29 19:03:55][82][INFO][thread_tcpconn] receive message hsa failed. data gather disconnect.(4) +[29 19:04:00][82][INFO][info_log] tcp send queue count: 0 (10.10.52.5:1314), send size:2457, skip_count: 0 bind_count:0 +[29 19:04:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:04:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:04:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:04:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/] +[29 19:04:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:04:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:04:00][82][INFO][info_log] [0] udp recv(130.00b) 5 0 | 6 0 | 0 0 | 0 +[29 19:04:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:04:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:04:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:04:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:04:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:04:00][82][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[-1005742528] +[29 19:04:00][82][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 19:04:00][82][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 19:05:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12609, skip_count: 0 bind_count:0 +[29 19:05:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:05:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:05:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:05:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:05:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:05:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:05:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:05:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:05:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:05:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:05:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:05:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:06:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:06:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:06:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:06:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:06:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:06:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:06:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:06:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 19:06:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:06:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:06:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:06:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:06:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:07:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:07:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:07:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:07:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:07:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:07:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:07:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:07:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 19:07:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:07:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:07:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:07:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:07:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:08:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:08:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:08:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:08:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:08:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:08:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:08:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:08:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 19:08:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:08:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:08:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:08:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:08:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:09:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:09:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:09:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:09:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:09:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:09:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:09:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:09:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:09:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:09:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:09:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:09:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:09:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:10:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:10:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:10:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:10:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:10:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:10:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 19:10:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:10:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[29 19:10:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:10:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:10:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:10:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:10:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:11:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:11:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:11:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:11:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:11:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:11:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:11:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:11:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[29 19:11:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:11:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:11:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:11:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:11:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:12:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:12:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:12:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:12:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:12:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:12:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 19:12:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:12:00][82][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[29 19:12:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:12:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:12:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:12:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:12:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:13:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:13:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:13:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:13:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:13:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:13:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[29 19:13:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:13:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:13:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:13:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:13:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:13:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:13:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:14:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:14:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:14:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:14:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:14:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:14:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:14:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:14:00][82][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[29 19:14:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:14:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:14:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:14:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:14:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:15:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:15:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:15:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:15:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:15:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:15:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:15:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:15:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:15:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:15:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:15:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:15:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:15:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:16:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:16:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:16:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:16:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:16:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:16:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:16:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:16:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:16:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:16:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:16:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:16:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:16:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:17:00][82][INFO][info_log] tcp send queue count: 8 (10.10.52.5:1314), send size:12960, skip_count: 0 bind_count:0 +[29 19:17:00][82][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:17:00][82][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:17:00][82][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:17:00][82][INFO][info_log] udp recv list by wasid [5004/5005/5006/5007/5008/5011/5012/5013/] +[29 19:17:00][82][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:17:00][82][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:17:00][82][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:17:00][82][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:17:00][82][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:17:00][82][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:17:00][82][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:17:00][82][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:23:58][86][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[29 19:23:58][86][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[29 19:23:58][86][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[29 19:23:58][86][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 19:23:58][86][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[29 19:23:58][86][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 19:23:58][86][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 19:23:58][86][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 19:23:58][86][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[29 19:23:58][86][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 19:23:58][86][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:23:58][86][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:23:58][86][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 19:23:58][86][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 19:23:58][86][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 19:23:58][86][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 19:23:58][86][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 19:23:58][86][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 19:23:58][86][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 19:23:58][86][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 19:23:58][86][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 19:23:58][86][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 19:23:58][86][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 19:23:58][86][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[29 19:23:58][86][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 19:23:58][86][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 19:23:58][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 19:23:58][86][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 19:23:58][86][INFO][MAIN] hostname[a36d39bf7ca3] +[29 19:23:58][86][ERRO][process_check] get_process_cmd_by_pid() has failed.(-1) +[29 19:23:58][86][INFO][check_double_execution] write pid. 86 +[29 19:23:58][86][INFO][create_new_dg_connection] 10.10.52.5:1314 (0a0a34050522) +[29 19:23:58][86][INFO][create_new_dg_connection] thread create: -1345403328 +[29 19:23:58][86][INFO][add_thread_handle] idx[0],handle[0xafcec640] +[29 19:23:58][86][INFO][add_thread_handle] idx[1],handle[0xaf2eb640] +[29 19:23:58][86][INFO][create_new_dg_connection] thread create: -1355893184 +[29 19:23:58][86][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[3],thread_id[-1345403328] +[29 19:23:58][86][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 19:23:58][86][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 19:23:58][86][INFO]thr_udp_wasconn pthread_create created. +[29 19:23:58][86][INFO][add_thread_handle] idx[2],handle[0xae8ea640] +[29 19:23:58][86][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 19:23:58][86][INFO]thr_udp_wasconn pthread_create created. +[29 19:23:58][86][INFO][add_thread_handle] idx[3],handle[0xadee9640] +[29 19:23:58][86][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 19:23:58][86][INFO][add_thread_handle] idx[4],handle[0xacae7640] +[29 19:23:58][86][INFO][add_thread_handle] idx[5],handle[0xad4e8640] +[29 19:23:58][86][INFO][CollectStart] log thread id (start_collect2_thread) : -1744832960 created +[29 19:23:58][86][INFO][add_thread_handle] idx[6],handle[0x97fff640] +[29 19:23:58][86][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 19:23:58][86][INFO][add_thread_handle] idx[7],handle[0x86774640] +[29 19:23:58][86][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 19:23:58][86][INFO][add_thread_handle] idx[8],handle[0x85f73640] +[29 19:23:58][86][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 19:23:58][86][INFO][add_thread_handle] idx[9],handle[0x85772640] +[29 19:24:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:27, skip_count: 0 bind_count:0 +[29 19:24:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:24:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:24:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:24:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:24:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:24:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:24:00][86][INFO][info_log] [0] udp recv(52.00b) 2 0 | 2 0 | 0 0 | 0 +[29 19:24:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:24:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:24:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:24:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:24:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:25:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:25:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:25:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:25:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:25:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:25:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:25:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:25:00][86][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[29 19:25:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:25:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:25:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:25:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:25:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:26:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:26:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:26:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:26:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:26:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:26:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:26:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:26:00][86][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:26:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:26:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:26:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:26:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:26:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:27:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:27:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:27:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:27:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:27:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:27:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:27:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:27:00][86][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:27:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:27:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:27:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:27:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:27:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:28:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:28:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:28:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:28:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:28:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:28:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:28:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:28:00][86][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:28:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:28:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:28:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:28:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:28:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:29:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:29:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:29:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:29:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:29:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:29:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:29:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:29:00][86][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:29:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:29:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:29:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:29:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:29:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:30:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:30:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:30:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:30:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:30:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:30:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:30:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:30:00][86][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[29 19:30:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:30:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:30:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:30:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:30:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:31:00][86][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[29 19:31:00][86][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:31:00][86][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:31:00][86][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:31:00][86][INFO][info_log] udp recv list by wasid [5014/] +[29 19:31:00][86][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:31:00][86][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:31:00][86][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[29 19:31:00][86][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:31:00][86][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:31:00][86][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:31:00][86][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:31:00][86][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[29 19:34:22][86][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[29 19:34:22][86][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[29 19:34:22][86][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[29 19:34:22][86][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 19:34:22][86][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[29 19:34:22][86][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 19:34:22][86][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 19:34:22][86][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 19:34:22][86][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[29 19:34:22][86][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 19:34:22][86][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:34:22][86][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:34:22][86][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 19:34:22][86][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 19:34:22][86][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 19:34:22][86][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 19:34:22][86][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 19:34:22][86][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 19:34:22][86][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 19:34:22][86][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 19:34:22][86][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 19:34:22][86][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 19:34:22][86][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 19:34:22][86][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[29 19:34:22][86][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 19:34:22][86][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 19:34:22][86][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 19:34:22][86][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 19:34:22][86][INFO][MAIN] hostname[624e0a67abf0] +[29 19:34:22][86][ERRO][MFJ-OSM-00020080] Already exists. pid:86, ProcessName:imxtxn +[29 19:34:22][86][INFO][MAIN] Duplicate execution. +[29 19:34:25][93][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[29 19:34:25][93][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[29 19:34:25][93][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[29 19:34:25][93][INFO]XM_LOG_OPT: 0 [opt_num:0] +[29 19:34:25][93][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[29 19:34:25][93][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[29 19:34:25][93][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[29 19:34:25][93][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[29 19:34:25][93][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[29 19:34:25][93][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[29 19:34:25][93][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:34:25][93][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[29 19:34:25][93][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[29 19:34:25][93][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[29 19:34:25][93][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[29 19:34:25][93][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[29 19:34:25][93][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[29 19:34:25][93][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[29 19:34:25][93][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[29 19:34:25][93][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[29 19:34:25][93][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[29 19:34:25][93][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[29 19:34:25][93][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[29 19:34:25][93][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[29 19:34:25][93][INFO][read_properties] imx.prop AGENT_MODE:2 +[29 19:34:25][93][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[29 19:34:25][93][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[29 19:34:25][93][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[29 19:34:25][93][INFO][MAIN] hostname[624e0a67abf0] +[29 19:34:25][93][ERRO][process_check] get_process_cmd_by_pid() has failed.(-1) +[29 19:34:25][93][INFO][check_double_execution] write pid. 93 +[29 19:34:25][93][INFO][create_new_dg_connection] 10.10.52.5:1314 (0a0a34050522) +[29 19:34:25][93][INFO][create_new_dg_connection] thread create: 1702794816 +[29 19:34:25][93][INFO][add_thread_handle] idx[0],handle[0x657e9640] +[29 19:34:25][93][INFO][add_thread_handle] idx[1],handle[0x5cde8640] +[29 19:34:25][93][INFO][create_new_dg_connection] thread create: 1558087232 +[29 19:34:25][93][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[4],thread_id[1702794816] +[29 19:34:25][93][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[29 19:34:25][93][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[29 19:34:25][93][INFO]thr_udp_wasconn pthread_create created. +[29 19:34:25][93][INFO][add_thread_handle] idx[2],handle[0x64de8640] +[29 19:34:25][93][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[29 19:34:25][93][INFO]thr_udp_wasconn pthread_create created. +[29 19:34:25][93][INFO][add_thread_handle] idx[3],handle[0x5ffff640] +[29 19:34:25][93][INFO][add_thread_handle] idx[4],handle[0x5f5fe640] +[29 19:34:25][93][INFO][CollectStart] log thread id (start_collect2_thread) : 1579140672 created +[29 19:34:25][93][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[29 19:34:25][93][INFO][add_thread_handle] idx[5],handle[0x5e1fc640] +[29 19:34:25][93][INFO][add_thread_handle] idx[6],handle[0x5ebfd640] +[29 19:34:25][93][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[29 19:34:25][93][INFO][add_thread_handle] idx[7],handle[0x3bfff640] +[29 19:34:25][93][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[29 19:34:25][93][INFO][add_thread_handle] idx[8],handle[0x3b7fe640] +[29 19:34:25][93][INFO][collect_initialize] thread_udpsender pthread_create created. +[29 19:34:25][93][INFO][add_thread_handle] idx[9],handle[0x3affd640] +[29 19:35:00][93][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:864, skip_count: 0 bind_count:0 +[29 19:35:00][93][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[29 19:35:00][93][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[29 19:35:00][93][INFO][info_log] udp recv count by ports 0:0 1:0 +[29 19:35:00][93][INFO][info_log] udp recv list by wasid [5015/] +[29 19:35:00][93][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:35:00][93][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[29 19:35:00][93][INFO][info_log] [0] udp recv(286.00b) 11 0 | 11 0 | 0 0 | 0 +[29 19:35:00][93][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[29 19:35:00][93][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[29 19:35:00][93][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[29 19:35:00][93][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[29 19:35:00][93][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:15:13][78][INFO]Start imxtxn. version Build 23-12-21 16:14:15 Version 5.3.0 . [DEBUG] +[31 10:15:13][78][INFO][read_properties] jspd.prop WR_ADDR=10.10.52.5:1314 +[31 10:15:13][78][INFO][setDGAddrFromStr] ip[10.10.52.5],port[1314] +[31 10:15:13][78][INFO]XM_LOG_OPT: 0 [opt_num:0] +[31 10:15:13][78][INFO][read_properties] jspd.prop WR_ADDR:10.10.52.5:1314 +[31 10:15:13][78][INFO][read_properties] jspd.prop USE_TCP_SEND_HEADER:true +[31 10:15:13][78][INFO][read_properties] imx.prop SQL_DETAIL_ELAPSE_LIMIT:0 +[31 10:15:13][78][INFO][read_properties] imx.prop ENABLE_TXN_STANDALONE:0 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_SQL_TEXT_HASH_COUNT:5000 +[31 10:15:13][78][INFO][read_properties] imx.prop IMX_DATAGATHER_PACKET_VERSION:20230601 +[31 10:15:13][78][INFO][read_properties] imx.prop TOPOLOGY_ADDR_LIST_LIMIT:10 +[31 10:15:13][78][INFO][read_properties] imx.prop USE_KEYS_FOR_REMOTE_TOPOLOGY_ADDR:0 +[31 10:15:13][78][INFO][read_properties] imx.prop USE_OPEN_ADDR_FOR_REMOTE_TOPOLOGY_ADDR:0 +[31 10:15:13][78][INFO][read_properties] imx.prop SEND_UDP_TO_DBM:0 +[31 10:15:13][78][INFO][read_properties] imx.prop SEND_SQLDETAIL_ON_JSPEND:0 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_UDP_QUEUE:20000 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_TCP_QUEUE:1000 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_UDP_QUEUE_MEMSIZE:1024 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_SEND_BIND_LIST_COUNT:0 +[31 10:15:13][78][INFO][read_properties] imx.prop WORKING_THREAD_COUNT:1 +[31 10:15:13][78][INFO][read_properties] imx.prop INPUT_SPACE_SQL_BIND:1 +[31 10:15:13][78][INFO][read_properties] imx.prop SQL_LEFT_TRIM:0 +[31 10:15:13][78][INFO][read_properties] imx.prop SERVER_CHARACTERSET_USE:0 +[31 10:15:13][78][INFO][read_properties] imx.prop SQL_TEXT_CONVERT_UTF8_EUCKR:0 +[31 10:15:13][78][INFO][read_properties] imx.prop LAZY_TXN_DELETE_INTERVAL:1 +[31 10:15:13][78][INFO][read_properties] imx.prop LIMIT_RESUME_COUNT:200 +[31 10:15:13][78][INFO][read_properties] imx.prop USE_TOPOLOGY_CLEAR:0 +[31 10:15:13][78][INFO][read_properties] imx.prop INTERVAL_INFO_LOG:60 +[31 10:15:13][78][INFO][read_properties] imx.prop SEND_GC_TXN_DETAIL:0 +[31 10:15:13][78][INFO][read_properties] imx.prop AGENT_MODE:2 +[31 10:15:13][78][INFO][read_properties] imx.prop SEND_TP_REMOTECALL_DATA:1 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_REMOTE:200 +[31 10:15:13][78][INFO][read_properties] imx.prop MAX_PKTCOUNT_TP_TXNDETAIL:200 +[31 10:15:13][78][INFO][read_properties] imx.prop SQL_TEXT_HASHING_OPT:0 +[31 10:15:13][78][INFO][MAIN] hostname[8fc7f3d17a8e] +[31 10:15:13][78][ERRO][process_check] get_process_cmd_by_pid() has failed.(-1) +[31 10:15:13][78][INFO][check_double_execution] write pid. 78 +[31 10:15:13][78][INFO][create_new_dg_connection] 10.10.52.5:1314 (0a0a34050522) +[31 10:15:13][78][INFO][create_new_dg_connection] thread create: 1609221696 +[31 10:15:13][78][INFO][add_thread_handle] idx[0],handle[0x5feac640] +[31 10:15:13][78][INFO][add_thread_handle] idx[1],handle[0x5f4ab640] +[31 10:15:13][78][INFO][create_new_dg_connection] thread create: 1598731840 +[31 10:15:13][78][INFO][thread_tcpconn] client connected. ip[10.10.52.5],sock[3],thread_id[1609221696] +[31 10:15:13][78][INFO][thread_tcpconn] send request imx_app_type. waiting...(conf ver:20230601) +[31 10:15:13][78][INFO][thread_tcpconn] response identity_imx. continue...[ver:20230601] +[31 10:15:13][78][INFO]thr_udp_wasconn pthread_create created. +[31 10:15:13][78][INFO][add_thread_handle] idx[2],handle[0x5eaaa640] +[31 10:15:13][78][INFO]thr_udp_wasconn pthread_create created. +[31 10:15:13][78][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:0) created. +[31 10:15:13][78][INFO][add_thread_handle] idx[3],handle[0x5d6a8640] +[31 10:15:13][78][INFO][add_thread_handle] idx[4],handle[0x5e0a9640] +[31 10:15:13][78][INFO][CollectStart] log thread id (start_collect2_thread) : 1556772416 created +[31 10:15:13][78][INFO][add_thread_handle] idx[5],handle[0x5cca7640] +[31 10:15:13][78][INFO][thr_udp_wasconn] thr_proc_udp_msg_queue (thridx:1) created. +[31 10:15:13][78][INFO][add_thread_handle] idx[6],handle[0x47fff640] +[31 10:15:13][78][INFO][collect_initialize] lazy_txn_delete_thread pthread_create created. +[31 10:15:13][78][INFO][add_thread_handle] idx[7],handle[0x3695c640] +[31 10:15:13][78][INFO][collect_initialize] lazy_txn_sql_delete_thread pthread_create created. +[31 10:15:13][78][INFO][add_thread_handle] idx[8],handle[0x3615b640] +[31 10:15:13][78][INFO][collect_initialize] thread_udpsender pthread_create created. +[31 10:15:13][78][INFO][add_thread_handle] idx[9],handle[0x3595a640] +[31 10:16:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1215, skip_count: 0 bind_count:0 +[31 10:16:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:16:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:16:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:16:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:16:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 10:16:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:16:00][78][INFO][info_log] [0] udp recv(442.00b) 17 0 | 16 0 | 0 0 | 0 +[31 10:16:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:16:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:16:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:16:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:16:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:17:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:17:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:17:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:17:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:17:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:17:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:17:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:17:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[31 10:17:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:17:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:17:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:17:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:17:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:18:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:4441, skip_count: 0 bind_count:0 +[31 10:18:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:18:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:18:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:18:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:18:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:18:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:18:00][78][INFO][info_log] [0] udp recv(2.39k) 55 0 | 55 0 | 0 0 | 0 +[31 10:18:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:18:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:18:00][78][INFO][info_log] [1] udp recv(2.54k) 19 0 | 19 0 | 0 0 | 0 +[31 10:18:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:18:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:18:00][78][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[31 10:18:00][78][INFO][info_log] wasid:5024, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[31 10:18:00][78][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(2), lazy[35/35] +[31 10:18:00][78][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(35), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[31 10:19:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:19:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:19:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:19:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:19:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:19:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:19:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:19:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:19:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:19:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:19:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:19:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:19:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:20:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:20:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:20:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:20:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:20:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:20:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:20:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:20:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:20:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:20:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:20:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:20:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:20:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:21:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:21:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:21:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:21:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:21:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:21:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:21:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:21:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:21:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:21:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:21:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:21:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:21:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:22:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:22:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:22:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:22:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:22:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:22:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:22:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:22:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:22:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:22:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:22:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:22:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:22:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:23:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:2201, skip_count: 0 bind_count:0 +[31 10:23:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:23:00][78][INFO][info_log] nmx:0 nlx:c704002 slt:(0) cqx:(41)(1)(1) +[31 10:23:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:23:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:23:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:23:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:23:00][78][INFO][info_log] [0] udp recv(736.00b) 24 0 | 24 0 | 0 0 | 0 +[31 10:23:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:23:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:23:00][78][INFO][info_log] [1] udp recv(548.00b) 4 0 | 4 0 | 0 0 | 0 +[31 10:23:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:23:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:23:00][78][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[31 10:23:00][78][INFO][info_log] wasid:5024, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[31 10:23:00][78][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(0), lazy[4/3] +[31 10:23:00][78][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(4), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[31 10:24:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:24:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:24:00][78][INFO][info_log] nmx:0 nlx:120b000 slt:(0) cqx:(41)(1)(1) +[31 10:24:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:24:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:24:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:24:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:24:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:24:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:24:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:24:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:24:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:24:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:25:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:25:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:25:00][78][INFO][info_log] nmx:0 nlx:120b000 slt:(0) cqx:(41)(1)(1) +[31 10:25:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:25:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:25:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:25:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:25:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:25:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:25:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:25:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:25:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:25:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:26:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:26:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:26:00][78][INFO][info_log] nmx:0 nlx:120b000 slt:(0) cqx:(41)(1)(1) +[31 10:26:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:26:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:26:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:26:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:26:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:26:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:26:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:26:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:26:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:26:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:27:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:27:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:27:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:27:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:27:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:27:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:27:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:27:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:27:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:27:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:27:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:27:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:27:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:28:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:28:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:28:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:28:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:28:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:28:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:28:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:28:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:28:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:28:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:28:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:28:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:28:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:29:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:29:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:29:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:29:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:29:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:29:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:29:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:29:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 10:29:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:29:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:29:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:29:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:29:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:30:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:30:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:30:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:30:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:30:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:30:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:30:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:30:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 10:30:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:30:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:30:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:30:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:30:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:31:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:31:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:31:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:31:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:31:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:31:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:31:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:31:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:31:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:31:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:31:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:31:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:31:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:32:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:32:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:32:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:32:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:32:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:32:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 10:32:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:32:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[31 10:32:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:32:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:32:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:32:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:32:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:33:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:33:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:33:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:33:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:33:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:33:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 10:33:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:33:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:33:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:33:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:33:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:33:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:33:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:34:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:34:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:34:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:34:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:34:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:34:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:34:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:34:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 21 0 | 0 0 | 0 +[31 10:34:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:34:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:34:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:34:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:34:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:35:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:35:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:35:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:35:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:35:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:35:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:35:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:35:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 10:35:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:35:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:35:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:35:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:35:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:36:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:36:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:36:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:36:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:36:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:36:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:36:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:36:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:36:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:36:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:36:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:36:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:36:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:37:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:37:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:37:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:37:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:37:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:37:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:37:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:37:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:37:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:37:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:37:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:37:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:37:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:38:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:38:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:38:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:38:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:38:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:38:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:38:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:38:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:38:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:38:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:38:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:38:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:38:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:39:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:39:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:39:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:39:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:39:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:39:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:39:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:39:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:39:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:39:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:39:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:39:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:39:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:40:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:2265, skip_count: 0 bind_count:0 +[31 10:40:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:40:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:40:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:40:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:40:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:40:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:40:00][78][INFO][info_log] [0] udp recv(998.00b) 29 0 | 29 0 | 0 0 | 0 +[31 10:40:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:40:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:40:00][78][INFO][info_log] [1] udp recv(548.00b) 4 0 | 4 0 | 0 0 | 0 +[31 10:40:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:40:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:40:00][78][INFO][info_log] udp recv make begin, prepare: 0 execute: 0 execend: 0 (0|0) active: 0 (0|0) +[31 10:40:00][78][INFO][info_log] wasid:5024, jsp:0, jsp_sql:0, tp_sql:0, sql_caching:0 tp_sql_caching:0 crs:0, sqltxt:0, laz:0, lazsql:0 crs:(0|0) topology:1 +[31 10:40:00][78][INFO][info_log] sql_caching count:(rm/fail/hit: 0/0/0 ), no_begin(tp):(0) no_execute_begin:(tid/cursor_id: 0/0), no_tid_active:(1), lazy[8/9] +[31 10:40:00][78][INFO][info_log] sid_prepare/txn_begin(TP):(0), sql_exec:(0), sql_exec_end:(0), jsp_end:(0), sql_exec_begin_all:(0), sql_exec_end_all:(0), jsp_end_all:(8), active_osm:(0/0), 1min:[0], total:[0], lazy[0/0] + +[31 10:41:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:41:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:41:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:41:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:41:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:41:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:41:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:41:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 10:41:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:41:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:41:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:41:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:41:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:42:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:42:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:42:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:42:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:42:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:42:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:42:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:42:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:42:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:42:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:42:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:42:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:42:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:43:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:43:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:43:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:43:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:43:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:43:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:43:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:43:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:43:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:43:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:43:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:43:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:43:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:44:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:44:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:44:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:44:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:44:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:44:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:44:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:44:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:44:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:44:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:44:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:44:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:44:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:45:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:45:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:45:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:45:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:45:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:45:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:45:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:45:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:45:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:45:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:45:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:45:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:45:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:46:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:46:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:46:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:46:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:46:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:46:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:46:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:46:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 10:46:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:46:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:46:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:46:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:46:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:47:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:47:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:47:00][78][INFO][info_log] nmx:0 nlx:c702000 slt:(0) cqx:(41)(1)(1) +[31 10:47:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:47:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:47:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 10:47:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:47:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 19 0 | 0 0 | 0 +[31 10:47:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:47:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:47:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:47:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:47:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:48:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:48:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:48:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:48:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:48:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:48:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:48:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:48:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[31 10:48:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:48:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:48:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:48:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:48:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:49:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:49:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:49:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:49:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:49:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:49:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:49:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:49:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 10:49:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:49:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:49:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:49:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:49:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:50:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:50:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:50:00][78][INFO][info_log] nmx:0 nlx:30b000 slt:(0) cqx:(41)(1)(1) +[31 10:50:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:50:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:50:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:50:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:50:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 10:50:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:50:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:50:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:50:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:50:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:51:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:51:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:51:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:51:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:51:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:51:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:51:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:51:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:51:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:51:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:51:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:51:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:51:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:52:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:52:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:52:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:52:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:52:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:52:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:52:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:52:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:52:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:52:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:52:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:52:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:52:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:53:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:53:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:53:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:53:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:53:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:53:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:53:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:53:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:53:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:53:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:53:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:53:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:53:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:54:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:54:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:54:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:54:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:54:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:54:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:54:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:54:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:54:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:54:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:54:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:54:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:54:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:55:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:55:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:55:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:55:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:55:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:55:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:55:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:55:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:55:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:55:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:55:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:55:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:55:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:56:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:56:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:56:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:56:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:56:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:56:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:56:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:56:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:56:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:56:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:56:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:56:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:56:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:57:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:57:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:57:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:57:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:57:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:57:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:57:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:57:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:57:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:57:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:57:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:57:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:57:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:58:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:58:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:58:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:58:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:58:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:58:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:58:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:58:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:58:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:58:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:58:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:58:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:58:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 10:59:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 10:59:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 10:59:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 10:59:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 10:59:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 10:59:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:59:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 10:59:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 10:59:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 10:59:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 10:59:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 10:59:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 10:59:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:00:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:00:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:00:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:00:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:00:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:00:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:00:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:00:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:00:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:00:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:00:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:00:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:00:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:01:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:01:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:01:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:01:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:01:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:01:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 11:01:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:01:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[31 11:01:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:01:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:01:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:01:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:01:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:02:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:02:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:02:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:02:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:02:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:02:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:02:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:02:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[31 11:02:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:02:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:02:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:02:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:02:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:03:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:03:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:03:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:03:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:03:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:03:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:03:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:03:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:03:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:03:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:03:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:03:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:03:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:04:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:04:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:04:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:04:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:04:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:04:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:04:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:04:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 11:04:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:04:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:04:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:04:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:04:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:05:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:05:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:05:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:05:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:05:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:05:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:05:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:05:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 11:05:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:05:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:05:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:05:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:05:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:06:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:06:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:06:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:06:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:06:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:06:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:06:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:06:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:06:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:06:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:06:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:06:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:06:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:07:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:07:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:07:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:07:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:07:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:07:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:07:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:07:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:07:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:07:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:07:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:07:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:07:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:08:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:08:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:08:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:08:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:08:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:08:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:08:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:08:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:08:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:08:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:08:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:08:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:08:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:09:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:09:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:09:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:09:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:09:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:09:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:09:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:09:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:09:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:09:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:09:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:09:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:09:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:10:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:10:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:10:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:10:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:10:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:10:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:10:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:10:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:10:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:10:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:10:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:10:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:10:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:11:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:11:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:11:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:11:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:11:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:11:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:11:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:11:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 11:11:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:11:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:11:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:11:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:11:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:12:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:12:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:12:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:12:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:12:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:12:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:12:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:12:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 11:12:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:12:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:12:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:12:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:12:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:13:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:13:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:13:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:13:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:13:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:13:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:13:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:13:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 21 0 | 0 0 | 0 +[31 11:13:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:13:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:13:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:13:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:13:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:14:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:14:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:14:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:14:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:14:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:14:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:14:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:14:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:14:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:14:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:14:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:14:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:14:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:15:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:15:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:15:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:15:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:15:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:15:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:15:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:15:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 19 0 | 0 0 | 0 +[31 11:15:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:15:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:15:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:15:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:15:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:16:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:16:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:16:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:16:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:16:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:16:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:16:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:16:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:16:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:16:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:16:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:16:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:16:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:17:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:17:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:17:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:17:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:17:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:17:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:1(66.00b) , skip_q:0 , drop_q:0 +[31 11:17:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:17:00][78][INFO][info_log] [0] udp recv(546.00b) 21 0 | 20 0 | 0 0 | 0 +[31 11:17:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:17:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:17:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:17:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:17:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:18:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:18:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:18:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:18:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:18:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:18:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:18:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:18:00][78][INFO][info_log] [0] udp recv(494.00b) 19 0 | 20 0 | 0 0 | 0 +[31 11:18:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:18:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:18:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:18:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:18:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:19:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:19:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:19:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:19:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:19:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:19:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:19:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:19:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:19:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:19:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:19:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:19:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:19:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:20:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:20:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:20:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:20:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:20:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:20:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:20:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:20:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:20:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:20:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:20:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:20:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:20:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 +[31 11:21:00][78][INFO][info_log] tcp send queue count: 1 (10.10.52.5:1314), send size:1620, skip_count: 0 bind_count:0 +[31 11:21:00][78][INFO][info_log] tp task count: remote:0(0),detail:0(0),sql_detail:0(0),method:0(0),exception:0(0) +[31 11:21:00][78][INFO][info_log] nmx:0 nlx:0 slt:(0) cqx:(41)(1)(1) +[31 11:21:00][78][INFO][info_log] udp recv count by ports 0:0 1:0 +[31 11:21:00][78][INFO][info_log] udp recv list by wasid [5024/] +[31 11:21:00][78][INFO][info_log] [0] udp(2404) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:21:00][78][INFO][info_log] [0] udp recv packet count: jsp end:0/0 +[31 11:21:00][78][INFO][info_log] [0] udp recv(520.00b) 20 0 | 20 0 | 0 0 | 0 +[31 11:21:00][78][INFO][info_log] [1] udp(2504) recv queue count: 0 (0), q:0(0.00b) , skip_q:0 , drop_q:0 +[31 11:21:00][78][INFO][info_log] [1] udp recv packet count: jsp end:0/0 +[31 11:21:00][78][INFO][info_log] [1] udp recv(0.00b) 0 0 | 0 0 | 0 0 | 0 +[31 11:21:00][78][INFO][info_log] udp send queue count: 0 (0) , skip_count: 0 +[31 11:21:00][78][INFO][info_log] udp send stat, 0 0 0 0 | 0 0 0 0 | 0 diff --git a/intermax/23.12.07.02/jspd/log/jspd[0]-20240125.log b/intermax/23.12.07.02/jspd/log/jspd[0]-20240125.log new file mode 100644 index 0000000..6e3bb7d --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/jspd[0]-20240125.log @@ -0,0 +1,194 @@ +[2024/01/25 16:24:00] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 16:24:00] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:24:00] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 16:24:00] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/25 16:24:00] [INFO ] [main] 23.12.07.02 +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 16:24:00] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 16:24:00] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/25 16:24:00] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/25 16:24:00] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/25 16:24:00] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/25 16:24:00] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/25 16:24:00] [INFO ] INIT THREAD NAME=main +[2024/01/25 16:24:00] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 16:24:00] [INFO ] [main] reset rum white list time=>1706165999900, interval=>3600000 +[2024/01/25 16:24:00] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 16:24:00] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 16:24:00] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 16:24:00] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 16:24:00] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 16:24:01] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/25 16:24:01] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => ac1b321264bb +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706165610056] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => ac1b321264bb +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706165610056] +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=A44299C267A1384371A28BDC16DEF2D2B9CA9E9D, licenseData =>30, localLicense =>-9, hostName=ac1b321264bb +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/25 16:24:02] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/25 16:24:07] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/25 16:28:41] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 16:28:41] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:28:41] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 16:28:41] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/25 16:28:41] [INFO ] [main] 23.12.07.02 +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 16:28:41] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 16:28:41] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/25 16:28:41] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/25 16:28:41] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/25 16:28:42] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/25 16:28:42] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/25 16:28:42] [INFO ] INIT THREAD NAME=main +[2024/01/25 16:28:42] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 16:28:42] [INFO ] [main] reset rum white list time=>1706165999900, interval=>3600000 +[2024/01/25 16:28:42] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 16:28:42] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 16:28:42] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 16:28:42] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 16:28:42] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => ac1b321264bb +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => ac1b321264bb +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id hostname=ac1b321264bb +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=ac1b321264bb-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=1472095469 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.g] received wasid : 0 +[2024/01/25 16:28:47] [INFO ] [com.exem.jspd.agent.g] [MFJ-JSPD-00000000] invalid wasid =>0 +[2024/01/25 16:57:29] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/25 16:57:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:57:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/25 16:57:29] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/25 16:57:29] [INFO ] [main] 23.12.07.02 +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/25 16:57:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/25 16:57:29] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/25 16:57:29] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/25 16:57:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/25 16:57:29] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/25 16:57:29] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/25 16:57:29] [INFO ] INIT THREAD NAME=main +[2024/01/25 16:57:29] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/25 16:57:29] [INFO ] [main] reset rum white list time=>1706165999900, interval=>3600000 +[2024/01/25 16:57:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/25 16:57:29] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/25 16:57:29] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/25 16:57:29] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/25 16:57:29] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 272e0a869809 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 272e0a869809 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id hostname=272e0a869809 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=272e0a869809-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1413226357 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.g] received wasid : 0 +[2024/01/25 16:57:34] [INFO ] [com.exem.jspd.agent.g] [MFJ-JSPD-00000000] invalid wasid =>0 diff --git a/intermax/23.12.07.02/jspd/log/jspd[0]-20240126.log b/intermax/23.12.07.02/jspd/log/jspd[0]-20240126.log new file mode 100644 index 0000000..84a0737 --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/jspd[0]-20240126.log @@ -0,0 +1,501 @@ +[2024/01/26 10:31:25] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/26 10:31:25] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/26 10:31:25] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/26 10:31:25] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/26 10:31:25] [INFO ] [main] 23.12.07.02 +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/26 10:31:25] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/26 10:31:25] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/26 10:31:25] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/26 10:31:25] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/26 10:31:25] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/26 10:31:25] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/26 10:31:25] [INFO ] INIT THREAD NAME=main +[2024/01/26 10:31:25] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/26 10:31:25] [INFO ] [main] reset rum white list time=>1706230799900, interval=>3600000 +[2024/01/26 10:31:25] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/26 10:31:25] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/26 10:31:25] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/26 10:31:25] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/26 10:31:25] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => cae52bf8122a +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => cae52bf8122a +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id hostname=cae52bf8122a +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=cae52bf8122a-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-352358500 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.g] received wasid : 5002 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5002 +[2024/01/26 10:31:30] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/26 10:31:31] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => cae52bf8122a +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706167716078] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => cae52bf8122a +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706167716078] +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=C677C68F01D088FDF22C44DE3696ED015E4C1D53, licenseData =>30, localLicense =>-9, hostName=cae52bf8122a +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/26 10:31:32] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/26 10:31:38] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/26 10:48:32] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/26 10:48:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/26 10:48:32] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/26 10:48:32] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/26 10:48:32] [INFO ] [main] 23.12.07.02 +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/26 10:48:32] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/26 10:48:32] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/26 10:48:32] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/26 10:48:32] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/26 10:48:32] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/26 10:48:32] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/26 10:48:32] [INFO ] INIT THREAD NAME=main +[2024/01/26 10:48:32] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/26 10:48:32] [INFO ] [main] reset rum white list time=>1706230799900, interval=>3600000 +[2024/01/26 10:48:32] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/26 10:48:32] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/26 10:48:32] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/26 10:48:32] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/26 10:48:32] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.g] received wasid : 5004 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5004 +[2024/01/26 10:48:37] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/26 10:48:38] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706232813086] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706232813086] +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/26 10:48:39] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/26 10:48:45] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] process run result=0 +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] daemonize on +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [STDOUT] env DG_ADDR(256)[] +[2024/01/26 10:48:50] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Starting IMXAgent[1706232813086] +[2024/01/26 11:37:36] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.am] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.f.am.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/26 11:37:36] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/26 11:37:36] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/26 11:37:36] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/26 11:37:36] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/28 09:33:28] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/28 09:33:29] [INFO ] [com.exem.jspd.agent.g] received wasid : 5005 +[2024/01/28 09:33:29] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5005 +[2024/01/28 09:33:29] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/28 09:33:29] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/28 09:33:30] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 09:33:30] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 09:33:30] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/28 09:33:30] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/28 09:33:30] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/28 09:33:32] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/28 17:32:54] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.am] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.f.am.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/28 17:32:54] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/28 17:32:54] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/28 17:32:54] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/28 17:32:54] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.g] received wasid : 5006 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5006 +[2024/01/28 17:32:59] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/28 17:33:00] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/28 17:33:01] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 17:33:01] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/28 17:33:01] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/28 17:33:01] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/28 17:33:01] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/28 17:33:03] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 01:34:03] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/29 01:34:03] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/29 01:34:03] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/29 01:34:03] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/29 01:34:03] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.g] received wasid : 5007 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5007 +[2024/01/29 01:34:08] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 01:34:09] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 01:34:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 01:34:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 01:34:10] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/29 01:34:10] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 01:34:10] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 01:34:12] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 09:35:02] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/29 09:35:02] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/29 09:35:02] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/29 09:35:02] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/29 09:35:02] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.g] received wasid : 5008 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5008 +[2024/01/29 09:35:07] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 09:35:08] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 09:35:09] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 09:35:09] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 09:35:09] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/29 09:35:09] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 09:35:09] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 09:35:11] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 17:21:37] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/29 17:21:37] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/29 17:21:37] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/29 17:21:37] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/29 17:21:37] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.g] received wasid : 5011 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5011 +[2024/01/29 17:21:42] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 17:21:43] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 17:21:44] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 17:21:44] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 17:21:44] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/29 17:21:44] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 17:21:44] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 17:21:46] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 18:35:50] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/29 18:35:50] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/29 18:35:50] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/29 18:35:50] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/29 18:35:50] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.g] received wasid : 5012 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5012 +[2024/01/29 18:35:55] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 18:35:56] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 18:35:57] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 18:35:57] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 18:35:57] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/29 18:35:57] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 18:35:57] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 18:35:59] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 19:03:56] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/29 19:03:56] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/29 19:03:56] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/29 19:03:56] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/29 19:03:56] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id hostname=3d694599cb55 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=3d694599cb55-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=837704240 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.g] received wasid : 5013 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5013 +[2024/01/29 19:04:01] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 19:04:02] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 19:04:03] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 19:04:03] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 3d694599cb55 +[2024/01/29 19:04:03] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=19F3C6ACBDCF9501C4C519AE1C1BFC26F0EDCCEF, licenseData =>30, localLicense =>-9, hostName=3d694599cb55 +[2024/01/29 19:04:03] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 19:04:03] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 19:04:05] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/23.12.07.02/jspd/log/jspd[0]-20240129.log b/intermax/23.12.07.02/jspd/log/jspd[0]-20240129.log new file mode 100644 index 0000000..fd61cbf --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/jspd[0]-20240129.log @@ -0,0 +1,188 @@ +[2024/01/29 19:23:46] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/29 19:23:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/29 19:23:46] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/29 19:23:46] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/29 19:23:46] [INFO ] [main] 23.12.07.02 +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/29 19:23:46] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/29 19:23:46] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/29 19:23:46] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/29 19:23:46] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/29 19:23:46] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/29 19:23:46] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/29 19:23:46] [INFO ] INIT THREAD NAME=main +[2024/01/29 19:23:46] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/29 19:23:46] [INFO ] [main] reset rum white list time=>1706522399900, interval=>3600000 +[2024/01/29 19:23:46] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/29 19:23:46] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/29 19:23:46] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/29 19:23:46] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/29 19:23:46] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => a36d39bf7ca3 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => a36d39bf7ca3 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id hostname=a36d39bf7ca3 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=a36d39bf7ca3-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-87480700 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.g] received wasid : 5014 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5014 +[2024/01/29 19:23:51] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 19:23:52] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => a36d39bf7ca3 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706523456097] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => a36d39bf7ca3 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706523456097] +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=D23770240CE798560DBC2E5BDEB1CD8DAF296E80, licenseData =>30, localLicense =>-9, hostName=a36d39bf7ca3 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 19:23:53] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 19:23:58] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/29 19:34:12] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/29 19:34:12] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/29 19:34:12] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/29 19:34:12] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/29 19:34:12] [INFO ] [main] 23.12.07.02 +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/29 19:34:12] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/29 19:34:12] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/29 19:34:12] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/29 19:34:12] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/29 19:34:12] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/29 19:34:12] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/29 19:34:12] [INFO ] INIT THREAD NAME=main +[2024/01/29 19:34:12] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/29 19:34:12] [INFO ] [main] reset rum white list time=>1706522399900, interval=>3600000 +[2024/01/29 19:34:12] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/29 19:34:12] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/29 19:34:12] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/29 19:34:12] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/29 19:34:12] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 624e0a67abf0 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 624e0a67abf0 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id hostname=624e0a67abf0 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=624e0a67abf0-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-2027737850 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.g] received wasid : 5015 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5015 +[2024/01/29 19:34:17] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/29 19:34:18] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 624e0a67abf0 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706524278099] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 624e0a67abf0 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706524278099] +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=CB18B6A173FB9BA1F9A94C465C2AD2F37CCB0494, licenseData =>30, localLicense =>-9, hostName=624e0a67abf0 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/29 19:34:19] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/29 19:34:24] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot diff --git a/intermax/23.12.07.02/jspd/log/jspd[0]-20240131.log b/intermax/23.12.07.02/jspd/log/jspd[0]-20240131.log new file mode 100644 index 0000000..e9cd400 --- /dev/null +++ b/intermax/23.12.07.02/jspd/log/jspd[0]-20240131.log @@ -0,0 +1,768 @@ +[2024/01/31 10:15:01] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/31 10:15:01] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 10:15:01] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/31 10:15:01] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/31 10:15:01] [INFO ] [main] 23.12.07.02 +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/31 10:15:01] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/31 10:15:01] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/31 10:15:01] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/31 10:15:01] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/31 10:15:01] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/31 10:15:01] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/31 10:15:01] [INFO ] INIT THREAD NAME=main +[2024/01/31 10:15:01] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/31 10:15:01] [INFO ] [main] reset rum white list time=>1706662799900, interval=>3600000 +[2024/01/31 10:15:01] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/31 10:15:01] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/31 10:15:01] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/31 10:15:01] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/31 10:15:01] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 10:15:06] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 10:15:07] [INFO ] [com.exem.jspd.agent.g] received wasid : 5024 +[2024/01/31 10:15:07] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5024 +[2024/01/31 10:15:07] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 10:15:07] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706524509088] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] run process (imxosm) [/usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh], [sh, /usr/local/intermax/23.12.07.02/jspd/lib/IMXAgent.sh, /usr/local/intermax/23.12.07.02/jspd, imxosm, 64] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] process run result=0 +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] daemonize on +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env INTERMAX_HOME(36)[/usr/local/intermax/23.12.07.02/jspd] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_PERM_FILE_OTHER_WR(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_GROUP(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMX_REMOVE_PERM_OTHER(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_JSPD(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_IMX(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_LOG(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_CONFIG_DIRECTORY(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env IMXOSM_COLLECT_FILESYSTEM(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [STDOUT] env DG_ADDR(256)[] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] Starting IMXAgent[1706524509088] +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=1496196B54265E6861B48C14D08CE49D733CFE4A, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 10:15:08] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 10:15:14] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 11:21:21] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/31 11:21:21] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:21:21] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/31 11:21:21] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/31 11:21:21] [INFO ] [main] 23.12.07.02 +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/31 11:21:21] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/31 11:21:21] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/31 11:21:21] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/31 11:21:21] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/31 11:21:21] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/31 11:21:21] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/31 11:21:21] [INFO ] INIT THREAD NAME=main +[2024/01/31 11:21:21] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/31 11:21:21] [INFO ] [main] reset rum white list time=>1706666399900, interval=>3600000 +[2024/01/31 11:21:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/31 11:21:21] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/31 11:21:21] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/31 11:21:21] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/31 11:21:21] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.g] received wasid : 5026 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5026 +[2024/01/31 11:21:26] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 11:21:27] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 11:21:28] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:21:28] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 11:21:28] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 11:21:28] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 11:21:34] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 11:35:29] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/31 11:35:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:35:29] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/31 11:35:29] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/31 11:35:29] [INFO ] [main] 23.12.07.02 +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/31 11:35:29] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/31 11:35:29] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/31 11:35:29] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/31 11:35:29] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/31 11:35:29] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/31 11:35:29] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/31 11:35:29] [INFO ] INIT THREAD NAME=main +[2024/01/31 11:35:29] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/31 11:35:29] [INFO ] [main] reset rum white list time=>1706666399900, interval=>3600000 +[2024/01/31 11:35:29] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/31 11:35:29] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/31 11:35:29] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/31 11:35:29] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/31 11:35:29] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.g] received wasid : 5028 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5028 +[2024/01/31 11:35:34] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 11:35:35] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 11:35:36] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:35:36] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 11:35:36] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 11:35:36] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 11:35:42] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 11:52:30] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.l] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.f.l.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 11:52:30] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 11:52:30] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 11:52:30] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 11:52:45] [INFO ] [com.exem.jspd.agent.g] received wasid : 5028 +[2024/01/31 11:52:46] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 11:52:47] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:52:47] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 11:52:47] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 11:52:47] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 11:52:49] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/01/31 11:55:59] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 11:55:59] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 11:55:59] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 11:55:59] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 11:56:10] [INFO ] [com.exem.jspd.agent.g] received wasid : 5028 +[2024/01/31 11:56:11] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 11:56:12] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:56:12] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 11:56:12] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 11:56:12] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 11:56:14] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/01/31 11:57:55] [INFO ] [main] Change the USE_JMX option to 'true'. +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_TXN] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_TXN_CALLBACK] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_HTTP] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TMAX] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_TUXEDO] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_SAP] +[2024/01/31 11:57:55] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:57:55] [INFO ] [main] class not found [XM_BOUND_EJB] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_BOUND_X] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.ext.XM_RT] +[2024/01/31 11:57:55] [INFO ] [main] JSPD EXT [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-ext.jar] +[2024/01/31 11:57:55] [INFO ] [main] 23.12.07.02 +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.weave.pool.XmPool] +[2024/01/31 11:57:55] [INFO ] [main] LOAD [com.exem.weave.pool.XmPoolImpl] +[2024/01/31 11:57:55] [INFO ] [main] JSPD POOL [/usr/local/intermax/23.12.07.02/jspd/lib/jspd-pool.jar] +[2024/01/31 11:57:55] [INFO ] [main] ImxJNI loaded[/usr/local/intermax/23.12.07.02/jspd/lib/jni/libImxJNI_linux_64.so] +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>com/ibm/db2/jcc/DB2XADataSource,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/conn +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>com/ibm/db2/jcc/cstmt,com/ibm/db2/jcc/pstmt,com/ibm/db2/jcc/stmt +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/resultset,false +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>com/ibm/db2/jcc/DB2Driver +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,com/ibm/db2/jcc/DB2ConnectionPoolDataSource +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>com/ibm/db2/jcc/am/Connection +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>null,com/ibm/db2/jcc/am/jo,com/ibm/db2/jcc/am/io +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>com/ibm/db2/jcc/am/ResultSet,false +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] driver =>org/postgresql/Driver +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] datasource =>null,org/postgresql/ds/PGConnectionPoolDataSource +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] connection =>org/postgresql/jdbc/PgConnection +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] statement =>org/postgresql/jdbc/PgCallableStatement,org/postgresql/jdbc/PgPreparedStatement,org/postgresql/jdbc/PgStatement +[2024/01/31 11:57:55] [INFO ] [main] [TrxPrev:adviceJDBC] resultset =>org/postgresql/jdbc/PgResultSet,true +[2024/01/31 11:57:55] [INFO ] JSPD Version 23.12.07.02 [8f1d8815] +[2024/01/31 11:57:55] [INFO ] TCP PROTOCOL VERSION --- 34 +[2024/01/31 11:57:55] [INFO ] INIT THREAD NAME=main +[2024/01/31 11:57:55] [INFO ] [main] JSPD Dynamic Weaver for JDK1.5 initialized. +[2024/01/31 11:57:55] [INFO ] [main] reset rum white list time=>1706666399900, interval=>3600000 +[2024/01/31 11:57:55] [INFO ] [com.exem.jspd.agent.XmTaskTimer] Task Timer Thread started. +[2024/01/31 11:57:55] [INFO ] [com.exem.jspd.agent.XmTcpTimer] TCP Timer Thread started. +[2024/01/31 11:57:55] [INFO ] [com.exem.jspd.agent.m] Redefine Worker Thread started. +[2024/01/31 11:57:55] [INFO ] [com.exem.jspd.agent.j] TCP Sender Thread started. +[2024/01/31 11:57:55] [INFO ] [com.exem.jspd.agent.g] TCP Receiver Thread started. +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.g] received wasid : 5030 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5030 +[2024/01/31 11:58:00] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 11:58:01] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 11:58:02] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 11:58:02] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 11:58:02] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 11:58:02] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 11:58:07] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 14:00:48] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 14:00:48] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 14:00:48] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 14:00:48] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 14:00:48] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.g] received wasid : 5035 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5035 +[2024/01/31 14:00:53] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 14:00:54] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 14:00:55] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 14:00:55] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 14:00:55] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 14:00:55] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 14:00:57] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 15:14:36] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.f.i] +java.net.SocketException: Broken pipe + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.f.i.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 15:14:36] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 15:14:36] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 15:14:36] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.XmTaskTimer] [XmImxSys:readPID] READ PID error! not file! +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5055 +[2024/01/31 15:16:21] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/01/31 15:16:22] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 15:16:23] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 15:16:23] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 15:16:23] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 15:16:23] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 15:16:25] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/01/31 17:08:41] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 17:08:41] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 17:08:41] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 17:08:41] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 17:08:41] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 17:08:46] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/01/31 17:08:47] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 17:08:48] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 17:08:48] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 17:08:48] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 17:08:48] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 17:08:50] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/01/31 19:57:04] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/01/31 19:57:04] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/01/31 19:57:04] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/01/31 19:57:04] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/01/31 19:57:04] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/01/31 19:57:09] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/01/31 19:57:10] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/01/31 19:57:11] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/01/31 19:57:11] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/01/31 19:57:11] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/01/31 19:57:11] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/01/31 19:57:13] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/02/01 11:59:44] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/01 11:59:44] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/01 11:59:44] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/01 11:59:44] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/01 11:59:44] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/01 11:59:49] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/02/01 11:59:50] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/02/01 11:59:51] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 11:59:51] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/02/01 11:59:51] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/02/01 11:59:51] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/02/01 11:59:53] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/02/01 13:15:20] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/01 13:15:20] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/01 13:15:20] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/01 13:15:20] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/01 13:15:20] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/01 13:15:25] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/02/01 13:15:26] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/02/01 13:15:27] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:15:27] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/02/01 13:15:27] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/02/01 13:15:27] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/02/01 13:15:29] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/02/01 13:53:20] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/01 13:53:20] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/01 13:53:20] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/01 13:53:20] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/01 13:53:20] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/01 13:53:25] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/02/01 13:53:26] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/02/01 13:53:27] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/01 13:53:27] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/02/01 13:53:27] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/02/01 13:53:27] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/02/01 13:53:29] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/02/02 12:03:21] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/02 12:03:21] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/02 12:03:21] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/02 12:03:21] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/02 12:03:21] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/02 12:03:26] [INFO ] [com.exem.jspd.agent.g] received wasid : 5055 +[2024/02/02 12:03:27] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/02/02 12:03:28] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/02 12:03:28] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/02/02 12:03:28] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/02/02 12:03:28] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/02/02 12:03:30] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=License +[2024/02/03 10:36:05] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/03 10:36:05] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/03 10:36:05] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/03 10:36:05] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/03 10:36:05] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.g] received wasid : 5093 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.g] not found file=/usr/local/intermax/23.12.07.02/jspd/cfg/agent/jspd.prop.5093 +[2024/02/03 10:36:10] [INFO ] [com.exem.jspd.agent.g] Change the USE_JMX option to 'true'. +[2024/02/03 10:36:11] [INFO ] [com.exem.jspd.agent.g] TCP PROTOCOL VERSION Negotiation =>34, gather=34 +[2024/02/03 10:36:12] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/03 10:36:12] [INFO ] [com.exem.jspd.agent.j] [XmTcpReqWasLicenseInfo:send] hostKey=E008CE1CD3DAE6BE53BBC9AA1BD6EAA70C12768B, licenseData =>30, localLicense =>-9, hostName=8fc7f3d17a8e +[2024/02/03 10:36:12] [INFO ] [com.exem.jspd.agent.g] [XmTcpResWasLicense:send] used=1, result=2 +[2024/02/03 10:36:12] [INFO ] [com.exem.jspd.agent.g] Intermax License +[2024/02/03 10:36:14] [INFO ] [com.exem.jspd.agent.j] [XmTcpWasBoot:send] alert=JVM Boot +[2024/02/03 18:36:07] [ERROR] [com.exem.jspd.agent.j] [MFJ-JSPD-00150000] Cannot send TCP[class com.exem.jspd.b.n] +java.net.SocketException: Connection reset by peer + at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:420) + at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440) + at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:826) + at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1035) + at java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81) + at java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142) + at com.exem.jspd.i.c(Unknown Source) + at com.exem.jspd.f.u.goto(Unknown Source) + at com.exem.jspd.b.an.a(Unknown Source) + at com.exem.jspd.b.n.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.f.p.a(Unknown Source) + at com.exem.jspd.agent.j.run(Unknown Source) + at java.base/java.lang.Thread.run(Thread.java:833) +[2024/02/03 18:36:07] [INFO ] [com.exem.jspd.agent.j] Disconnected from WR Server. +[2024/02/03 18:36:07] [INFO ] [com.exem.jspd.agent.j] Change the USE_JMX option to 'true'. +[2024/02/03 18:36:07] [INFO ] [com.exem.jspd.agent.j] Intermax License[0], unknown +[2024/02/03 18:36:07] [INFO ] [com.exem.jspd.agent.j] Connected to WR Server at /10.10.52.5:1314 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id (auto scale type) +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] [XmEnvHostNameProvider:getHostName] hostname by Environment => 8fc7f3d17a8e +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id agentService=ALL_SERVICE +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id agentGroup=core_business1_group +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id agentName=core_business1_tomcat +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id hostGroup=apck2 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id hostname=8fc7f3d17a8e +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueName=8fc7f3d17a8e-/usr/local/tomcat-/usr/local/tomcat-org.apache.catalina.startup.Bootstrap start,02-42-AC-11-00-02 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id uniqueNameHash=-1265469585 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id alertGroup= +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id tier=CORE +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.j] request was id key=core_business1 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.g] received wasid : 0 +[2024/02/03 18:36:12] [INFO ] [com.exem.jspd.agent.g] [MFJ-JSPD-00000000] invalid wasid =>0 diff --git a/intermax/23.12.07.02/jspd/tools/InterMax_license_info.txt b/intermax/23.12.07.02/jspd/tools/InterMax_license_info.txt new file mode 100755 index 0000000..604796e --- /dev/null +++ b/intermax/23.12.07.02/jspd/tools/InterMax_license_info.txt @@ -0,0 +1,113 @@ +-- HOSTID +# Windows (ETH MAC ADDRESS) +> ipconfig /all + +# Unix +> hostid + +# HP-UX +> echo `/bin/uname -i` 16op | dc +ex) FC522FFB +or +> getconf CS_PARTITION_IDENT +ex) 200bb998-xxxx-xxxx-xxxx-xxxxxxxxxxxx + + +-- CORE +# Windows +systeminfo | findstr Processors +wmic cpu get NumberOfCores +wmic cpu get NumberOfLogicalProcessors +echo %NUMBER_OF_PROCESSORS% + +# Linux +while true +do +PHYSICAL_CNT=`cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l` +CORE_CNT=`cat /proc/cpuinfo | grep "cpu cores" | tail -1 | cut -d: -f2` +CORE_ID=`cat /proc/cpuinfo | grep "core id" | sort -u | head -1 | cut -d: -f2` +THREAD_CNT=`egrep "^core|^physical" /proc/cpuinfo | awk '{if((NR%2)==0) print $0 "," ; else print $0 }' | awk 'BEGIN {RS=","} {print $1,$2,$3,$4,$5,$6,$7,$8}' | grep ^physical | sort | uniq -c | head -1 | awk '{print $1}'` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# SunOS +while true +do +PHYSICAL_CNT=`/usr/sbin/psrinfo -p` +CORE_TOT=`kstat -m cpu_info | grep -w core_id | sort -u | wc -l| awk '{print $1}'` +CORE_CNT=`expr $CORE_TOT / $PHYSICAL_CNT` +CORE_TOT2=`kstat -m cpu_info | grep -w core_id | wc -l ` +THREAD_CNT=`expr $CORE_TOT2 / $CORE_TOT ` +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +break +done + +# HP-UX +while true +do +PHYSICAL_CNT=`machinfo | grep -i sockets | awk '{print $1}'` +CORE_CNT=`machinfo | grep -i cores | grep -v "processors" | awk -F'(' '{print $2}' | awk '{print $1}'` +THREAD_INFO=`/usr/sbin/kctune | grep lcpu_attr ` +IS_THREAD_ON=`echo $THREAD_INFO | grep 1 | wc -l` +if [ $IS_THREAD_ON -eq 1 ];then +THREAD_CNT=2 +else +THREAD_CNT=1 +fi +LCPU=`expr $PHYSICAL_CNT \* $CORE_CNT \* $THREAD_CNT` +echo "Physical CPU Count : $PHYSICAL_CNT " +echo "Core Count per Physical CPU : $CORE_CNT " +echo "Thread Count per Core : $THREAD_CNT " +LCPURESULT="$PHYSICAL_CNT(cpu) * $CORE_CNT(cores) * $THREAD_CNT(thread) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$LCPURESULT"|sed 's/^ *//'` +echo "MAX CPU : " `machinfo | grep -i cores | grep -v "per socket)"` +break +done + +# IBM AIX +while true +do +PHYSICAL_CNT=`lscfg -vp |grep -ip proc |grep PROC|grep WAY | wc -l` +CORE_CNT=`lscfg -vp | grep proc | wc -l` +IMSI_PROC=`lscfg -vp | grep proc | head -1 | awk '{print $1}'` +IS_SMT=`lsattr -El $IMSI_PROC | grep smt_enabled| awk '{print $2}'` +SMT_CNT=`lsattr -El $IMSI_PROC | grep smt_threads| awk '{print $2}'` +if [ $IS_SMT = "true" ];then +THREAD_CNT=$SMT_CNT +else +THREAD_CNT=1 +fi +if [ "$PHYSICAL_CNT" = "" ];then +PHYSICAL_CNT="I don't know" +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +else +LCPU=`expr $CORE_CNT \* $THREAD_CNT` +fi +echo ""Physical CPU Count : $PHYSICAL_CNT "" +echo ""Core Count : $CORE_CNT "" +echo ""Thread Count per Core : $THREAD_CNT "" +LCPURESULT="$CORE_CNT (cores) * $THREAD_CNT(smt) = $LCPU(LCPU)" +echo "$LCPURESULT" +LCPURESULT2=`echo "$NCPURESULT"|sed 's/^ *//'` +break +done + +# IBM AIX (5.3) +lsdev -Cc processor +lsattr -El proc0 +bindprocessor -q +smtctl diff --git a/intermax/23.12.07.02/jspd/tools/InterMax_license_keyfile_check.zip b/intermax/23.12.07.02/jspd/tools/InterMax_license_keyfile_check.zip new file mode 100755 index 0000000..094f425 Binary files /dev/null and b/intermax/23.12.07.02/jspd/tools/InterMax_license_keyfile_check.zip differ diff --git a/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe new file mode 100755 index 0000000..93f8697 Binary files /dev/null and b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x64.exe differ diff --git a/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe new file mode 100755 index 0000000..3793911 Binary files /dev/null and b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/VC_redist.x86.exe differ diff --git a/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt new file mode 100755 index 0000000..1aa376c --- /dev/null +++ b/intermax/23.12.07.02/jspd/tools/MicroSoft_C++_Redistributable_2015_2017_2019/url.txt @@ -0,0 +1,5 @@ +지원되는 최신 Visual C++ 다운로드(2020.09.01) + +Visual Studio 2015, 2017 및 2019 + +https://support.microsoft.com/ko-kr/help/2977003/the-latest-supported-visual-c-downloads \ No newline at end of file diff --git a/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe b/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe new file mode 100755 index 0000000..35096bf Binary files /dev/null and b/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x64.exe differ diff --git a/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe b/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe new file mode 100755 index 0000000..aa59bc9 Binary files /dev/null and b/intermax/23.12.07.02/jspd/tools/XmSvcMgr/XmSvcMgr_x86.exe differ diff --git a/intermax/23.12.07.02/jspd/version_check.info b/intermax/23.12.07.02/jspd/version_check.info new file mode 100644 index 0000000..acc1189 --- /dev/null +++ b/intermax/23.12.07.02/jspd/version_check.info @@ -0,0 +1,2 @@ +TXN_VERSION=InterMax Transaction Service. (linux x86_64 64bit) Build 23-12-21 16:14:15 Version 5.3.0 (mc:6276486,cc:ed83703) [DEBUG] +OSM_VERSION= InterMax OS Monitor Service.(WAS) (linux x86_64 64bit) Build 23-09-21 11:47:55 Version 5.3.0 (mc:0xa3db312,cc:0xed83703) diff --git a/intermax/23.12.07.02/jspd/version_check.sh b/intermax/23.12.07.02/jspd/version_check.sh new file mode 100755 index 0000000..1c9f21d --- /dev/null +++ b/intermax/23.12.07.02/jspd/version_check.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +export PATH=`pwd` + +TXN_OUTPUT=`${PATH}/lib/imx/imxtxn -v` +OSM_OUTPUT=`${PATH}/lib/imx/imxosm -v` + +echo "TXN_VERSION=${TXN_OUTPUT}" > ${PATH}/version_check.info +echo "OSM_VERSION=${OSM_OUTPUT}" >> ${PATH}/version_check.info